[Lldb-commits] [lldb] [lldb][unittests] Add LLDB_UNITTEST_STRIP_DEBUG_INFO to cut unittest link time (PR #203274)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 12 04:26:53 PDT 2026
adrian-prantl wrote:
This would really only make sense on Windows. On macOS, debug info is not processed by the linker at all; the only thing the linker does is create a table of contents (the debug map) associating each function symbol with an object file (which is where the debug info lives). On ELF platforms, you should build LLVM with -gsplit-dwarf, which has many of the same advantages in terms of link time.
https://github.com/llvm/llvm-project/pull/203274
More information about the lldb-commits
mailing list