2012-02-21 16 views
0

私はアプリケーションをバンドルしようとしていて、縁石の宝石にはまっています。Mac OS LionにRuby Gem 'curb'をインストールできない

source :rubygems 

gem 'sinatra', '~>1.0' 
gem 'yajl-ruby', '~>0.7.8' 
gem 'mustache', '~>0.11.2' 
gem 'curb',  '~>0.7.8' 
gem 'coderay', '~>0.8.357' 

gem 'sinatra_auth_github' 

group :test do 
    gem 'shotgun' 
end 

そして、ここでエラーです:ここにGemfileがある

steven-gallaghers-macbook-pro:hurl sgallagher$ bundle install 
Fetching gem metadata from http://rubygems.org/........... 
Fetching gem metadata from http://rubygems.org/.. 
Using addressable (2.2.2) 
Using coderay (0.8.357) 
Installing curb (0.7.8) with native extensions Unfortunately, a fatal error has occurred. Please report this error to the Bundler issue tracker at https://github.com/carlhuda/bundler/issues so that we can fix it. Thanks! 
/Users/sgallagher/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/site_ruby/1.9.1/rubygems/installer.rb:552:in `rescue in block in build_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError) 

     /Users/sgallagher/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb 
"$(cflags) -fno-common -pipe" 
checking for curl-config... yes 
checking for curlinfo_redirect_time... *** 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 
    --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/sgallagher/.rvm/rubies/ruby-1.9.2-p290/bin/ruby 
    --with-curl-dir 
    --without-curl-dir 
    --with-curl-include 
    --without-curl-include=${curl-dir}/include 
    --with-curl-lib 
    --without-curl-lib=${curl-dir}/lib 
/Users/sgallagher/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:368:in `try_do': The complier failed to generate an executable file. (RuntimeError) 
You have to install development tools first. 
    from /Users/sgallagher/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:446:in `try_compile' 
    from extconf.rb:52:in `block in have_constant' 

任意の考えは?

答えて

1

XCode4はgcc-4.2を使用しないので、多くのライブラリがインストールされていません。

開発者センターからXCode3をインストールする必要があります.gcc-4.2用に作成されます。

それを行うにはどのように

  1. 開発(無料)
  2. ダウンロードとして登録すると、あなたが本当にXCode3
  3. チェックのgcc-4.2ファイル

幸運をインストールしてください

1

OS X開発ライブラリを入手するには、xcodeをインストールする必要があります。

+0

私はxcodeをインストールしました。少なくとも私は持っていると思う。私はxcodeアプリを開き、それを使い始めることさえできます。これはインストールされていることを意味しませんか?奇妙な質問、私は知っているが、私の答えのための私の検索では、私はあなたがそれをインストールする必要があると述べたいくつかの記事を介してカムし、私はそれが実際に既にインストールされています。 –

+0

インストール時に "unix development support"がチェックされていることを確認する必要がありますか? http://stackoverflow.com/questions/2685887/where-is-gcc-on-osx-i-have-installed-xcode-already – David

+1

お返事ありがとうございます。あなたがリンクした質問には、その男がCDからインストールしていた状況がありました。私はApp Storeから直接インストールしました...チェックするかチェックを外すかを選択したりチェックしたりするオプションはありませんでした。それは単にインストールされ、それがそれでした。 –

関連する問題