Title: [174242] trunk/Tools
Revision
174242
Author
[email protected]
Date
2014-10-02 16:32:06 -0700 (Thu, 02 Oct 2014)

Log Message

Move ASan arguments from LLVM (-mllvm) to the frontend
https://bugs.webkit.org/show_bug.cgi?id=137365

Reviewed by David Kilzer.

* asan/asan.xcconfig:
Remove the -mllvm prefix to the asan-blacklist argument, moving it
to the clang frontend.

http://llvm.org/viewvc/llvm-project?view=revision&revision=212505

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (174241 => 174242)


--- trunk/Tools/ChangeLog	2014-10-02 23:30:04 UTC (rev 174241)
+++ trunk/Tools/ChangeLog	2014-10-02 23:32:06 UTC (rev 174242)
@@ -1,3 +1,16 @@
+2014-10-02  David Farler  <[email protected]>
+
+        Move ASan arguments from LLVM (-mllvm) to the frontend
+        https://bugs.webkit.org/show_bug.cgi?id=137365
+
+        Reviewed by David Kilzer.
+
+        * asan/asan.xcconfig:
+        Remove the -mllvm prefix to the asan-blacklist argument, moving it
+        to the clang frontend.
+
+        http://llvm.org/viewvc/llvm-project?view=revision&revision=212505
+
 2014-10-02  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r174120.

Modified: trunk/Tools/asan/asan.xcconfig (174241 => 174242)


--- trunk/Tools/asan/asan.xcconfig	2014-10-02 23:30:04 UTC (rev 174241)
+++ trunk/Tools/asan/asan.xcconfig	2014-10-02 23:32:06 UTC (rev 174242)
@@ -1,6 +1,6 @@
 GCC_TREAT_WARNINGS_AS_ERRORS = NO;
 
-ASAN_OTHER_CFLAGS = -fsanitize=address -O1 -mllvm -asan-blacklist=$(ASAN_IGNORE) -Wno-error -fno-omit-frame-pointer -g -DUSE_SYSTEM_MALLOC=1;
+ASAN_OTHER_CFLAGS = -fsanitize=address -O1 -asan-blacklist=$(ASAN_IGNORE) -Wno-error -fno-omit-frame-pointer -g -DUSE_SYSTEM_MALLOC=1;
 ASAN_OTHER_CPLUSPLUSFLAGS = $(ASAN_OTHER_CFLAGS);
 ASAN_OTHER_LDFLAGS = -fsanitize=address $(ASAN_OTHER_LDFLAGS_$(PLATFORM_NAME));
 ASAN_OTHER_LDFLAGS_macosx = -lclang_rt.asan_osx_dynamic;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to