最近、Xcode 4.2をアンインストールし、Xcode4.3.1を再インストールしました。インストール済みCommand Line Tools
また。エラーは「Cコンパイラが機能しない」と言っています。このエラーを検索すると、Xcodeがインストールされていない場合に発生すると言われています。何が足りないのですか?
rvm install 1.9.3 --with-gcc=clang
Installing Ruby from source to: /Users/ava/.rvm/rubies/Ruby-1.9.3-preview1, this may take a while depending on your cpu(s)...
Ruby-1.9.3-preview1 - #fetching
Ruby-1.9.3-preview1 - #extracting Ruby-1.9.3-preview1 to /Users/ava/.rvm/src/Ruby-1.9.3-preview1
Ruby-1.9.3-preview1 - #extracted to /Users/ava/.rvm/src/Ruby-1.9.3-preview1
Fetching yaml-0.1.4.tar.gz to /Users/ava/.rvm/archives
Extracting yaml-0.1.4.tar.gz to /Users/ava/.rvm/src
Configuring yaml in /Users/ava/.rvm/src/yaml-0.1.4.
ERROR: Error running ' ./configure --prefix="/Users/ava/.rvm/usr" --with-gcc=clang --build=x86_64-Apple-darwin11.3.0 --Host=x86_64-Apple-darwin11.3.0 --build=x86_64-Apple-darwin11.3.0 --Host=x86_64-Apple-darwin11.3.0 ', please read /Users/ava/.rvm/log/Ruby-1.9.3-preview1/yaml/configure.log
Compiling yaml in /Users/ava/.rvm/src/yaml-0.1.4.
ERROR: Error running '/usr/bin/make ', please read /Users/ava/.rvm/log/Ruby-1.9.3-preview1/yaml/make.log
Installing yaml to /Users/ava/.rvm/usr
ERROR: Error running '/usr/bin/make install', please read /Users/ava/.rvm/log/Ruby-1.9.3-preview1/yaml/make.install.log
Ruby-1.9.3-preview1 - #configuring
ERROR: Error running ' ./configure --prefix=/Users/ava/.rvm/rubies/Ruby-1.9.3-preview1 --enable-shared --disable-install-doc --with-gcc=clang --build=x86_64-Apple-darwin11.3.0 --Host=x86_64-Apple-darwin11.3.0 --build=x86_64-Apple-darwin11.3.0 --Host=x86_64-Apple-darwin11.3.0 --with-libyaml-dir=/Users/ava/.rvm/usr ', please read /Users/ava/.rvm/log/Ruby-1.9.3-preview1/configure.log
ERROR: There has been an error while running configure. Halting the installation.
➜ yaml git:(master) ✗ vi configure.log
[2012-03-18 21:03:00] ./configure --prefix="/Users/ava/.rvm/usr" --with-gcc=clang --build=x86_64-Apple-darwin11.3.0 --Host=x86_64-Apple-darwin11.3.0 --build=x86_64-Apple-darwin11.3.0 --Host=x86_64-Apple-darwin11.3.0
configure: WARNING: unrecognized options: --with-gcc
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... config/install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking for x86_64-Apple-darwin11.3.0-gcc... no
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/Users/ava/.rvm/src/yaml-0.1.4':
configure: error: C compiler cannot create executables
See `config.log' for more details
➜ ~ git:(master) ✗ gcc -v
Using built-in specs.
Target: i686-Apple-darwin11
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-Apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/dst-llvmCore/Developer/usr/local --program-prefix=i686-Apple-darwin11- --Host=x86_64-Apple-darwin11 --target=i686-Apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00)
➜ ~ git:(master) ✗ which gcc
/usr/bin/gcc
ターミナル内:
Sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
また、Xcodeで、コマンドラインツールがインストールされていることを確認してください。 [Xcode]> [設定]を選択し、[ダウンロード]をクリックして、必要に応じて、[コマンドラインツール]の横にある[インストール]ボタンをクリックします。
最新のRuby pathclevel、rvm get head
で更新)を知らない古いRVMを使用している
RubyはまだLLVMの準備が整っていません。osx-gcc-installerと--with-gcc=gcc-4.2
を使用してコンパイルするための最良のチャンスを手に入れましょう。
私は実行することによってそれを修正しました:
rvm install <Ruby-version> --with-gcc=clang
<Ruby-version>を使用したいバージョンに置き換えます
同じ問題にぶつかっている人たちのために、
システム(インストール順)
自作のインストールを指すようにLDFLAGSとCPPFLAGSを設定しましたが、これによりエラーが発生しました。 LDFLAGSとCPPFLAGSを「リンク解除」し、「rvm install 1.9.2」を実行すると、すべてが正常に機能しました。
システムが認識しているコンパイラを使用すると、インストールがはるかに簡単になります。
1. rvm install Ruby-1.9.3-p547 --with-gcc=`echo which gcc`
./configure --without-gcc
を試してclangを使用してください。
私はマーベリックスにいますが、提供された回答はうまくいきませんでした。ただし、Xcodeのバージョンを更新し、コマンドラインツールがインストールされていることを確認することでうまくいきました。