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

Changeset 265322 in webkit


Ignore:
Timestamp:
Aug 6, 2020, 1:41:53 AM (6 years ago)
Author:
James Savage
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.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r265315 r265322  
     12020-08-06  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        * SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig: Define
     10        SWIFT_MODULE_ONLY_ARCHS to emit other architectures.
     11
    1122020-08-05  Tim Horton  <timothy_horton@apple.com>
    213
  • trunk/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig

    r262089 r265322  
    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.