iPhone/iPod touch/iPad 上的标准 C 库头文件

发布于 2024-09-09 17:01:21 字数 128 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时常饿 2024-09-16 17:01:21

在我的系统上,通过普通安装,标头位于此处:

/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.0.sdk/usr/include/
/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.2.sdk/usr/include/

库位于:

/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.0.sdk/usr/lib/
/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.2.sdk/usr/lib/

编辑:

标头不在设备上。您必须将它们复制过来。这些库应该全部位于设备上。

On my system, with a vanilla install, the headers are here:

/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.0.sdk/usr/include/
/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.2.sdk/usr/include/

And the libraries are here:

/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.0.sdk/usr/lib/
/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.2.sdk/usr/lib/

Edit:

The headers are not on the device. You will have to copy them over. The libraries should all be on the device.

两相知 2024-09-16 17:01:21

您无法为官方 iOS SDK 编写命令行程序。

You can't write command-line programs for the official iOS SDK.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文