Is it possible to debug a gcc-compiled program using lldb, or debug a clang-compiled program using gdb?

后端 未结 1 590
青春惊慌失措
青春惊慌失措 2020-12-08 04:20

(Preface: I\'m pretty new to C/C++ and I don\'t really know how debugging in native code actually works.)

Some sources say that gdb and lldb can debug any program co

相关标签:
1条回答
  • 2020-12-08 04:36

    In theory you should be able to debug a GCC-built program with lldb and an LLVM-built program with gdb. In both cases you should compile with -g.

    This is because both compilers generate object files in the same format (e.g., on Linux, both will generate ELF files with DWARF debug info) and both debuggers know how to parse that format.

    In practice, both compilers push some data into the debug info that only their respective debugger knows how to consume. However:

    1. LLVM-generated data should not hinder gdb in any way.
    2. GCC-generated data should not hinder lldb, but if it does you can specifically ask gcc to not add non-standard data. For example, on Linux, using -gdwarf-2 over -g should only generate standard-compliant DWARF.

    Notice that you can also debug programs without debug info (not compiled with -g), but you'll be limited to low-level information in the debugger - assembly code, memory and registers - and will not be able to see high level constructs such as line numbers, function names, mapping between variable names and their content, etc.

    0 讨论(0)
提交回复
热议问题