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

Changeset 265977 in webkit


Ignore:
Timestamp:
Aug 20, 2020, 3:55:55 PM (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.

The config changes here got added to the wrong config file. They need to
be for the overlay, not its tests.

  • SwiftOverlay/Configurations/WebKitSwiftOverlay.xcconfig:
  • SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig:
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r265964 r265977  
     12020-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
    1152020-08-20  Aditya Keerthi  <akeerthi@apple.com>
    216
  • trunk/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlay.xcconfig

    r262089 r265977  
    5959SWIFT_INSTALL_MODULES = YES;
    6060SWIFT_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.)
     66SWIFT_MODULE_ONLY_ARCHS[sdk=iphoneos*] = armv7 armv7s
     67SWIFT_MODULE_ONLY_ARCHS[sdk=iphonesimulator*] = i386
     68SWIFT_MODULE_ONLY_IPHONEOS_DEPLOYMENT_TARGET = 10.3
     69SWIFT_MODULE_ONLY_ARCHS[sdk=watchos*] =
     70SWIFT_MODULE_ONLY_ARCHS[sdk=watchsimulator*] =
     71SWIFT_MODULE_ONLY_ARCHS[sdk=appletvos*] =
     72SWIFT_MODULE_ONLY_ARCHS[sdk=appletvsimulator*] =
  • trunk/Source/WebKit/SwiftOverlay/Configurations/WebKitSwiftOverlayTests.xcconfig

    r265322 r265977  
    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.)
    52 SWIFT_MODULE_ONLY_ARCHS[sdk=iphoneos*] = armv7 armv7s
    53 SWIFT_MODULE_ONLY_ARCHS[sdk=iphonesimulator*] = i386
    54 SWIFT_MODULE_ONLY_IPHONEOS_DEPLOYMENT_TARGET = 10.3
    55 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.