web-dev-qa-db-ja.com

自作ではgfortranをインストールできません

Gfortranをインストールしようとしたときにこのメッセージが表示されました。

~$ brew install gfortran
Error: No available formula for gfortran
GNU Fortran is now provided as part of GCC, and can be installed with:
  brew install gcc

私の質問は、gfortranをhomebrewまたはportでインストールする方法ですか?

または

もしGNU FortranがGCCの一部である場合どうすればgccを使用してFortranコードをコンパイルできますか?

最後にgfortranを使用してコードをコンパイルできることを覚えているかもしれませんが、今は機能しません。

さらに詳しい情報:

コマンドbrew listを使用しても、gfortranはまだ存在しますが、使用できません。

詳細情報(最新):

はい、gfortranコマンドを使用できますが、別の問題が発生します

~$ gfortran-4.9 hello.f
dyld: Library not loaded: /usr/local/lib/libcloog-isl.4.dylib
  Referenced from: /usr/local/Cellar/gcc/4.9.2/libexec/gcc/x86_64-Apple-darwin14.0.0/4.9.2/f951
  Reason: image not found
gfortran-4.9: internal compiler error: Trace/BPT trap: 5 (program f951)
Abort trap: 6
20
fronthem

指示に従って「brew install gcc」を実行してください。 gccパッケージには、gcc、g ++、gfortranなどが含まれています。

19
janneb