From a7005d7813b392f6d1c749239089bbc5cd6e0c54 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 29 Mar 2023 14:53:58 -0700 Subject: [PATCH] [lldb] Unify target triples across compiler and linker invocations rdar://107364766 --- lldb/test/API/macosx/universal64/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/API/macosx/universal64/Makefile b/lldb/test/API/macosx/universal64/Makefile index f763f3ae..ea77386 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 $@ $< -- 2.7.4