2012-11-15 29 views
2

我正在寻找如何配置OCLint或如何使其运行的示例。我进行了搜索,但没有。在这里,在堆栈溢出恰好有3有关,只是命名的图书馆和谷歌的职位只是官方OCLint.orgOCLint使用示例

的公报说,文档:

[[email protected] ~]$ oclint -help 
OVERVIEW: OCLint, a static code analysis tool for Objective-C and related languages 

USAGE: oclint [options] <input files> 

OPTIONS: 
    -D <macro>    - Predefine the specified macro 
    -F <directory>   - Add directory to framework include search path 
    -I <directory>   - Add directory to include search path 
    -R <directory>   - Add directory to rule loading path 
    -arch <arch_name>  - Specify which architecture (e.g. ppc, i386, x86_64, armv7) the compilation 
          should targets. 
    -help     - Display available options (-help-hidden for more) 
    -include <file>   - Include file before parsing 
    -isysroot <directory> - Add directory to SYSTEM include search path 
    -o <file>    - Write output to <file> 
    -rc <paramemter>=<value> - Change the baheviour of rules 
    -stats     - Enable statistics output from program 
    Choose report type: 
    -text     - Plain text report 
    -html     - HTML formatted report 
    -version     - Display the version of this program 
    -x <value>    - Input language type 

但我想有关宏(-D更好的解释),以及为-I,-F,-R选择哪条路径以及我应该指出什么。一个代码示例如下:

$ oclint path/to/file.m -D something -I something -F something -R something 

并且由此产生的输出会很大。

回答

1

基本上你只要给你oclint无论你给你的编译器。

或者,如果您不熟悉编译器标志,则可能需要尝试oclint-xcodebuild。这是一个Python脚本,它从Xcode构建日志文件中提取标志。请参阅用法here