iOS 5 - Apple LLVM compiler 3.0 error
从苹果的开发官网下载的程序编译不能通过总是报这个问题, iOS 5 - Apple LLVM compiler 3.0 error Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/clang failed with exit code 254 折腾了很久,终于解决了 网上有人说手动修改.pch 文件,添加所有引用的投文件到 .pch文件中 原始内容: /* #import <Availability.h> #ifndef __IPHONE_5_0 #warning "This project uses features only available in iOS SDK 5.0 and later." #endif #ifdef __OBJC__ #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> ... #endif */ 修改后内容: #ifdef __OBJC__ #import <...