调试 cmake_使用cmake启用调试

调试 cmake

How to enable debugging with cmake?

如何使用cmake启用调试?

If we use cmake to build the project, we may want to enabling the debuging mode that cmake invoke gcc with the -g so that we can debug the compiled program with gdb.

如果使用cmake生成项目 ,则可能需要启用cmake用-g调用gcc的调试模式,以便我们可以使用gdb 调试已编译的程序。

This can be enabled by adding the CMAKE_BUILD_TYPE parameter to cmake:

可以通过将CMAKE_BUILD_TYPE参数添加到cmake来启用此功能:

cmake -DCMAKE_BUILD_TYPE=Debug .

Then the compiled program can be debugged with gdb.

然后可以使用gdb调试编译的程序。

Answered by anonymous.
匿名回答。

翻译自: https://www.systutorials.com/enable-debugging-with-cmake/

调试 cmake

你可能感兴趣的:(cmake,debug,c++,gdb,java)