⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 267669 in webkit


Ignore:
Timestamp:
Sep 27, 2020, 12:59:59 PM (6 years ago)
Author:
Alan Coon
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

Location:
branches/safari-610-branch/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-610-branch/Source/WebKit/ChangeLog

    r267628 r267669  
     12020-09-27  Alan Coon  <alancoon@apple.com>
     2
     3        Cherry-pick r265322. rdar://problem/69594018
     4
     5    Could not find module 'WebKit' for target 'armv7-apple-ios'
     6    <https://bugs.webkit.org/show_bug.cgi?id=215190>
     7    <rdar://problem/65642049>
     8   
     9    Reviewed by Brady Eidson.
     10   
     11    * SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig: Define
     12    SWIFT_MODULE_ONLY_ARCHS to emit other architectures.
     13   
     14   
     15    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@265322 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     16
     17    2020-08-06  James Savage  <james.savage@apple.com>
     18
     19            Could not find module 'WebKit' for target 'armv7-apple-ios'
     20            <https://bugs.webkit.org/show_bug.cgi?id=215190>
     21            <rdar://problem/65642049>
     22
     23            Reviewed by Brady Eidson.
     24
     25            * SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig: Define
     26            SWIFT_MODULE_ONLY_ARCHS to emit other architectures.
     27
    1282020-09-25  Alan Coon  <alancoon@apple.com>
    229
  • branches/safari-610-branch/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig

    r265977 r267669  
    4545SDKROOT[sdk=appletv*] = appletvos.internal
    4646SDKROOT[sdk=watchos*] = watchos.internal
     47
     48// We need to generate swiftmodules for these architectures, so that they can be
     49// 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.)
     52SWIFT_MODULE_ONLY_ARCHS[sdk=iphoneos*] = armv7 armv7s
     53SWIFT_MODULE_ONLY_ARCHS[sdk=iphonesimulator*] = i386
     54SWIFT_MODULE_ONLY_IPHONEOS_DEPLOYMENT_TARGET = 10.3
     55SWIFT_MODULE_ONLY_ARCHS[sdk=watchos*] =
     56SWIFT_MODULE_ONLY_ARCHS[sdk=watchsimulator*] =
     57SWIFT_MODULE_ONLY_ARCHS[sdk=appletvos*] =
     58SWIFT_MODULE_ONLY_ARCHS[sdk=appletvsimulator*] =
Note: See TracChangeset for help on using the changeset viewer.