在 Eclipse 和 Makefiles 中选择 OSX SDK 版本
我有一台运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看 Xcode 针对所选 10.4 SDK 的构建发出的命令,您将看到 gcc/g++ 标志包括
:
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:
and