作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试升级我的 rails 3.2.3 应用程序。我已将 gemfile 更新为 gem 'rails', '3.2.11'
并运行 bundle update rails
但出现以下错误:
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/Users/Arel/.rvm/rubies/ruby-1.9.3-head/bin/ruby extconf.rb
creating Makefile
make
compiling generator.c
make: /usr/bin/gcc-4.2: No such file or directory
make: *** [generator.o] Error 1
Gem files will remain installed in /Users/Arel/.rvm/gems/ruby-1.9.3-head/gems/json-1.7.6 for inspection.
Results logged to /Users/Arel/.rvm/gems/ruby-1.9.3-head/gems/json-1.7.6/ext/json/ext/generator/gem_make.out
An error occured while installing json (1.7.6), and Bundler cannot continue.
Make sure that `gem install json -v '1.7.6'` succeeds before bundling.
sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.2
ln: /usr/bin/gcc-4.2: File exists
最佳答案
/usr/bin/gcc-4.2
可能已经是一个符号链接(symbolic link),但是一个损坏的链接指向一个不存在的文件。
关于ruby-on-rails -/usr/bin/gcc-4.2 : No such file or directory. 错误。符号链接(symbolic link)修复不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14271373/
我是一名优秀的程序员,十分优秀!