如何让 Eclipse 在运行/调试之前运行不同的 make 目标
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您创建了“Makefile Project”类型的 C++ 项目(即用户应该提供自己的 Makefile),那么您将能够使用菜单创建多个“构建配置”:
我建议您创建一个“调试” ' 配置,其中构建设置将为“make debug”
以及“发布”或“默认”配置,其中构建设置为“make all”。
这样,在菜单中选择所需的配置后,您将能够在任一模式下构建和运行/调试:
我希望这可以有所帮助!
干杯。
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 :
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 :
I hope this can help!
Cheers.