11/08/2018, 21:48
[Note] MacOS Maverickでbundle installする際にfails to build native extensionsエラーが出る?
MacOS Maverickでbundle installする際に"fails to build native extensions"エラーが出る時、以下の方法で試してください。 command line developer toolsをインストールする ❏ まだXCodeがなかったら、Xcodeをインストール ❏ command line developer toolsを xcode-select --install のコマンドでインストールできます。 後は sudo xcode-select -switch /Library/Developer/CommandL ...
MacOS Maverickでbundle installする際に"fails to build native extensions"エラーが出る時、以下の方法で試してください。
command line developer toolsをインストールする
❏ まだXCodeがなかったら、Xcodeをインストール
❏ command line developer toolsを
xcode-select --install
のコマンドでインストールできます。 後は
sudo xcode-select -switch /Library/Developer/CommandLineTools
を実行してください。
gccの調整
以下のコマンドを実行してください
sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.2
export CC=gcc-4.2
(gccのバージョンは場合によって違います。それはエラーログを見たら分かります)
まだ情報が足りないと思いますので、後ほど追加します。