0

このエラーの取得:

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 はまだインストールされており、指定されたパスにあります。そのメッセージが何を意味するか分かりますか?

4

1 に答える 1

0

SnowLeopard と Xcode 3.2 を使用している場合は、メニュー コマンド [Build and Analyze] から Clang を実行できます。

于 2009-09-03T21:02:21.240 に答える