0

我运行 sudo gem install localtunnel 并得到以下输出。现在我使用自制软件安装 rbenv 来安装 ruby​​,当我运行 brew doctor 时,它说 xcode 已过时,但是当我打开 xcode 并转到最新版本时,这是我的 sudo gem install localtunnel 错误输出

ERROR:  Error installing localtunnel:
    ERROR: Failed to build gem native extension.

        /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb
creating Makefile

make
xcrun cc -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin12.0 -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin12.0 -I. -DJSON_GENERATOR  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -fno-common -arch i386 -arch x86_64 -g -O3 -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   -c generator.c
xcrun: Error: could not stat active Xcode path '/Developer'. (No such file or directory)
cc -arch i386 -arch x86_64 -pipe -bundle -undefined dynamic_lookup -o generator.bundle generator.o -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L. -arch i386 -arch x86_64     -lruby  -lpthread -ldl -lobjc  
i686-apple-darwin11-llvm-gcc-4.2: generator.o: No such file or directory
i686-apple-darwin11-llvm-gcc-4.2: generator.o: No such file or directory
lipo: can't figure out the architecture type of: /var/tmp//ccfplODR.out
make: *** [generator.bundle] Error 1
4

2 回答 2

1

Xcode 4 不再安装在 /Developer 中,但 xcrun 似乎期望它在那里。

我会先安装“命令行工具”(Xcode 首选项-> 下载-> 组件)。

如果这没有帮助,请致电

sudo xcode-select -switch /Applications/Xcode.app

显式设置 xcrun 的路径。

于 2013-02-19T10:23:23.433 回答
0

我的 Ruby 版本已过期,我必须运行 rbenv install 1.9.3-p0 并将其设置为全局。

于 2013-02-21T01:43:17.017 回答