[Lldb-commits] [lldb] 1910eeb - Fix make invocation to pass in the correct source file

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 12 16:37:09 PDT 2022


Author: Adrian Prantl
Date: 2022-09-12T16:36:56-07:00
New Revision: 1910eeb59f38f32a3ab25e3fb6f555cb35f4e5ed

URL: https://github.com/llvm/llvm-project/commit/1910eeb59f38f32a3ab25e3fb6f555cb35f4e5ed
DIFF: https://github.com/llvm/llvm-project/commit/1910eeb59f38f32a3ab25e3fb6f555cb35f4e5ed.diff

LOG: Fix make invocation to pass in the correct source file

Added: 
    

Modified: 
    lldb/test/API/macosx/lc-note/firmware-corefile/Makefile

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/macosx/lc-note/firmware-corefile/Makefile b/lldb/test/API/macosx/lc-note/firmware-corefile/Makefile
index 05020112520e8..4d798fc9ad993 100644
--- a/lldb/test/API/macosx/lc-note/firmware-corefile/Makefile
+++ b/lldb/test/API/macosx/lc-note/firmware-corefile/Makefile
@@ -6,6 +6,6 @@ all: a.out create-empty-corefile
 
 create-empty-corefile:
 	"$(MAKE)" -f "$(MAKEFILE_RULES)" EXE=create-empty-corefile \
-		C_SOURCES=create-empty-corefile.c
+	    CXX=$(CC) CXX_SOURCES=create-empty-corefile.cpp
 
 include Makefile.rules


        


More information about the lldb-commits mailing list