can't setup ruby environment - installing fii gem error

女生的网名这么多〃 提交于 2019-12-09 01:45:49

问题


I'm trying to setup environtment for ruby project. But when I run 'bundle', I have error during installing 'fii' gem:


    Installing ffi (1.8.1) 
    Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        /Users/bmalets/.rvm/rubies/ruby-1.9.3-p448/bin/ruby extconf.rb 
    checking for ffi.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.

    /Users/bmalets/.rvm/rubies/ruby-1.9.3-p448/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.

    Gem files will remain installed in /Users/bmalets/.rvm/gems/ruby-1.9.3-p448@api2/gems/ffi-1.8.1 for inspection.
    Results logged to /Users/bmalets/.rvm/gems/ruby-1.9.3-p448@api2/gems/ffi-1.8.1/ext/ffi_c/gem_make.out

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


My environment:

  • OS_X 10.8.4

  • ruby 1.9.3p448

  • Xcode 4.6.3

  • libffi-3.0.13

Please, help me to fix it.


回答1:


Make sure that you have installed Apple Xcode and Command Line Tools (look at this screenshot):

https://developer.apple.com/technologies/tools/

After that, don't forget to install libffi.

1) if you are using homebrew

brew install libffi

2) if you are using macport

sudo port install libffi


来源:https://stackoverflow.com/questions/17775115/cant-setup-ruby-environment-installing-fii-gem-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!