6

同様の問題を抱えている人はたくさんいます。私は過去に他のマシンでその1人でしたが、そこにある解決策はどれもうまくいかないようです-私も同様の問題を抱えている他の人とは異なるエラーを抱えているようです:

Building native extensions.  This could take a while...
ERROR:  Error installing therubyracer:
    ERROR: Failed to build gem native extension.

    /Users/username/.rvm/rubies/ruby-2.0.0-p353/bin/ruby -r ./siteconf20150412-25981-y7cvt6.rb extconf.rb
checking for main() in -lpthread... yes
checking for main() in -lobjc... yes
creating Makefile

make "DESTDIR=" clean

make "DESTDIR="
compiling accessor.cc
clang: warning: argument unused during compilation: '-rdynamic'
In file included from accessor.cc:1:
In file included from ./rr.h:6:
In file included from /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/vector:265:
In file included from /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bit_reference:15:
In file included from /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/algorithm:628:
In file included from /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/memory:604:
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iterator:341:10: fatal error: '__debug' file not found
#include <__debug>
         ^
1 error generated.
make: *** [accessor.o] Error 1

make failed, exit code 2

Gem files will remain installed in /Users/ecnalyr/.rvm/gems/ruby-2.0.0-p353@canopy/gems/therubyracer-0.12.2 for inspection.
Results logged to /Users/ecnalyr/.rvm/gems/ruby-2.0.0-p353@canopy/extensions/x86_64-darwin-14/2.0.0/therubyracer-0.12.2/gem_make.out

実行時:

gem install therubyracer -v '0.12.2'

または単に

bundle install

therubyracer私のgemfileに含まれています。

Yosemite 10.10.3、Ruby 2.0.0-p353 を実行しています。すべてをアンインストールしgem install libv8 -- --with-system-v8、この種の問題が頻繁に発生する解決策を試しましたが、解決策が見つかりませんでした。

4

2 に答える 2

11

一時ファイル「__debug」を作成すると、この問題が解決しました。

ターミナルで次のコマンドを実行します。

echo '#define _LIBCPP_ASSERT(x, m) ((void)0)' | sudo tee -a /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug > /dev/null

于 2015-04-16T05:42:33.977 に答える
7

XCode 6.2のコマンドラインツールを(XCode 6.3の代わりに)再インストールすることで、これを解決できました。

Stack Overflow 29529455でさらに議論があります。

于 2015-04-13T10:43:16.210 に答える