[Lldb-commits] [lldb] a7005d7 - [lldb] Unify target triples across compiler and linker invocations
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 29 14:58:25 PDT 2023
Author: Jonas Devlieghere
Date: 2023-03-29T14:58:19-07:00
New Revision: a7005d7813b392f6d1c749239089bbc5cd6e0c54
URL: https://github.com/llvm/llvm-project/commit/a7005d7813b392f6d1c749239089bbc5cd6e0c54
DIFF: https://github.com/llvm/llvm-project/commit/a7005d7813b392f6d1c749239089bbc5cd6e0c54.diff
LOG: [lldb] Unify target triples across compiler and linker invocations
rdar://107364766
Added:
Modified:
lldb/test/API/macosx/universal64/Makefile
Removed:
################################################################################
diff --git a/lldb/test/API/macosx/universal64/Makefile b/lldb/test/API/macosx/universal64/Makefile
index f763f3ae2f6c9..ea773863cedc1 100644
--- a/lldb/test/API/macosx/universal64/Makefile
+++ b/lldb/test/API/macosx/universal64/Makefile
@@ -18,7 +18,7 @@ fat.arm64.out: fat.arm64.o
$(CC) -isysroot $(SDKROOT) -target arm64-apple-macosx10.9 -o $@ $<
fat.x86_64.o: main.c
- $(CC) -isysroot $(SDKROOT) -g -O0 -target x86_64-apple-macosx11 -c -o $@ $<
+ $(CC) -isysroot $(SDKROOT) -g -O0 -target x86_64-apple-macosx10.9 -c -o $@ $<
fat.arm64.o: main.c
- $(CC) -isysroot $(SDKROOT) -g -O0 -target arm64-apple-macosx11 -c -o $@ $<
+ $(CC) -isysroot $(SDKROOT) -g -O0 -target arm64-apple-macosx10.9 -c -o $@ $<
More information about the lldb-commits
mailing list