1

项目捆绑包因 json 安装错误而停止。但我不是在 Gemfile 中要求 json。RVM 中的当前 Ruby 是 1.9.2-p290,严格。

不知道如何解决这个问题。任何帮助,也许?

 Installing json (1.7.7) 
 Gem::Installer::ExtensionBuildError: 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/folders/ft/gswz6cs52wb9jh_v5h2yt5_h0000gn/T//ccvGNawc.out
 make: *** [generator.bundle] Error 1


 Gem files will remain installed in /Users/noAlvaro/.rvm/gems/ruby-1.9.2-p290@heroku_project/gems/json-1.7.7 for inspection.
 Results logged to /Users/noAlvaro/.rvm/gems/ruby-1.9.2-p290@heroku_project/gems/json-1.7.7/ext/json/ext/generator/gem_make.out

 An error occurred while installing json (1.7.7), and Bundler cannot continue.
 Make sure that `gem install json -v '1.7.7'` succeeds before bundling.

任何帮助,任何事情,将不胜感激。:)

4

1 回答 1

1

即使您没有明确列出json依赖项,您正在使用的其他 gem 也可能会这样做。因此,Bundler 会将其包含在捆绑列表中。

要检查正在使用哪个库,json您可以检查 Gemfile.lock 文件或使用bundle viz来绘制您的依赖关系树。

于 2013-05-02T15:21:16.540 回答