Title: [110914] branches/safari-534.55-branch/Source/_javascript_Core
Revision
110914
Author
lforsch...@apple.com
Date
2012-03-15 17:11:37 -0700 (Thu, 15 Mar 2012)

Log Message

Merged r110818.

Modified Paths

Diff

Modified: branches/safari-534.55-branch/Source/_javascript_Core/ChangeLog (110913 => 110914)


--- branches/safari-534.55-branch/Source/_javascript_Core/ChangeLog	2012-03-15 23:58:35 UTC (rev 110913)
+++ branches/safari-534.55-branch/Source/_javascript_Core/ChangeLog	2012-03-16 00:11:37 UTC (rev 110914)
@@ -1,3 +1,16 @@
+2012-03-14  Lucas Forschler  <lforsch...@apple.com>
+
+    Merge 110818
+
+    2012-03-14  Filip Pizlo  <fpi...@apple.com>
+
+            Fix for possible problems compiling with old versions of gcc
+            <rdar://problem/11043680>
+
+            Rubber stamped by Mark Rowe.
+
+            * Configurations/Base.xcconfig:
+
 2011-02-13  Lucas Forschler  <lforsch...@apple.com>
 
     Merge 107496

Modified: branches/safari-534.55-branch/Source/_javascript_Core/Configurations/Base.xcconfig (110913 => 110914)


--- branches/safari-534.55-branch/Source/_javascript_Core/Configurations/Base.xcconfig	2012-03-15 23:58:35 UTC (rev 110913)
+++ branches/safari-534.55-branch/Source/_javascript_Core/Configurations/Base.xcconfig	2012-03-16 00:11:37 UTC (rev 110914)
@@ -42,7 +42,9 @@
 GCC_OBJC_CALL_CXX_CDTORS = YES;
 GCC_PRECOMPILE_PREFIX_HEADER = YES;
 GCC_PREPROCESSOR_DEFINITIONS = $(DEBUG_DEFINES) HAVE_DTRACE=$(HAVE_DTRACE) WEBKIT_VERSION_MIN_REQUIRED=WEBKIT_VERSION_LATEST HAVE_HEADER_DETECTION_H $(GCC_PREPROCESSOR_DEFINITIONS);
-GCC_STRICT_ALIASING = YES;
+GCC_STRICT_ALIASING = $(GCC_STRICT_ALIASING_$(CURRENT_ARCH));
+GCC_STRICT_ALIASING_x86_64 = YES;
+GCC_STRICT_ALIASING_i386 = NO;
 GCC_THREADSAFE_STATICS = NO;
 GCC_TREAT_WARNINGS_AS_ERRORS = YES;
 GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to