9
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

OS X 10.10 Yosemiteにgcc, gfortranをインストール

Last updated at Posted at 2015-01-17

OS X 10.10 YosemiteにMacPortsからgcc, gfortranをインストールする手順.

  1. XcodeとXcode Command Line Toolsのインストール.
    App StoreよりXcodeをインストールする.
    Command Line ToolsはXcode 6.*では
    $ xcode-select --install
    と実行するとダイアログが表示されるので,"インストール"をクリック.

  2. Xcodeライセンス条項に同意
    Xcodeを一度起動するか、ターミナルより
    $ sudo xcodebuild -license
    と実行し,ライセンス条項に同意する.

  3. MacPortsのインストール
    MacPorts のページから,Yosemiteに対応したインストーラをダウンロードしてインストール.

  4. MacPortsでgccをインストール
    ターミナルで以下のコマンドを実行する。
    $ sudo port install gcc49
    $ sudo port select gcc mp-gcc49
    gccのビルドに掛かる時間はマシンのスペックによるが、1時間以上掛かる場合もある。

  5. gcc, gfortranのバージョンを確認
    ターミナルで
    gcc -v
    gfortran -v

9
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?