How do you set GDB debug flag with cmake?(如何使用 cmake 设置 GDB 调试标志?)
问题描述
我尝试使用
set
cmake
中的命令,但我不确定要添加什么.有人告诉我诸如 DEBUG=true
之类的事情,但到目前为止我无法找到要设置的正确标志.
command in cmake
but I cam unsure what to add. I have been told things like DEBUG=true
but so far i am unable to find the correct flag to set.
推荐答案
如果你想在编译时为 debug 构建(包括源信息,即 -g),使用
If you want to build for debug (including source information, i.e. -g) when compiling, use
cmake -DCMAKE_BUILD_TYPE=Debug <path>
如果要构建发布版本,可以使用
If you want to build a release build, you can use
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo <path>
这篇关于如何使用 cmake 设置 GDB 调试标志?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 cmake 设置 GDB 调试标志?
- 从python回调到c++的选项 2022-11-16
- C++ 协变模板 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 静态初始化顺序失败 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01