簡單文件分析
在examples目錄下的README.md文件谅年,講解了如何編譯分析文件和項目
編譯分析Hello.m文件
infer -- clang -c Hello.m
編譯分析HelloWorldApp項目
infer -- xcodebuild -target SearchCloth -configuration Debug -sdk iphonesimulator clean build
編譯有workspace的項目
infer -- xcodebuild clean build -workspace SearchCloth.xcworkspace -scheme SearchCloth -configuration Debug -sdk iphonesimulator
infer-out文件介紹
http://infer.liaohuqiu.net/docs/advanced-features.html
返回的問題類型
Resource leak
Memory leak
Null dereference
Parameter not null checked
Ivar not null checked
Premature nil termination argument
Retain cycle
原文地址:http://infer.liaohuqiu.net/docs/infer-bug-types.html
中文參考地址:http://blog.csdn.net/itfootball/article/details/46493371
inferTraceBugs命令定位某個問題的具體信息
參考地址:http://blog.csdn.net/itfootball/article/details/46491407