如何获取 LLVM 调试符号

How to get LLVM debug symbols

我有一个使用 Clang API 的 c++ 项目,我希望在调试项目时能够调试到 clang/llvm 函数。

我使用带有以下选项的 CMake 构建了 llvm+clang v3.7.0:

 -DCMAKE_INSTALL_PREFIX=$HOME/opt/llvm -DCMAKE_BUILD_TYPE=Debug

但 GDB 不会进入 clang API 的函数。

我做错了什么?

很可能您正在做的不是在命令行上设置带有 -cc1 的断点。为了错误处理的目的,clang 立即分叉,所以如果你在 main 上设置断点,你会看到它发生。如果你想从 clang 开始调试,那么你应该:

  • 使用调试符号构建(看起来你正在这样做)
  • 运行 clang with -v 以获取各种命令行,例如

    dzur:~/tmp>~/builds/build-llvm/bin/clang-vt.c-S

    "/usr/local/google/home/echristo/builds/build-llvm/bin/clang-3.9" -cc1 -triple x86_64-unknown-linux-gnu -S -disable-free -main-file-name t.c -mrelocation-model static -mthread-model posix -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -v -dwarf-column-info -debugger-tuning=gdb -coverage-文件 /usr/local/google/home/echristo/tmp/t.c -resource-dir /usr/local/google/home/echristo/builds/build-llvm/bin/../lib/clang/3.9.0 -internal-isystem /usr/local/include -internal-isystem /usr/local/google/home/echristo/builds/build-llvm/bin/../lib/clang/3.9.0/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdebug-compilation-dir /usr/local/google/home/echristo/tmp -ferror -limit 19 -fmessage-length 120 -fobjc-runtime=gcc -fdiagnostics-show-option -fcolor-diagnostics -o t.s -x c t.c

  • 在此命令行中您希望在源代码中设置断点。