4

をインストールしようとするとgcc49、エラーが表示されます

 $  brew install https://raw.githubusercontent.com/Homebrew/homebrew-versions/master/gcc49.rb
######################################################################## 100.0%
==> Downloading http://ftpmirror.gnu.org/gcc/gcc-4.9.3/gcc-4.9.3.tar.bz2
Already downloaded: /Library/Caches/Homebrew/gcc49-4.9.3.tar.bz2
==> ../configure --build=x86_64-apple-darwin14.5.0 --prefix=/usr/local/Cellar/gcc49/4.9.3 --libdir=/usr/local/Cellar/gcc49/4.9.3/lib/gcc/4.9 --enable-languages=c,c++,objc,obj-c++ --program-suffix=-4.9 --w
checking for version 0.10 of ISL... no
checking for version 0.11 of ISL... no
checking for version 0.12 of ISL... no
checking for version 0.14 of ISL... no
configure: error: Unable to find a usable ISL.  See config.log for details.
Warning: It appears you have MacPorts or Fink installed.
Software installed with other package managers causes known problems for
Homebrew. If a formula fails to build, uninstall MacPorts/Fink and try again.

READ THIS: https://git.io/brew-troubleshooting

しかし、私はISLを持っています:

$  brew info isl
isl: stable 0.14.1 (bottled), HEAD
Integer Set Library for the polyhedral model
http://freecode.com/projects/isl
/usr/local/Cellar/isl/0.14.1 (68 files, 3.2M) *
  Poured from bottle
From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/isl.rb
==> Dependencies
Build: xz ✔
Required: gmp ✔

どこにあるのかわかりませんconfig.log

4

2 に答える 2

3

この問題は、更新された Xcode が原因です。実行する必要があります:「$ xcode-select --install」

于 2015-09-26T04:49:42.740 に答える
3

GCC 4.9 をインストールする正しい方法は、

$ brew install homebrew/versions/gcc49

このようにして、Homebrew は不足している依存関係を正しく解決し、それらをインストールします。gccを使用して、このバージョン(またはその他のバージョン)を見つけることができます。

$ brew search gcc49
homebrew/versions/gcc49

また

$ brew search gcc
gcc                             homebrew/versions/gcc47
homebrew/dupes/apple-gcc42      homebrew/versions/gcc48
homebrew/versions/gcc43         homebrew/versions/gcc49
homebrew/versions/gcc44         homebrew/versions/gcc5
homebrew/versions/gcc45         homebrew/versions/llvm-gcc28
homebrew/versions/gcc46

ただし、欠落している依存関係はしかしではありませislisl011。でインストールできます

$ brew install isl011

gcc49これはwithの依存関係であることがわかります

$ brew info gcc49
==> Dependencies
Required: gmp4 ✔, libmpc08 ✔, mpfr2 ✔, cloog018 ✔, isl011 ✔
于 2015-09-25T08:11:04.487 に答える