Changeset 245717 in webkit
- Timestamp:
- May 23, 2019, 2:19:49 PM (6 years ago)
- Location:
- trunk/Source
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r245716 r245717 1 2019-05-22 Stephanie Lewis <slewis@apple.com> 2 3 release builds of webkit cannot be used to generate a dyld shared cache 4 https://bugs.webkit.org/show_bug.cgi?id=198150 5 <rdar://problem/50675982> 6 7 Reviewed by Dan Bernstein. 8 9 Restrict the -not_for_dyld_shared_cache linker flag to macosx 10 11 * Configurations/WebCore.xcconfig: 12 1 13 2019-05-23 Zalan Bujtas <zalan@apple.com> 2 14 -
trunk/Source/WebCore/Configurations/WebCore.xcconfig
r242918 r245717 176 176 WK_INSTALL_PATH_PREFIX_DEPLOYMENT_YES_MACOS_SINCE_1015_USE_STAGING_INSTALL_PATH_YES = $(PLATFORM_OOB_SYSTEM_CONTENT_DIR); 177 177 178 WK_RELOCATABLE_FRAMEWORK_LDFLAGS = $(WK_RELOCATABLE_FRAMEWORK_LDFLAGS_$(WK_RELOCATABLE_FRAMEWORKS) );179 WK_RELOCATABLE_FRAMEWORK_LDFLAGS_YES = -Wl,-not_for_dyld_shared_cache;178 WK_RELOCATABLE_FRAMEWORK_LDFLAGS = $(WK_RELOCATABLE_FRAMEWORK_LDFLAGS_$(WK_RELOCATABLE_FRAMEWORKS)_$(WK_PLATFORM_NAME)); 179 WK_RELOCATABLE_FRAMEWORK_LDFLAGS_YES_macosx = -Wl,-not_for_dyld_shared_cache; 180 180 181 181 // Enable InstallAPI support, when built with WEBCORE_ENABLE_INSTALLAPI=YES. -
trunk/Source/WebKit/ChangeLog
r245716 r245717 1 2019-05-22 Stephanie Lewis <slewis@apple.com> 2 3 release builds of webkit cannot be used to generate a dyld shared cache 4 https://bugs.webkit.org/show_bug.cgi?id=198150 5 <rdar://problem/50675982> 6 7 Reviewed by Dan Bernstein. 8 9 Restrict the -not_for_dyld_shared_cache linker flag to macosx 10 11 * Configurations/WebKit.xcconfig: 12 13 1 14 2019-05-23 Zalan Bujtas <zalan@apple.com> 2 15 -
trunk/Source/WebKit/Configurations/WebKit.xcconfig
r245294 r245717 163 163 WK_FRAMEWORK_HEADER_POSTPROCESSING_DISABLED[sdk=iphone*12.*] = YES; 164 164 165 WK_RELOCATABLE_FRAMEWORK_LDFLAGS = $(WK_RELOCATABLE_FRAMEWORK_LDFLAGS_$(WK_RELOCATABLE_FRAMEWORKS) );166 WK_RELOCATABLE_FRAMEWORK_LDFLAGS_YES = -Wl,-not_for_dyld_shared_cache;165 WK_RELOCATABLE_FRAMEWORK_LDFLAGS = $(WK_RELOCATABLE_FRAMEWORK_LDFLAGS_$(WK_RELOCATABLE_FRAMEWORKS)_$(WK_PLATFORM_NAME)); 166 WK_RELOCATABLE_FRAMEWORK_LDFLAGS_YES_macosx = -Wl,-not_for_dyld_shared_cache; 167 167 168 168 WK_HAVE_DEVICE_IDENTITY = $(WK_HAVE_DEVICE_IDENTITY_$(PLATFORM_NAME));
Note:
See TracChangeset
for help on using the changeset viewer.