Title: [179312] trunk/Tools
- Revision
- 179312
- Author
- [email protected]
- Date
- 2015-01-28 16:30:07 -0800 (Wed, 28 Jan 2015)
Log Message
asan.xcconfig should use CLANG_ADDRESS_SANITIZER=YES instead of -fsanitize=address
https://bugs.webkit.org/show_bug.cgi?id=141015
Reviewed by Alexey Proskuryakov.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (179311 => 179312)
--- trunk/Tools/ChangeLog 2015-01-28 23:56:34 UTC (rev 179311)
+++ trunk/Tools/ChangeLog 2015-01-29 00:30:07 UTC (rev 179312)
@@ -1,3 +1,12 @@
+2015-01-28 Dana Burkart <[email protected]>
+
+ asan.xcconfig should use CLANG_ADDRESS_SANITIZER=YES instead of -fsanitize=address
+ https://bugs.webkit.org/show_bug.cgi?id=141015
+
+ Reviewed by Alexey Proskuryakov.
+
+ * asan/asan.xcconfig:
+
2015-01-28 Sam Weinig <[email protected]>
Fix the build.
Modified: trunk/Tools/asan/asan.xcconfig (179311 => 179312)
--- trunk/Tools/asan/asan.xcconfig 2015-01-28 23:56:34 UTC (rev 179311)
+++ trunk/Tools/asan/asan.xcconfig 2015-01-29 00:30:07 UTC (rev 179312)
@@ -10,8 +10,9 @@
GCC_OPTIMIZATION_LEVEL_Production = 1;
GCC_OPTIMIZATION_LEVEL_Release = 1;
-ASAN_OTHER_CFLAGS = -fsanitize=address -fsanitize-blacklist=$(ASAN_IGNORE) -fno-omit-frame-pointer -g;
+CLANG_ADDRESS_SANITIZER=YES
+
+ASAN_OTHER_CFLAGS = -fsanitize-blacklist=$(ASAN_IGNORE) -fno-omit-frame-pointer -g;
ASAN_OTHER_CPLUSPLUSFLAGS = $(ASAN_OTHER_CFLAGS);
-ASAN_OTHER_LDFLAGS = -fsanitize=address;
GCC_ENABLE_OBJC_GC = NO;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes