Build Information
Failed to build SwiftShortcuts, reference main (e1a2f4), with Swift 6.3 for Wasm on 11 Apr 2026 10:25:42 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/a2/swift-shortcuts.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/a2/swift-shortcuts
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at e1a2f41 Add support for Swift Playgrounds (#2)
Cloned https://github.com/a2/swift-shortcuts.git
Revision (git rev-parse @):
e1a2f41bf55d3b32fab9a82bb48f967c3683ebec
SUCCESS checkout https://github.com/a2/swift-shortcuts.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/a2/swift-shortcuts.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Fetching https://github.com/pointfreeco/swift-snapshot-testing.git
[1/16046] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing.git from cache (4.24s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing.git
Computed https://github.com/pointfreeco/swift-snapshot-testing.git at 1.19.2 (5.15s)
Fetching https://github.com/swiftlang/swift-syntax
Fetching https://github.com/pointfreeco/swift-custom-dump
[1/5464] Fetching swift-custom-dump
Fetched https://github.com/pointfreeco/swift-custom-dump from cache (0.69s)
[1/74965] Fetching swift-syntax
Fetched https://github.com/swiftlang/swift-syntax from cache (11.01s)
Computing version for https://github.com/pointfreeco/swift-custom-dump
Computed https://github.com/pointfreeco/swift-custom-dump at 1.5.0 (12.05s)
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
[1/5723] Fetching xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (2.10s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 603.0.0 (3.58s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.9.0 (0.76s)
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing.git
Working copy of https://github.com/pointfreeco/swift-snapshot-testing.git resolved at 1.19.2
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 603.0.0
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.9.0
Creating working copy for https://github.com/pointfreeco/swift-custom-dump
Working copy of https://github.com/pointfreeco/swift-custom-dump resolved at 1.5.0
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/603.0.0/swift-6.3-RELEASE-ubuntu_jammy_x86_64-MacroSupport.tar.gz
Downloaded https://download.swift.org/prebuilts/swift-syntax/603.0.0/swift-6.3-RELEASE-ubuntu_jammy_x86_64-MacroSupport.tar.gz (0.57s)
Building for debugging...
[0/3] Write sources
[1/3] Compiling CSymbols CSymbols.c
[2/3] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/82] Emitting module SwiftShortcuts
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[5/93] Compiling SwiftShortcuts ActionWrapper.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[6/93] Compiling SwiftShortcuts Aggrandizement.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[7/93] Compiling SwiftShortcuts AnyEncodable.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[8/93] Compiling SwiftShortcuts Attachment.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[9/93] Compiling SwiftShortcuts ConditionType.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[10/93] Compiling SwiftShortcuts EmptyParameters.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[11/93] Compiling SwiftShortcuts FromAny.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[12/93] Compiling SwiftShortcuts KeyedValue.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[13/93] Compiling SwiftShortcuts OuterDictionary.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[14/93] Compiling SwiftShortcuts SerializationType.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[15/93] Compiling SwiftShortcuts ShortcutPayload.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:18: error: cannot find 'dlopen' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:30: error: cannot find 'RTLD_GLOBAL' in scope
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:60:19: error: cannot find 'dlsym' in scope
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
60 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
62 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:59:25: error: 'nil' requires a contextual type
57 | private let makeAnyShortcut: ShortcutToAnyShortcutFunction = {
58 | let symbolName = "_swift_shortcuts_makeAnyShortcut"
59 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
60 | let pointer = dlsym(handle, symbolName)
61 | return unsafeBitCast(pointer, to: ShortcutToAnyShortcutFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:18: error: cannot find 'dlopen' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'dlopen' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:30: error: cannot find 'RTLD_GLOBAL' in scope
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: cannot find 'RTLD_GLOBAL' in scope
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:106:19: error: cannot find 'dlsym' in scope
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
106 | let pointer = dlsym(handle, symbolName)
| `- error: cannot find 'dlsym' in scope
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
108 | }()
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:105:25: error: 'nil' requires a contextual type
103 | private let decomposeIntoActions: ShortcutToActionsFunction = {
104 | let symbolName = "_swift_shortcuts_decomposeIntoActions"
105 | let handle = dlopen(nil, RTLD_GLOBAL)
| `- error: 'nil' requires a contextual type
106 | let pointer = dlsym(handle, symbolName)
107 | return unsafeBitCast(pointer, to: ShortcutToActionsFunction.self)
/host/spi-builder-workspace/Sources/SwiftShortcuts/Internal/FromAny.swift:138:2: warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
136 | }
137 |
138 | @_silgen_name("swift_conformsToProtocol")
| `- warning: symbol name 'swift_conformsToProtocol' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
139 | private func _conformsToProtocol(
140 | _ type: Any.Type,
[16/93] Compiling SwiftShortcuts FileFiltering.swift
[17/93] Compiling SwiftShortcuts FileSize.swift
[18/93] Compiling SwiftShortcuts ForEach.swift
[19/93] Compiling SwiftShortcuts HealthMeasurementType.swift
[20/93] Compiling SwiftShortcuts HealthSampleMeasurement.swift
[21/93] Compiling SwiftShortcuts HealthSampleType.swift
[22/93] Compiling SwiftShortcuts HealthSampleUnit.swift
[23/93] Compiling SwiftShortcuts MultipartFormValue.swift
[24/93] Compiling SwiftShortcuts Never+Shortcut.swift
[25/93] Compiling SwiftShortcuts Number.swift
[26/93] Compiling SwiftShortcuts Optional+Shortcut.swift
[27/93] Compiling SwiftShortcuts SetLowPowerMode.swift
[28/93] Compiling SwiftShortcuts SetVariable.swift
[29/93] Compiling SwiftShortcuts Share.swift
[30/93] Compiling SwiftShortcuts ShowAlert.swift
[31/93] Compiling SwiftShortcuts ShowResult.swift
[32/93] Compiling SwiftShortcuts Text+Action.swift
[33/93] Compiling SwiftShortcuts URLEncode.swift
[34/93] Compiling SwiftShortcuts Action.swift
[35/93] Compiling SwiftShortcuts AnyShortcut.swift
[36/93] Compiling SwiftShortcuts ByteCountUnit.swift
[37/93] Compiling SwiftShortcuts CoercionItemClass.swift
[38/93] Compiling SwiftShortcuts Condition.swift
[39/93] Compiling SwiftShortcuts ConditionNumberOperand.swift
[40/93] Compiling SwiftShortcuts ConditionNumberOperandConvertible.swift
[41/93] Compiling SwiftShortcuts ConditionOperand.swift
[42/93] Compiling SwiftShortcuts ConditionOperandConvertible.swift
[43/93] Compiling SwiftShortcuts ConditionTextOperand.swift
[44/93] Compiling SwiftShortcuts ConditionTextOperandConvertible.swift
[45/93] Compiling SwiftShortcuts ConditionalContent.swift
[46/93] Compiling SwiftShortcuts DateFormatStyle.swift
[47/93] Compiling SwiftShortcuts DictionaryValue.swift
[48/93] Compiling SwiftShortcuts EmptyShortcut.swift
[49/93] Compiling SwiftShortcuts OutputVariable.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[50/93] Compiling SwiftShortcuts PropertyName.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[51/93] Compiling SwiftShortcuts PropertyUserInfo.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[52/93] Compiling SwiftShortcuts ResultShortcut.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[53/93] Compiling SwiftShortcuts SavedOutputShortcut.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[54/93] Compiling SwiftShortcuts Shortcut+Build.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[55/93] Compiling SwiftShortcuts Shortcut.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[56/93] Compiling SwiftShortcuts ShortcutBuilder.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[57/93] Compiling SwiftShortcuts ShortcutGroup.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[58/93] Compiling SwiftShortcuts SortOrder.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[59/93] Compiling SwiftShortcuts Text.swift
/host/spi-builder-workspace/Sources/SwiftShortcuts/Core/ShortcutBuilder.swift:2:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
1 | /// A custom parameter attribute that constructs shortcuts from closures.
2 | @_functionBuilder public enum ShortcutBuilder {}
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
3 |
4 | extension ShortcutBuilder {
[60/93] Compiling SwiftShortcuts AskForInput.swift
[61/93] Compiling SwiftShortcuts BatteryLevel.swift
[62/93] Compiling SwiftShortcuts Calculate.swift
[63/93] Compiling SwiftShortcuts ChangeCase.swift
[64/93] Compiling SwiftShortcuts ChooseFromList.swift
[65/93] Compiling SwiftShortcuts ChooseFromMenu.swift
[66/93] Compiling SwiftShortcuts Comment.swift
[67/93] Compiling SwiftShortcuts ControlFlowAction.swift
[68/93] Compiling SwiftShortcuts CopyToClipboard.swift
[69/93] Compiling SwiftShortcuts FilterFiles.swift
[70/93] Compiling SwiftShortcuts GetClipboard.swift
[71/93] Compiling SwiftShortcuts GetContentsOfURL.swift
[72/93] Compiling SwiftShortcuts GetDictionary.swift
[73/93] Compiling SwiftShortcuts GetType.swift
[74/93] Compiling SwiftShortcuts GetURLsFromInput.swift
[75/93] Compiling SwiftShortcuts If.swift
[76/93] Compiling SwiftShortcuts List.swift
[77/93] Compiling SwiftShortcuts LogHealthSample.swift
[78/93] Compiling SwiftShortcuts MakeHTMLFromRichText.swift
[79/93] Compiling SwiftShortcuts Nothing.swift
[80/93] Compiling SwiftShortcuts Number+Action.swift
[81/93] Compiling SwiftShortcuts Repeat.swift
[82/93] Compiling SwiftShortcuts ReplaceText.swift
[83/93] Compiling SwiftShortcuts TextCase.swift
[84/93] Compiling SwiftShortcuts TimeFormatStyle.swift
[85/93] Compiling SwiftShortcuts TimeSpanValue.swift
[86/93] Compiling SwiftShortcuts TimeUnit.swift
[87/93] Compiling SwiftShortcuts TupleShortcut.swift
[88/93] Compiling SwiftShortcuts Variable.swift
[89/93] Compiling SwiftShortcuts VariableDateValueConvertible.swift
[90/93] Compiling SwiftShortcuts VariableValue+Encodable.swift
[91/93] Compiling SwiftShortcuts VariableValue+ExpressibleByLiteral.swift
[92/93] Compiling SwiftShortcuts VariableValue.swift
[93/93] Compiling SwiftShortcuts ActionDecomposable.swift
BUILD FAILURE 6.3 wasm