[Lldb-commits] [lldb] Fix MAKE_DWP on Linux: set DSYM so the DWP packaging step runs (PR #198240)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Wed May 20 10:54:53 PDT 2026
================
@@ -563,28 +564,37 @@ ifneq "$(CODESIGN)" ""
endif
endif
-#----------------------------------------------------------------------
-# Make the dSYM file from the executable if $(MAKE_DSYM) != "NO"
-#----------------------------------------------------------------------
$(DSYM) : $(EXE)
ifeq "$(OS)" "Darwin"
ifneq "$(MAKE_DSYM)" "NO"
"$(DS)" $(DSFLAGS) -o "$(DSYM)" "$(EXE)"
else
endif
-else
+endif
+
ifeq "$(SPLIT_DEBUG_SYMBOLS)" "YES"
----------------
bulbazord wrote:
Is this still attached to the DSYM target? Shouldn't this be under the DWP_NAME target now?
https://github.com/llvm/llvm-project/pull/198240
More information about the lldb-commits
mailing list