2

XCodeの完全なクリーンアンインストールを実行し、設定を削除し、完全な/ Developerフォルダーを削除して、XCodeを再インストールしました。

新しいCocoaアプリケーションを作成し、Targetに移動して、ターゲットで「Get info」を実行し、「C / C++コンパイラバージョン」から「LLVMcompiler1.0.2」を有効にして、Buildを押します。

私は得る:

ld: warning: directory '/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64' following -L not found
ld: warning: directory '/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64' following -L not found
ld: warning: directory '/usr/lib/i686-apple-darwin10/4.2.1' following -L not found
ld: warning: directory '/usr/lib/gcc/i686-apple-darwin10/4.2.1' following -L not found
ld: warning: directory '/usr/lib/gcc/i686-apple-darwin10/4.2.1' following -L not found
ld: warning: directory '/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../../i686-apple-darwin10/4.2.1' following -L not found
ld: warning: directory '/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../..' following -L not found
ld: library not found for -lgcc
Command /Developer/usr/bin/clang failed with exit code 1

ここで私を助けることができる人はいますか?LLVM + GCCフロントエンドは機能しますが、私は本当にClang(LLVMコンパイラ1.0.2)を使用したいと思います。新しいXCodeのインストール、新しいCocoaプロジェクトにはまだこの問題があります。

4

1 に答える 1

1

2つのシンボリックリンクを作成して修正しました

/usr/lib/gcc->/Developer/usr/lib/gcc

/usr/lib/i686-apple-darwin10->/Developer/usr/lib/i686-apple-darwin10/

みんなに答えてくれてありがとう。

于 2010-07-06T19:26:33.070 に答える