如何通过 Make 命令行将 -g3 标志传递给 GCC?

发布于 2024-12-06 06:30:31 字数 156 浏览 0 评论 0原文

我的项目使用 -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 技术交流群。

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

发布评论

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

评论(1

顾忌 2024-12-13 06:30:31

这取决于 Makefile 的作用/它是如何编写的。这可能是不可能的。

如果你的 Makefile 相当“标准”,那么这应该可以工作:

make CFLAGS="-g3 ..."

如果它用于 C++:

make CXXFLAGS="-g3 ..."

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:

make CFLAGS="-g3 ..."

If it's for C++:

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