使用clang转换OC为C++代码
2018-07-12 本文已影响3人
伶俐ll
- 使用clang转换OC为C++代码
xcrun -sdk iphoneos clang -arch arm64 -rewrite-objc -fobjc-arc -fobjc-runtime=ios-8.0.0 main.m
- 如果需要连接其他框架,使用-framework参数,比如:
-framework UIKit - 如果需要指定运行时系统版本
xcrun -sdk iphoneos clang -arch arm64 -rewrite-objc -fobjc-arc -fobjc-runtime=ios-8.0.0 main.m