在 Eclipse 和 Makefiles 中选择 OSX SDK 版本

发布于 2024-08-21 10:21:45 字数 314 浏览 5 评论 0原文

我有一台运行 10.5 的开发 Mac。这导致我的应用程序无法在 10.4 中运行(Google“_nsdefaultrunloopmode Tiger”)。我读到解决方案是安装 10.4 SDK 并针对它进行编译。我已经安装了它(至少我有/Developer/SDKs/MacOSX10.4u.sdk)

现在我找不到实际使用它的方法 - 我正在做两件事:

1)使用Makefile编译库(SDL)
2)使用Eclipse编译程序

我找不到在这两种情况下指定SDK版本的方法。文档似乎没有提到如何做到这一点,所以我想我忽略了一些明显的事情。有什么帮助吗?

I have a development Mac running 10.5. This causes my apps to not work in 10.4 (Google "_nsdefaultrunloopmode tiger"). I read the solution is to install the 10.4 SDK and compile against that. I have it installed (at least I have /Developer/SDKs/MacOSX10.4u.sdk)

Now I can't find a way to actually use that - I'm doing two things:

1) Compiling a library (SDL) using Makefiles
2) Compiling the program using Eclipse

I can't find a way to specify the SDK version in either of these two scenarios. Documentation doesn't seem to mention how to do it, so I'm thinking I'm overlooking something obvious. Any help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

幸福丶如此 2024-08-28 10:21:45

如果您查看 Xcode 针对所选 10.4 SDK 的构建发出的命令,您将看到 gcc/g++ 标志包括

-isysroot /Developer/SDKs/MacOSX10.4u.sdk

-mmacosx-version-min=10.4

If you look at the commands issued by Xcode for a build with the 10.4 SDK selected you will see that gcc/g++ flags include:

-isysroot /Developer/SDKs/MacOSX10.4u.sdk

and

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