如何通过 Make 命令行将 -g3 标志传递给 GCC?
我的项目使用 -g
选项编译,而不是 -g3
,这意味着我无法在 gdb 中扩展宏。我想向 GCC 添加 -g3
标志,但我不想修改 makefile,我只想通过 Make 命令行添加此标志。
我该怎么做呢?
My project compiled with -g
option instead of -g3
, which means that I can't expand macros in gdb. I want to add the -g3
flag to GCC, but I don't want to modify the makefile, I just want to add this flag via the Make command line.
How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于 Makefile 的作用/它是如何编写的。这可能是不可能的。
如果你的 Makefile 相当“标准”,那么这应该可以工作:
如果它用于 C++:
That depends on what the Makefile does/how it was written. It might not be possible.
If your Makefile is reasonably "standard", then this should work:
If it's for C++: