You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Confirmed this is a problem with brew installing one, specific formula and not every time you run brew? If it's a general brew problem please file this issue at https://github.com/Homebrew/brew/issues/new.
Ran brew update and retried your prior step?
Ran brew doctor, fixed all issues and retried your prior step?
Ran brew gist-logs <formula> (where <formula> is the name of the formula that failed) and included the output link?
If brew gist-logs didn't work: ran brew config and brew doctor and included their output with your issue?
The bottle doesn't work
I'm trying to use idba from the brewsci/bio tap, but I'm getting segmentation faults that seem to be rooted in compilation.
First, I tried the simple route:
$> brew install idba
==> Installing idba from brewsci/bio
==> Downloading https://archive.org/download/brewsci/bottles-bio/idba-1.1.3_2.sierra.bottle.tar.gz
Already downloaded: /Users/miguel/Library/Caches/Homebrew/downloads/8a78e6dc32c4ee9a1a50cd702c488248524826c3664352d1457f9af02de38d29--idba-1.1.3_2.sierra.bottle.tar.gz
==> Pouring idba-1.1.3_2.sierra.bottle.tar.gz
Warning: brewsci/bio/idba dependency gmp was built with a different C++ standard
library (libc++ from clang). This may cause problems at runtime.
🍺 /usr/local/Cellar/idba/1.1.3_2: 36 files, 5.8MB
$> idba_ud
dyld: Library not loaded: /usr/local/opt/gcc/lib/gcc/9/libgomp.1.dylib
Referenced from: /usr/local/bin/idba_ud
Reason: image not found
Abort trap: 6
Source installation doesn't work
Since I saw the warning about gmp, I tried the following:
brew uninstall idba which worked fine
brew reinstall -s gmp which seems to have worked fine as well (see log using -v)
brew install idba which produced the exact same output as above
brew install -s idba which generated the following output and never gave me back the prompt, so I had to kill it with Ctrl+C:
==> Installing idba from brewsci/bio
==> Downloading https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/hku-idba/lacto-genus.tar.gz
Already downloaded: /Users/miguel/Library/Caches/Homebrew/downloads/0d76a9708baed3cf7d14e93853013aa81f9a77952c4387ea65054cf337aade6e--lacto-genus.tar.gz
==> Downloading https://github.com/loneknightpy/idba/archive/1.1.3.tar.gz
Already downloaded: /Users/miguel/Library/Caches/Homebrew/downloads/03fd964aee8290422be93d479dc20a7126b0ff703747621a911bdd29808ae632--idba-1.1.3.tar.gz
==> aclocal
==> autoconf
==> automake --add-missing
==> ./configure --prefix=/usr/local/Cellar/idba/1.1.3_2
==> make
==> make check
^C
One sec, cleaning up...
In order to see what was the error, I did brew install -sv idba which produced this log with tail:
Thanks for the bug report, Luis. I'm not sure why it's failing to build from source on your system. That's working for me. I've opened PR #1305 with your suggested fix. Feel free to open a PR in the future if the fix looks right, even if you're not able to build it locally. It's best of course if it does build locally, but the local issue seems weird, you can use CI to help troubleshoot.
brew install
ing one, specific formula and not every time you runbrew
? If it's a generalbrew
problem please file this issue at https://github.com/Homebrew/brew/issues/new.brew update
and retried your prior step?brew doctor
, fixed all issues and retried your prior step?brew gist-logs <formula>
(where<formula>
is the name of the formula that failed) and included the output link?brew gist-logs
didn't work: ranbrew config
andbrew doctor
and included their output with your issue?The bottle doesn't work
I'm trying to use
idba
from thebrewsci/bio
tap, but I'm getting segmentation faults that seem to be rooted in compilation.First, I tried the simple route:
Source installation doesn't work
Since I saw the warning about gmp, I tried the following:
brew uninstall idba
which worked finebrew reinstall -s gmp
which seems to have worked fine as well (see log using -v)brew install idba
which produced the exact same output as abovebrew install -s idba
which generated the following output and never gave me back the prompt, so I had to kill it with Ctrl+C:brew install -sv idba
which produced this log with tail:brew test -v gmp
which seems to be fine:gcc@9
doesn't work eitherI saw that
idba
is listed in #1186, so I tried requiringgcc@9
by editing the formula locally to bump the revision and replace the gcc:And reran
brew install -sv idba
but got the exact same result.I'm fresh out of ideas here☹️ . Any help is greatly appreciated!
brew config
The text was updated successfully, but these errors were encountered: