Title: [267669] branches/safari-610-branch/Source/WebKit
Revision
267669
Author
[email protected]
Date
2020-09-27 12:59:59 -0700 (Sun, 27 Sep 2020)

Log Message

Cherry-pick r265322. rdar://problem/69594018

    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.

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@265322 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-610-branch/Source/WebKit/ChangeLog (267668 => 267669)


--- branches/safari-610-branch/Source/WebKit/ChangeLog	2020-09-27 18:48:00 UTC (rev 267668)
+++ branches/safari-610-branch/Source/WebKit/ChangeLog	2020-09-27 19:59:59 UTC (rev 267669)
@@ -1,3 +1,30 @@
+2020-09-27  Alan Coon  <[email protected]>
+
+        Cherry-pick r265322. rdar://problem/69594018
+
+    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.
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@265322 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-08-06  James Savage  <[email protected]>
+
+            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-09-25  Alan Coon  <[email protected]>
 
         Cherry-pick r266804. rdar://problem/69583164

Modified: branches/safari-610-branch/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig (267668 => 267669)


--- branches/safari-610-branch/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig	2020-09-27 18:48:00 UTC (rev 267668)
+++ branches/safari-610-branch/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig	2020-09-27 19:59:59 UTC (rev 267669)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to