我刚刚获得了一个新的macbook pro并尝试设置我的开发环境。 我从app商店下载了xcode 4.2并安装了它,之后我安装了自制软件和RVM。 ImageMagick,readline,ruby 1.9.3-head全部安装完美,直到我运行捆绑更新,试图安装rmagick。
经过很长一段时间的调查,我得出的结论是找不到libgomp。
输出来自gem install rmagick
:
$ gem install rmagick
Building native extensions. This could take a while...
ERROR: Error installing rmagick:
ERROR: Failed to build gem native extension.
/Users/dhiemstra/.rvm/rubies/ruby-1.9.3-head/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
extconf.rb:128: Use RbConfig instead of obsolete and deprecated Config.
checking for clang... yes
checking for Magick-config... yes
checking for ImageMagick version >= 6.4.9... yes
checking for HDRI disabled version of ImageMagick... yes
checking for stdint.h... *** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/dhiemstra/.rvm/rubies/ruby-1.9.3-head/bin/ruby
/Users/dhiemstra/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/mkmf.rb:381:in `try_do': The compiler failed to generate an executable file. (RuntimeError)
You have to install development tools first.
这是我的mkmf.log文件:
"clang -o conftest -I/Users/dhiemstra/.rvm/rubies/ruby-1.9.3-head/include/ruby-1.9.1/x86_64-darwin11.2.0 -I/Users/dhiemstra/.rvm/rubies/ruby-1.9.3-head/include/ruby-1.9.1/ruby/backward -I/Users/dhiemstra/.rvm/rubies/ruby-1.9.3-head/include/ruby-1.9.1 -I. -I/usr/local/Cellar/imagemagick/6.7.1-1/include/ImageMagick -I/usr/local/Cellar/imagemagick/6.7.1-1/include/ImageMagick -fopenmp conftest.c -L. -L/Users/dhiemstra/.rvm/rubies/ruby-1.9.3-head/lib -L/usr/local/Cellar/imagemagick/6.7.1-1/lib -L/usr/X11/lib -L/usr/local/Cellar/imagemagick/6.7.1-1/lib -lMagickCore -llcms -ltiff -lfreetype -ljpeg -L/usr/X11/lib -lfontconfig -lXext -lSM -lICE -lX11 -lXt -lbz2 -lz -lm -lgomp -lpthread -lltdl -lruby.1.9.1 -lpthread -ldl -lobjc "
ld: library not found for -lgomp
clang: error: linker command failed with exit code 1 (use -v to see invocation)
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: int main() {return 0;}
/* end */
现在我假设xcode出了问题,我尝试了几件事:
我不知道还有什么可以让我尝试,有人可以帮我推动我朝着这个方向努力吗?
答案 0 :(得分:67)
我尝试了你的解决方案(充满了希望)但遗憾的是它对我不起作用。 最后,我设法通过重新安装imagemagick而没有openmp支持(这是负责lgomp的库)来实现它的工作。
使用Homebrew:
brew install imagemagick --disable-openmp
然后安装rmagick没有任何问题。
答案 1 :(得分:1)
我尝试下载并安装4.1 for lion,这甚至没有安装(没有正确的错误消息)。 现在,一位同事给了我与GCC for Mac的这个很棒的链接,它像一个魅力: https://github.com/kennethreitz/osx-gcc-installer
如果您在>上运行,请不要忘记下载v2 10.7.0
答案 2 :(得分:1)
对于想要源安装的人,您可以下载源代码存储库并在imagemagick源代码目录中发出此命令。
./ configure --disable-openmp
它的工作方式类似于上面的brew版本,但改为使用源代码编译。
答案 3 :(得分:0)