Changeset 265977 in webkit
- Timestamp:
- Aug 20, 2020, 3:55:55 PM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
SwiftOverlay/Configurations/WebKitSwiftOverlay.xcconfig (modified) (1 diff)
-
SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r265964 r265977 1 2020-08-20 James Savage <james.savage@apple.com> 2 3 Could not find module 'WebKit' for target 'armv7-apple-ios' 4 <https://bugs.webkit.org/show_bug.cgi?id=215190> 5 <rdar://problem/65642049> 6 7 Reviewed by Brady Eidson. 8 9 The config changes here got added to the wrong config file. They need to 10 be for the overlay, not its tests. 11 12 * SwiftOverlay/Configurations/WebKitSwiftOverlay.xcconfig: 13 * SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig: 14 1 15 2020-08-20 Aditya Keerthi <akeerthi@apple.com> 2 16 -
trunk/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlay.xcconfig
r262089 r265977 59 59 SWIFT_INSTALL_MODULES = YES; 60 60 SWIFT_MODULE_INSTALL_PATH = $(INSTALL_PATH); 61 62 // We need to generate swiftmodules for these architectures, so that they can be 63 // imported in apps that are deployable on OS versions that support them. 64 // However, we can only generate module files for these; we can't emit binaries. 65 // (All imported definitions will be unavailable on these older OS versions.) 66 SWIFT_MODULE_ONLY_ARCHS[sdk=iphoneos*] = armv7 armv7s 67 SWIFT_MODULE_ONLY_ARCHS[sdk=iphonesimulator*] = i386 68 SWIFT_MODULE_ONLY_IPHONEOS_DEPLOYMENT_TARGET = 10.3 69 SWIFT_MODULE_ONLY_ARCHS[sdk=watchos*] = 70 SWIFT_MODULE_ONLY_ARCHS[sdk=watchsimulator*] = 71 SWIFT_MODULE_ONLY_ARCHS[sdk=appletvos*] = 72 SWIFT_MODULE_ONLY_ARCHS[sdk=appletvsimulator*] = -
trunk/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig
r265322 r265977 45 45 SDKROOT[sdk=appletv*] = appletvos.internal 46 46 SDKROOT[sdk=watchos*] = watchos.internal 47 48 // We need to generate swiftmodules for these architectures, so that they can be49 // imported in apps that are deployable on OS versions that support them.50 // However, we can only generate module files for these; we can't emit binaries.51 // (All imported definitions will be unavailable on these older OS versions.)52 SWIFT_MODULE_ONLY_ARCHS[sdk=iphoneos*] = armv7 armv7s53 SWIFT_MODULE_ONLY_ARCHS[sdk=iphonesimulator*] = i38654 SWIFT_MODULE_ONLY_IPHONEOS_DEPLOYMENT_TARGET = 10.355 SWIFT_MODULE_ONLY_ARCHS[sdk=watchos*] =56 SWIFT_MODULE_ONLY_ARCHS[sdk=watchsimulator*] =57 SWIFT_MODULE_ONLY_ARCHS[sdk=appletvos*] =58 SWIFT_MODULE_ONLY_ARCHS[sdk=appletvsimulator*] =
Note:
See TracChangeset
for help on using the changeset viewer.