Title: [279266] trunk/Source
Revision
279266
Author
sihui_...@apple.com
Date
2021-06-24 20:30:00 -0700 (Thu, 24 Jun 2021)

Log Message

Remove references to order files
https://bugs.webkit.org/show_bug.cgi?id=227377
rdar://76070556

Reviewed by Mark Lam.

Source/_javascript_Core:

* Configurations/_javascript_Core.xcconfig:

Source/WebCore:

We don't need to refer to order files on iOS now.

* Configurations/WebCore.xcconfig:

Source/WebKit:

* Configurations/WebKit.xcconfig:

Source/WebKitLegacy/mac:

* Configurations/WebKitLegacy.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (279265 => 279266)


--- trunk/Source/_javascript_Core/ChangeLog	2021-06-25 02:23:28 UTC (rev 279265)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-06-25 03:30:00 UTC (rev 279266)
@@ -1,3 +1,13 @@
+2021-06-24  Sihui Liu  <sihui_...@apple.com>
+
+        Remove references to order files
+        https://bugs.webkit.org/show_bug.cgi?id=227377
+        rdar://76070556
+
+        Reviewed by Mark Lam.
+
+        * Configurations/_javascript_Core.xcconfig:
+
 2021-06-24  Asumu Takikawa  <as...@igalia.com>
 
         [WASM-Function-References] Add support for (ref null? $t) type constructor

Modified: trunk/Source/_javascript_Core/Configurations/_javascript_Core.xcconfig (279265 => 279266)


--- trunk/Source/_javascript_Core/Configurations/_javascript_Core.xcconfig	2021-06-25 02:23:28 UTC (rev 279265)
+++ trunk/Source/_javascript_Core/Configurations/_javascript_Core.xcconfig	2021-06-25 03:30:00 UTC (rev 279266)
@@ -34,7 +34,6 @@
 OTHER_LDFLAGS[sdk=macosx*] = $(inherited) $(OTHER_LDFLAGS_BASE) -framework CoreServices;
 
 SECTORDER_FLAGS = $(SECTORDER_FLAGS_$(CONFIGURATION));
-SECTORDER_FLAGS_Production[sdk=iphoneos*] = -Wl,-order_file,$(SDKROOT)/AppleInternal/OrderFiles/_javascript_Core.order;
 SECTORDER_FLAGS_Production[sdk=macosx*] = -Wl,-order_file,_javascript_Core.order;
 
 GCC_PREFIX_HEADER = _javascript_CorePrefix.h;

Modified: trunk/Source/WebCore/ChangeLog (279265 => 279266)


--- trunk/Source/WebCore/ChangeLog	2021-06-25 02:23:28 UTC (rev 279265)
+++ trunk/Source/WebCore/ChangeLog	2021-06-25 03:30:00 UTC (rev 279266)
@@ -1,3 +1,15 @@
+2021-06-24  Sihui Liu  <sihui_...@apple.com>
+
+        Remove references to order files
+        https://bugs.webkit.org/show_bug.cgi?id=227377
+        rdar://76070556
+
+        Reviewed by Mark Lam.
+
+        We don't need to refer to order files on iOS now.
+
+        * Configurations/WebCore.xcconfig:
+
 2021-06-24  Venky Dass  <yaranamavenkataram...@apple.com>
 
         Crash in IDBTransaction::dispatchEvent when m_openDBRequest is null. 

Modified: trunk/Source/WebCore/Configurations/WebCore.xcconfig (279265 => 279266)


--- trunk/Source/WebCore/Configurations/WebCore.xcconfig	2021-06-25 02:23:28 UTC (rev 279265)
+++ trunk/Source/WebCore/Configurations/WebCore.xcconfig	2021-06-25 03:30:00 UTC (rev 279266)
@@ -131,7 +131,6 @@
 OTHER_LDFLAGS_PLATFORM_macosx = -sub_library libobjc -umbrella WebKit;
 
 SECTORDER_FLAGS = $(SECTORDER_FLAGS_$(CONFIGURATION));
-SECTORDER_FLAGS_Production[sdk=iphoneos*] = -Wl,-order_file,$(SDKROOT)/AppleInternal/OrderFiles/WebCore.order;
 SECTORDER_FLAGS_Production[sdk=macosx*] = -Wl,-order_file,WebCore.order;
 
 NORMAL_WEBCORE_FRAMEWORKS_DIR[sdk=iphone*] = $(PRODUCTION_FRAMEWORKS_DIR);

Modified: trunk/Source/WebKit/ChangeLog (279265 => 279266)


