Title: [87582] branches/safari-534-branch/Source

Diff

Modified: branches/safari-534-branch/Source/_javascript_Core/ChangeLog (87581 => 87582)


--- branches/safari-534-branch/Source/_javascript_Core/ChangeLog	2011-05-27 23:09:20 UTC (rev 87581)
+++ branches/safari-534-branch/Source/_javascript_Core/ChangeLog	2011-05-27 23:09:26 UTC (rev 87582)
@@ -1,5 +1,17 @@
 2011-05-27  Mark Rowe  <mr...@apple.com>
 
+        Merge r87580.
+
+    2011-05-27  Stephanie Lewis  <sle...@apple.com>
+
+        Unreviewed.
+
+        Fix a typo in the order_file flag.
+
+        * Configurations/Base.xcconfig:
+
+2011-05-27  Mark Rowe  <mr...@apple.com>
+
         Merge r87520.
 
     2011-05-27  Stephanie Lewis  <sle...@apple.com>

Modified: branches/safari-534-branch/Source/_javascript_Core/Configurations/Base.xcconfig (87581 => 87582)


--- branches/safari-534-branch/Source/_javascript_Core/Configurations/Base.xcconfig	2011-05-27 23:09:20 UTC (rev 87581)
+++ branches/safari-534-branch/Source/_javascript_Core/Configurations/Base.xcconfig	2011-05-27 23:09:26 UTC (rev 87582)
@@ -102,7 +102,7 @@
 DEAD_CODE_STRIPPING_normal = YES;
 DEAD_CODE_STRIPPING = $(DEAD_CODE_STRIPPING_$(CURRENT_VARIANT));
 
-SECTORDER_FLAGS = -W1,-order_file,_javascript_Core.order;
+SECTORDER_FLAGS = -Wl,-order_file,_javascript_Core.order;
 
 // FIXME: Disable C++ exceptions in the LLVM Compiler once it supports enabling Obj-C exceptions without C++ exceptions.
 GCC_ENABLE_CPP_EXCEPTIONS = $(GCC_ENABLE_CPP_EXCEPTIONS_$(TARGET_GCC_VERSION));

Modified: branches/safari-534-branch/Source/WebCore/ChangeLog (87581 => 87582)


--- branches/safari-534-branch/Source/WebCore/ChangeLog	2011-05-27 23:09:20 UTC (rev 87581)
+++ branches/safari-534-branch/Source/WebCore/ChangeLog	2011-05-27 23:09:26 UTC (rev 87582)
@@ -1,5 +1,17 @@
 2011-05-27  Mark Rowe  <mr...@apple.com>
 
+        Merge r87580.
+
+    2011-05-27  Stephanie Lewis  <sle...@apple.com>
+
+        Unreviewed.
+
+        Fix a typo in the order_file flag.
+
+        * Configurations/Base.xcconfig:
+
+2011-05-27  Mark Rowe  <mr...@apple.com>
+
         Merge r87520.
 
     2011-05-27  Stephanie Lewis  <sle...@apple.com>

Modified: branches/safari-534-branch/Source/WebCore/Configurations/Base.xcconfig (87581 => 87582)


--- branches/safari-534-branch/Source/WebCore/Configurations/Base.xcconfig	2011-05-27 23:09:20 UTC (rev 87581)
+++ branches/safari-534-branch/Source/WebCore/Configurations/Base.xcconfig	2011-05-27 23:09:26 UTC (rev 87582)
@@ -92,7 +92,7 @@
 DEAD_CODE_STRIPPING_normal = YES;
 DEAD_CODE_STRIPPING = $(DEAD_CODE_STRIPPING_$(CURRENT_VARIANT));
 
-SECTORDER_FLAGS = -W1,-order_file,WebCore.order;
+SECTORDER_FLAGS = -Wl,-order_file,WebCore.order;
 
 WEBCORE_SQLITE3_HEADER_SEARCH_PATHS = $(NEXT_ROOT)/usr/local/include/WebCoreSQLite3;
 SQLITE3_HEADER_SEARCH_PATHS = $(SQLITE3_HEADER_SEARCH_PATHS_$(REAL_PLATFORM_NAME));

