このエラーの取得:
2009-09-03 12:44:02.307 xcodebuild[307:10b] warning: compiler 'com.apple.compilers.llvm.clang.1_0.analyzer' is based on missing compiler 'com.apple.compilers.llvm.clang.1_0.analyzer'
これは、xcode 内からこのスクリプトを実行すると発生します。
#!/bin/bash
result=$( osascript << END
tell application "Xcode"
tell active project document
set projectPath to path as string
end tell
end tell
return projectPath
END
)
cd "$result"
/Developer/clang/scan-build -k -V xcodebuild -configuration Debug -sdk iphonesimulator2.2.1
それはすべてうまくいきましたが、xcodeを再起動した後、突然動作を停止しました。Clang はまだインストールされており、指定されたパスにあります。そのメッセージが何を意味するか分かりますか?