针对单个文件的clang工具

时间:2013-11-18 07:22:30

标签: ios xcode clang

是否可以在iOS(Objective-c)中为单个文件运行clang工具(静态分析)?

在终端对抗AppDelegate.m 以下是错误:

clang AppDelegate.h -fsyntax-only
AppDelegate.h:9:9: fatal error: 'UIKit/UIKit.h' file not found
#import <UIKit/UIKit.h>
        ^
1 error generated.

2 个答案:

答案 0 :(得分:0)

你应该使用xcrun让clang首先找到所有必需的框架:

xcrun -sdk iphoneos clang -ObjC -fsyntax-only AppDelegate.h

答案 1 :(得分:0)

请使用以下命令安装它们:xcode-select --install然后重试。