Title: [265322] trunk/Source/WebKit
Revision
265322
Author
james.sav...@apple.com
Date
2020-08-06 01:41:53 -0700 (Thu, 06 Aug 2020)

Log Message

Could not find module 'WebKit' for target 'armv7-apple-ios'
<https://bugs.webkit.org/show_bug.cgi?id=215190>
<rdar://problem/65642049>

Reviewed by Brady Eidson.

* SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig: Define
SWIFT_MODULE_ONLY_ARCHS to emit other architectures.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (265321 => 265322)


--- trunk/Source/WebKit/ChangeLog	2020-08-06 06:16:44 UTC (rev 265321)
+++ trunk/Source/WebKit/ChangeLog	2020-08-06 08:41:53 UTC (rev 265322)
@@ -1,3 +1,14 @@
+2020-08-06  James Savage  <james.sav...@apple.com>
+
+        Could not find module 'WebKit' for target 'armv7-apple-ios'
+        <https://bugs.webkit.org/show_bug.cgi?id=215190>
+        <rdar://problem/65642049>
+
+        Reviewed by Brady Eidson.
+
+        * SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig: Define
+        SWIFT_MODULE_ONLY_ARCHS to emit other architectures.
+
 2020-08-05  Tim Horton  <timothy_hor...@apple.com>
 
         Remove all references to non-existent 10.16

Modified: trunk/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig (265321 => 265322)


--- trunk/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig	2020-08-06 06:16:44 UTC (rev 265321)
+++ trunk/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig	2020-08-06 08:41:53 UTC (rev 265322)
@@ -44,3 +44,15 @@
 SDKROOT[sdk=iphoneos*] = iphoneos.internal
 SDKROOT[sdk=appletv*] = appletvos.internal
 SDKROOT[sdk=watchos*] = watchos.internal
+
+// We need to generate swiftmodules for these architectures, so that they can be
+// imported in apps that are deployable on OS versions that support them.
+// However, we can only generate module files for these; we can't emit binaries.
+// (All imported definitions will be unavailable on these older OS versions.)
+SWIFT_MODULE_ONLY_ARCHS[sdk=iphoneos*] = armv7 armv7s
+SWIFT_MODULE_ONLY_ARCHS[sdk=iphonesimulator*] = i386
+SWIFT_MODULE_ONLY_IPHONEOS_DEPLOYMENT_TARGET = 10.3
+SWIFT_MODULE_ONLY_ARCHS[sdk=watchos*] =
+SWIFT_MODULE_ONLY_ARCHS[sdk=watchsimulator*] =
+SWIFT_MODULE_ONLY_ARCHS[sdk=appletvos*] =
+SWIFT_MODULE_ONLY_ARCHS[sdk=appletvsimulator*] =
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to