Modified: branches/safari-534-branch/Source/WebKit/mac/ChangeLog (87581 => 87582)


--- branches/safari-534-branch/Source/WebKit/mac/ChangeLog	2011-05-27 23:09:20 UTC (rev 87581)
+++ branches/safari-534-branch/Source/WebKit/mac/ChangeLog	2011-05-27 23:09:26 UTC (rev 87582)
@@ -4,6 +4,14 @@
 
     2011-05-27  Stephanie Lewis  <sle...@apple.com>
 
+        Unreviewed.
+
+        Fix a typo in the order_file flag.
+
+        * Configurations/Base.xcconfig:
+
+2011-05-27  Stephanie Lewis  <sle...@apple.com>
+
         Rubber Stamped by Adam Roben.
 
         Update Order Files.  Use -order_file flag since it can order more of the binary.

Modified: branches/safari-534-branch/Source/WebKit/mac/Configurations/Base.xcconfig (87581 => 87582)


--- branches/safari-534-branch/Source/WebKit/mac/Configurations/Base.xcconfig	2011-05-27 23:09:20 UTC (rev 87581)
+++ branches/safari-534-branch/Source/WebKit/mac/Configurations/Base.xcconfig	2011-05-27 23:09:26 UTC (rev 87582)
@@ -88,7 +88,7 @@
 // building the MiG bindings for WebKitPluginClient even when the functions that the bindings wrap are not built.
 DEAD_CODE_STRIPPING = YES;
 
-SECTORDER_FLAGS = -W1,-order_file,mac/WebKit.order;
+SECTORDER_FLAGS = -Wl,-order_file,mac/WebKit.order;
 
 // FIXME: Disable C++ exceptions in the LLVM Compiler once it supports enabling Obj-C exceptions without C++ exceptions.
 GCC_ENABLE_CPP_EXCEPTIONS = $(GCC_ENABLE_CPP_EXCEPTIONS_$(TARGET_GCC_VERSION));

Modified: branches/safari-534-branch/Source/WebKit2/ChangeLog (87581 => 87582)


--- branches/safari-534-branch/Source/WebKit2/ChangeLog	2011-05-27 23:09:20 UTC (rev 87581)
+++ branches/safari-534-branch/Source/WebKit2/ChangeLog	2011-05-27 23:09:26 UTC (rev 87582)
@@ -1,5 +1,17 @@
 2011-05-27  Mark Rowe  <mr...@apple.com>
 
+        Merge r87580.
+
+    2011-05-27  Stephanie Lewis  <sle...@apple.com>
+
+        Unreviewed.
+
+        Fix a typo in the order_file flag.
+
+        * Configurations/Base.xcconfig:
+
+2011-05-27  Mark Rowe  <mr...@apple.com>
+
         Merge r87520.
 
     2011-05-27  Stephanie Lewis  <sle...@apple.com>

Modified: branches/safari-534-branch/Source/WebKit2/Configurations/Base.xcconfig (87581 => 87582)


--- branches/safari-534-branch/Source/WebKit2/Configurations/Base.xcconfig	2011-05-27 23:09:20 UTC (rev 87581)
+++ branches/safari-534-branch/Source/WebKit2/Configurations/Base.xcconfig	2011-05-27 23:09:26 UTC (rev 87582)
@@ -81,7 +81,7 @@
 // building the MiG bindings for WebKitPluginClient even when the functions that the bindings wrap are not built.
 DEAD_CODE_STRIPPING = YES;
 
-SECTORDER_FLAGS = -W1,-order_file,mac/WebKit2.order;
+SECTORDER_FLAGS = -Wl,-order_file,mac/WebKit2.order;
 
 // FIXME: Disable C++ exceptions in the LLVM Compiler once it supports enabling Obj-C exceptions without C++ exceptions.
 GCC_ENABLE_CPP_EXCEPTIONS = $(GCC_ENABLE_CPP_EXCEPTIONS_$(TARGET_GCC_VERSION));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to