如何使用 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>
相关文章