I want a report from Static Analyzer via the command line and I want to analyze Technical Debt in my code. Here is the command I am executing
scan-build -o /Mudaser xcodebuild -target myProject clean build
I get following output with errors:
** BUILD FAILED **
The following build commands failed:
CompileC build/myProject.build/Debug-iphoneos/myProject.build/Objects-normal/armv7/CCAction.o myProject/libs/cocos2d/CCAction.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/myProject.build/Debug-iphoneos/myProject.build/Objects-normal/armv7/CCActionCamera.o myProject/libs/cocos2d/CCActionCamera.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/myProject.build/Debug-iphoneos/myProject.build/Objects-normal/armv7/CCActionEase.o myProject/libs/cocos2d/CCActionEase.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/myProject.build/Debug-iphoneos/myProject.build/Objects-normal/armv7/CCActionGrid.o myProject/libs/cocos2d/CCActionGrid.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(4 failures)
scan-build: Removing directory '/Mudaser/2012-08-08-1' because it contains no reports.
Any ideas how to resolve these errors?