我想使用macOS Terminal编译Hello World C.目标是iOS(ARM)32位设备。我的默认编译器选择是Clang
。
直接与Clang ..
clang -arch armv7 main_3.c -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk -o helloWorld
但请记住,如果你把它放到越狱设备上,你需要签署代码!
security find-identity -v -p codesigning
codesign -s <developer_identity> helloworld
然后将您的文件发送到设备。我使用Cyberduck和SFTP。