Xcode makefile 或编译选项
我是 Xcode 新手。一旦我配置要构建的 C++ 命令行应用程序,并且它构建成功,我有时不知道 Xcode 如何调用 GNU C++。
是否可以获得 Xcode 创建的 makefile 或者如何查看 Xcode 创建的编译选项?
谢谢
I am new to Xcode. Once I configure my C++ command line application to build, and it builds successfully, I have sometimes no clue about how Xcode calls GNU C++.
Is it possible to get the makefile that Xcode creates or how to see the compilation options created by Xcode?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Xcode 实际上并不创建 makefile;而是创建 makefile。在它的其他功能中,Xcode 取代了 make。但您可以看到 Xcode 用于构建代码的所有选项等。只需在 Xcode 中打开项目,然后从“文件”菜单中选择“获取信息”即可。浏览生成的对话框,了解几乎所有您可能想了解的有关 Xcode 构建设置的信息。
或者您可以使用PBTOMAKE之类的工具,这是一个可以转换 Xcode 的 OS X 应用程序项目到 makefile 中,但已经几年没有更新了。
Xcode doesn't actually create a makefile; among it's other functionality, Xcode replaces make. But you can see all the options, etc., Xcode uses to build you code. Just open the project in Xcode, and select Get Info from the File menu. Browse the resulting dialog box for almost anything you could possibly want to know about Xcode build settings.
Or you could use a tool likePBTOMAKE, an OS X application that can convert Xcode projects into makefiles, but it hasn't been updated in a few years.