如何让 Eclipse 在运行/调试之前运行不同的 make 目标

发布于 2024-11-15 03:06:03 字数 317 浏览 2 评论 0原文

我正在 Eclipse 中使用 CDT 插件,使用我自己的 Makefile 开发一个 C++ 应用程序。有没有办法强制 Eclipse 在我运行项目之前运行make all,但在我尝试调试<之前运行make debug /strong> 吗?我希望在调试期间使用 -g 开关编译应用程序,但在运行时使用 -O3 编译应用程序,而不需要手动重写 -g 开关每次都在 Makefile 中。

谢谢

I am developing a C++ app in Eclipse with CDT plugin, using my own Makefile. Is there a way how to force Eclipse to run make all before I run the project but make debug before I try to debug it? I want to have the app compiled with -g switch during debugging but with -O3 when I run it, without manually rewriting the -g switch in the Makefile each time.

Thanks

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

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

发布评论

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

评论(1

我很OK 2024-11-22 03:06:03

如果您创建了“Makefile Project”类型的 C++ 项目(即用户应该提供自己的 Makefile),那么您将能够使用菜单创建多个“构建配置”:

Project > Build Configurations > Manage ...

我建议您创建一个“调试” ' 配置,其中构建设置将为“make debug”
以及“发布”或“默认”配置,其中构建设置为“make all”。
这样,在菜单中选择所需的配置后,您将能够在任一模式下构建和运行/调试:

Project > Build Configurations > Set active > ...

我希望这可以有所帮助!
干杯。

If you have created a C++ project of type 'Makefile Project' (i.e where the user is supposed to provide his own Makefile), then you will be able to create several 'Build configurations' using the menu :

Project > Build Configurations > Manage ...

I suggest you create a 'Debug' configuration where the build settings will be 'make debug'
and a 'Release' or 'Default' configuration where the build settings are 'make all'.
This way you will be able to build and run/debug in either mode after selecting the wished configuration in menu :

Project > Build Configurations > Set active > ...

I hope this can help!
Cheers.

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