iPhone/iPod touch/iPad 上的标准 C 库头文件
我有一个 iPod touch 和 iPad,上面安装了 gcc。然而,每次我尝试编译我的程序时,它们总是失败。我正在尝试为终端而不是 GUI 编写 C 程序。我缺少标准 c/c++ 库(stdio.h 等)。谁能告诉我在哪里可以找到这些库?
I have an iPod touch and iPad with gcc installed on them. However, everytime I try to compile my programs they always fail. I am trying to write c programs for the terminal, not GUI. I am missing the standard c/c++ libraries (stdio.h, etc.). Can anyone tell me where I can find these libraries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在我的系统上,通过普通安装,标头位于此处:
库位于:
编辑:
标头不在设备上。您必须将它们复制过来。这些库应该全部位于设备上。
On my system, with a vanilla install, the headers are here:
And the libraries are here:
Edit:
The headers are not on the device. You will have to copy them over. The libraries should all be on the device.
您无法为官方 iOS SDK 编写命令行程序。
You can't write command-line programs for the official iOS SDK.