Clion调试:如何进入STL

时间:2016-12-01 06:43:07

标签: c++ debugging stl clion

我想知道字符串是如何工作的,所以我在basic_string.h中添加了断点。 但是当我调试时它没有进入这些断点。

当我在调试时添加断点时,GDB控制台会显示: 文件" C中没有第1008行:/Users/manch/Downloads/MinGW/lib/gcc/mingw32/4.8.1/include/c ++ / bits / basic_string.h"。

enter image description here

这是我的测试代码

#include <iostream>
#include <string>

int main() {
    std::string *ps = new std::string("hello");
    ps->append(" world");
    return 0;
}

和CMakeLists.txt

cmake_minimum_required(VERSION 3.6)
project(Stl)

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")

set(SOURCE_FILES main.cpp test.cpp  C:/Users/manch/Downloads/MinGW/lib/gcc/mingw32/4.8.1/include/c++/bits/stl_construct_copy.h)
add_executable(Stl ${SOURCE_FILES})

1 个答案:

答案 0 :(得分:0)

您还需要拥有libstdc++标准C ++库MinGW链接您的可执行文件的源文件。然后,根据this问题,您需要在编译时添加-D_GLIBCXX_DEBUG标志,以便链接具有调试信息的库。