Xcode makefile 或编译选项

发布于 2024-08-18 04:39:27 字数 142 浏览 5 评论 0原文

我是 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 技术交流群。

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

发布评论

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

评论(1

倾听心声的旋律 2024-08-25 04:39:27

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.

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