llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Adrian Prantl (adrian-prantl)

<details>
<summary>Changes</summary>



---
Full diff: https://github.com/llvm/llvm-project/pull/168408.diff


5 Files Affected:

- (modified) lldb/packages/Python/lldbsuite/test/make/Makefile.rules (+3-1) 
- (modified) 
lldb/test/API/commands/target/auto-install-main-executable/Makefile (+1-1) 
- (modified) 
lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/Makefile (+2-2) 
- (modified) lldb/test/API/macosx/find-dsym/deep-bundle/Makefile (+2-2) 
- (modified) lldb/test/API/macosx/posix_spawn/Makefile (+3-3) 


``````````diff
diff --git a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules 
b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
index 0122fe8409c29..55dbd3934860f 100644
--- a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
+++ b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
@@ -339,9 +339,11 @@ endif
 # library to make ASAN tests work for most users, including the bots.
 ifeq "$(OS)" "Darwin"
 ifneq "$(ASAN_OPTIONS)" ""
-LDFLAGS += -Wl,-lto_library -Wl,$(shell dirname $(shell xcrun -find 
clang))/../lib/libLTO.dylib
+ASAN_LDFLAGS = -Wl,-lto_library -Wl,$(shell dirname $(shell xcrun -find 
clang))/../lib/libLTO.dylib
 endif
 endif
+LDFLAGS += $(ASAN_LDFLAGS)
+
 OBJECTS =
 EXE ?= a.out
 
diff --git 
a/lldb/test/API/commands/target/auto-install-main-executable/Makefile 
b/lldb/test/API/commands/target/auto-install-main-executable/Makefile
index 07e6c9a1d0f15..d0578fb699d1b 100644
--- a/lldb/test/API/commands/target/auto-install-main-executable/Makefile
+++ b/lldb/test/API/commands/target/auto-install-main-executable/Makefile
@@ -6,4 +6,4 @@ a.out: a.device.out
 include Makefile.rules
 
 a.device.out:
-       $(CXX) $(CXXFLAGS) -DBUILD=74 -o $@ $(SRCDIR)/main.cpp
+       $(CXX) $(ASAN_LDFLAGS) $(CXXFLAGS) -DBUILD=74 -o $@ $(SRCDIR)/main.cpp
diff --git 
a/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/Makefile 
b/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
index 12781fd847768..f13584041fb51 100644
--- a/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
+++ b/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
@@ -5,7 +5,7 @@ all: clean $(EXE)
 include Makefile.rules
 
 $(EXE):
-       $(CC) $(CFLAGS) -dynamiclib -o com.apple.sbd $(SRCDIR)/bundle.c
+       $(CC) $(ASAN_LDFLAGS) $(CFLAGS) -dynamiclib -o com.apple.sbd 
$(SRCDIR)/bundle.c
        mkdir com.apple.sbd.xpc
        mv com.apple.sbd com.apple.sbd.xpc/
        mkdir -p com.apple.sbd.xpc.dSYM/Contents/Resources/DWARF
@@ -13,7 +13,7 @@ $(EXE):
        rm -rf com.apple.sbd.dSYM
        mkdir hide.app
        tar cf - com.apple.sbd.xpc com.apple.sbd.xpc.dSYM | ( cd hide.app;tar 
xBpf -)
-       $(CC) $(CFLAGS) -o find-bundle-with-dots-in-fn $(SRCDIR)/main.c
+       $(CC) $(ASAN_LDFLAGS) $(CFLAGS) -o find-bundle-with-dots-in-fn 
$(SRCDIR)/main.c
 
 clean::
        rm -rf a.out a.out.dSYM hide.app com.apple.sbd com.apple.sbd.dSYM 
com.apple.sbd.xpc com.apple.sbd.xpc.dSYM find-bundle-with-dots-in-fn 
find-bundle-with-dots-in-fn.dSYM
diff --git a/lldb/test/API/macosx/find-dsym/deep-bundle/Makefile 
b/lldb/test/API/macosx/find-dsym/deep-bundle/Makefile
index 806c840c9f2ee..c041d9e7a0e95 100644
--- a/lldb/test/API/macosx/find-dsym/deep-bundle/Makefile
+++ b/lldb/test/API/macosx/find-dsym/deep-bundle/Makefile
@@ -4,7 +4,7 @@ all: clean $(EXE)
 include Makefile.rules
 
 $(EXE):
-       $(CC) $(CFLAGS) -install_name $(shell 
pwd)/MyFramework.framework/Versions/A/MyFramework -dynamiclib -o MyFramework 
$(SRCDIR)/myframework.c
+       $(CC) $(ASAN_LDFLAGS) $(CFLAGS) -install_name $(shell 
pwd)/MyFramework.framework/Versions/A/MyFramework -dynamiclib -o MyFramework 
$(SRCDIR)/myframework.c
        mkdir -p MyFramework.framework/Versions/A/Headers
        mkdir -p MyFramework.framework/Versions/A/Resources
        cp MyFramework MyFramework.framework/Versions/A
@@ -18,7 +18,7 @@ $(EXE):
        mkdir hide.app
        rm -f MyFramework
        tar cf - MyFramework.framework MyFramework.framework.dSYM | ( cd 
hide.app;tar xBpf -)
-       $(CC) $(CFLAGS) -o deep-bundle $(SRCDIR)/main.c -F. -framework 
MyFramework
+       $(CC) $(ASAN_LDFLAGS) $(CFLAGS) -o deep-bundle $(SRCDIR)/main.c -F. 
-framework MyFramework
 
 clean::
        rm -rf a.out a.out.dSYM deep-bundle deep-bundle.dSYM 
MyFramework.framework MyFramework.framework.dSYM MyFramework MyFramework.dSYM 
hide.app
diff --git a/lldb/test/API/macosx/posix_spawn/Makefile 
b/lldb/test/API/macosx/posix_spawn/Makefile
index 7ae46ca95828d..cbdee9122e3f2 100644
--- a/lldb/test/API/macosx/posix_spawn/Makefile
+++ b/lldb/test/API/macosx/posix_spawn/Makefile
@@ -6,13 +6,13 @@ include Makefile.rules
 all: fat.out
 
 x86_64.out: x86_64.c
-       $(CC) -isysroot $(SDKROOT) -target x86_64-apple-macosx10.9 -o 
x86_64.out $<
+       $(CC) $(ASAN_LDFLAGS) -isysroot $(SDKROOT) -target 
x86_64-apple-macosx10.9 -o x86_64.out $<
 
 x86_64h.out: x86_64h.c
-       $(CC) -isysroot $(SDKROOT) -target x86_64h-apple-macosx10.9 -o 
x86_64h.out $<
+       $(CC) $(ASAN_LDFLAGS) -isysroot $(SDKROOT) -target 
x86_64h-apple-macosx10.9 -o x86_64h.out $<
 
 arm64.out: arm64.c
-       $(CC) -isysroot $(SDKROOT) -target arm64-apple-macosx10.9 -o arm64.out 
$<
+       $(CC) $(ASAN_LDFLAGS) -isysroot $(SDKROOT) -target 
arm64-apple-macosx10.9 -o arm64.out $<
 
 fat.out: x86_64.out x86_64h.out arm64.out
        $(LIPO) -o fat.out -create $^

``````````

</details>


https://github.com/llvm/llvm-project/pull/168408
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to