--- trunk/Source/WebKit/ChangeLog	2021-06-25 02:23:28 UTC (rev 279265)
+++ trunk/Source/WebKit/ChangeLog	2021-06-25 03:30:00 UTC (rev 279266)
@@ -1,3 +1,13 @@
+2021-06-24  Sihui Liu  <sihui_...@apple.com>
+
+        Remove references to order files
+        https://bugs.webkit.org/show_bug.cgi?id=227377
+        rdar://76070556
+
+        Reviewed by Mark Lam.
+
+        * Configurations/WebKit.xcconfig:
+
 2021-06-24  Chris Dumez  <cdu...@apple.com>
 
         REGRESSION: (r279244) [ Mac ] http/tests/workers/service/postmessage-after-terminate.https.html is timing out

Modified: trunk/Source/WebKit/Configurations/WebKit.xcconfig (279265 => 279266)


--- trunk/Source/WebKit/Configurations/WebKit.xcconfig	2021-06-25 02:23:28 UTC (rev 279265)
+++ trunk/Source/WebKit/Configurations/WebKit.xcconfig	2021-06-25 03:30:00 UTC (rev 279266)
@@ -164,7 +164,6 @@
 OTHER_TAPI_FLAGS_cocoatouch = $(inherited) -reexport_install_name $(WK_ALTERNATE_WEBKIT_SDK_PATH)$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy -extra-private-header $(SRCROOT)/Platform/ExtraPrivateSymbolsForTAPI.h -extra-public-header $(SRCROOT)/Platform/ExtraPublicSymbolsForTAPI.h -exclude-private-header $(BUILT_PRODUCTS_DIR)/$(PRIVATE_HEADERS_FOLDER_PATH)/NSURLDownloadSPI.h;
 
 SECTORDER_FLAGS = $(SECTORDER_FLAGS_$(CONFIGURATION));
-SECTORDER_FLAGS_Production[sdk=iphoneos*] = -Wl,-order_file,$(SDKROOT)/AppleInternal/OrderFiles/WebKit.order;
 SECTORDER_FLAGS_Production[sdk=macosx*] = -Wl,-order_file,mac/WebKit2.order;
 
 EXCLUDED_IOS_RESOURCE_FILE_NAMES = Resources/ios/*;

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (279265 => 279266)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2021-06-25 02:23:28 UTC (rev 279265)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2021-06-25 03:30:00 UTC (rev 279266)
@@ -1,3 +1,13 @@
+2021-06-24  Sihui Liu  <sihui_...@apple.com>
+
+        Remove references to order files
+        https://bugs.webkit.org/show_bug.cgi?id=227377
+        rdar://76070556
+
+        Reviewed by Mark Lam.
+
+        * Configurations/WebKitLegacy.xcconfig:
+
 2021-06-22  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [Live Text] [macOS] Add an internal option to disable inline text selection in images

Modified: trunk/Source/WebKitLegacy/mac/Configurations/WebKitLegacy.xcconfig (279265 => 279266)


--- trunk/Source/WebKitLegacy/mac/Configurations/WebKitLegacy.xcconfig	2021-06-25 02:23:28 UTC (rev 279265)
+++ trunk/Source/WebKitLegacy/mac/Configurations/WebKitLegacy.xcconfig	2021-06-25 03:30:00 UTC (rev 279266)
@@ -101,7 +101,6 @@
 OTHER_LDFLAGS = $(inherited) -lobjc -lsqlite3 -framework CFNetwork -framework CoreFoundation -framework CoreGraphics -framework CoreText -framework Foundation -framework ImageIO -framework IOKit $(WK_APPKIT_LDFLAGS) $(WK_CARBON_LDFLAGS) $(WK_GRAPHICS_SERVICES_LDFLAGS) $(WK_MOBILE_CORE_SERVICES_LDFLAGS) $(WK_MOBILE_GESTALT_LDFLAGS) $(WK_SECURITY_INTERFACE_LDFLAGS) $(WK_WEBINSPECTORUI_LDFLAGS);
 
 SECTORDER_FLAGS = $(SECTORDER_FLAGS_$(CONFIGURATION));
-SECTORDER_FLAGS_Production[sdk=iphoneos*] = -Wl,-order_file,$(SDKROOT)/AppleInternal/OrderFiles/WebKitLegacy.order;
 SECTORDER_FLAGS_Production[sdk=macosx*] = -Wl,-order_file,mac/WebKit.order;
 
 NORMAL_WEBKIT_LEGACY_FRAMEWORKS_DIR = $(NORMAL_WEBKIT_LEGACY_FRAMEWORKS_DIR_COCOA_TOUCH_$(WK_IS_COCOA_TOUCH));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to