Title: [165754] trunk/Source/WebKit/mac
- Revision
- 165754
- Author
- [email protected]
- Date
- 2014-03-17 13:34:52 -0700 (Mon, 17 Mar 2014)
Log Message
REGRESSION: WebKitLegacy causes ASan build to fail
<rdar://problem/16344326>
Patch by David Farler <[email protected]> on 2014-03-17
Reviewed by David Kilzer.
* Configurations/DebugRelease.xcconfig: Remove $(inherited) from
OTHER_CFLAGS, OTHER_CPLUSPLUSFLAGS, OTHER_LDFLAGS to prevent
double complete ASAN flags.
Modified Paths
Diff
Modified: trunk/Source/WebKit/mac/ChangeLog (165753 => 165754)
--- trunk/Source/WebKit/mac/ChangeLog 2014-03-17 20:33:20 UTC (rev 165753)
+++ trunk/Source/WebKit/mac/ChangeLog 2014-03-17 20:34:52 UTC (rev 165754)
@@ -1,3 +1,14 @@
+2014-03-17 David Farler <[email protected]>
+
+ REGRESSION: WebKitLegacy causes ASan build to fail
+ <rdar://problem/16344326>
+
+ Reviewed by David Kilzer.
+
+ * Configurations/DebugRelease.xcconfig: Remove $(inherited) from
+ OTHER_CFLAGS, OTHER_CPLUSPLUSFLAGS, OTHER_LDFLAGS to prevent
+ double complete ASAN flags.
+
2014-03-16 Brent Fulgham <[email protected]>
Provide preference to enable additional AVFoundation options
Modified: trunk/Source/WebKit/mac/Configurations/DebugRelease.xcconfig (165753 => 165754)
--- trunk/Source/WebKit/mac/Configurations/DebugRelease.xcconfig 2014-03-17 20:33:20 UTC (rev 165753)
+++ trunk/Source/WebKit/mac/Configurations/DebugRelease.xcconfig 2014-03-17 20:34:52 UTC (rev 165754)
@@ -48,9 +48,9 @@
WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_1090 = WebKitSystemInterfaceMavericks;
WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_101000 = $(WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_1090);
-OTHER_CFLAGS = $(inherited) $(ASAN_OTHER_CFLAGS);
-OTHER_CPLUSPLUSFLAGS = $(inherited) $(ASAN_OTHER_CPLUSPLUSFLAGS);
-OTHER_LDFLAGS = $(inherited) $(ASAN_OTHER_LDFLAGS);
+OTHER_CFLAGS = $(ASAN_OTHER_CFLAGS);
+OTHER_CPLUSPLUSFLAGS = $(ASAN_OTHER_CPLUSPLUSFLAGS);
+OTHER_LDFLAGS = $(ASAN_OTHER_LDFLAGS);
SDKROOT = $(SDKROOT_$(PLATFORM_NAME));
SDKROOT_iphoneos = $(SDKROOT);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes