The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Dynamic with Swift 5.10 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.29.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mhdhejazi/Dynamic.git
Reference: master
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/mhdhejazi/Dynamic
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 7728830 Create LICENSE
Cloned https://github.com/mhdhejazi/Dynamic.git
Revision (git rev-parse @):
772883073d044bc754d401cabb6574624eb3778f
SUCCESS checkout https://github.com/mhdhejazi/Dynamic.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.10
Building package at path:  $workDir
https://github.com/mhdhejazi/Dynamic.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/7] Compiling Dynamic TypeMapping.swift
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:35:10: error: cannot find 'URLRequest' in scope
        (URLRequest.self, NSURLRequest.self),
         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:35:27: error: cannot find 'NSURLRequest' in scope
        (URLRequest.self, NSURLRequest.self),
                          ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:87:17: error: cannot find type 'URLRequest' in scope
        case is URLRequest: return object as? NSURLRequest
                ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:87:47: error: cannot find type 'NSURLRequest' in scope
        case is URLRequest: return object as? NSURLRequest
                                              ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:87:43: warning: conditional downcast from 'Any?' to 'Any' does nothing
        case is URLRequest: return object as? NSURLRequest
                                   ~~~~~~~^~~~~~~~~~~~~~~~

/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:116:17: error: cannot find type 'NSURLRequest' in scope
        case is NSURLRequest: return object as? URLRequest
                ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:116:49: error: cannot find type 'URLRequest' in scope
        case is NSURLRequest: return object as? URLRequest
                                                ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:116:45: warning: conditional downcast from 'Any?' to 'Any' does nothing
        case is NSURLRequest: return object as? URLRequest
                                     ~~~~~~~^~~~~~~~~~~~~~

[4/7] Compiling Dynamic Logger.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/7] Emitting module Dynamic
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:267:28: error: cannot find type 'Selector' in scope
    public var asSelector: Selector? { unwrap() }
                           ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:14:27: error: cannot find type 'Selector' in scope
    private let selector: Selector
                          ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:38:38: error: cannot find type 'Selector' in scope
    init(target: NSObject, selector: Selector) throws {
                                     ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:117:50: error: cannot find type 'NSInteger' in scope
    func setArgument(_ argument: Any?, at index: NSInteger) {
                                                 ^~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:218:66: error: cannot find type 'Selector' in scope
    case unrecognizedSelector(_ classType: AnyClass, _ selector: Selector)
                                                                 ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:35:10: error: cannot find 'URLRequest' in scope
        (URLRequest.self, NSURLRequest.self),
         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:35:27: error: cannot find 'NSURLRequest' in scope
        (URLRequest.self, NSURLRequest.self),
                          ^~~~~~~~~~~~
error: compile command failed due to signal 6 (use -v to see invocation)
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:14:27: error: cannot find type 'Selector' in scope
    private let selector: Selector
                          ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:38:38: error: cannot find type 'Selector' in scope
    init(target: NSObject, selector: Selector) throws {
                                     ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:117:50: error: cannot find type 'NSInteger' in scope
    func setArgument(_ argument: Any?, at index: NSInteger) {
                                                 ^~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:218:66: error: cannot find type 'Selector' in scope
    case unrecognizedSelector(_ classType: AnyClass, _ selector: Selector)
                                                                 ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:54:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("methodSignatureForSelector:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:55:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, Selector) -> Any).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:55:65: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, Selector) -> Any).self
                                                                ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:56:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(target.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:56:47: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(target.method(for: selector), to: signature)
                                       ~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:66:50: error: value of type 'NSObject' has no member 'value'
        self.numberOfArguments = methodSignature.value(forKeyPath: "numberOfArguments") as? Int ?? 0
                                 ~~~~~~~~~~~~~~~ ^~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:70:45: error: value of type 'NSObject' has no member 'value'
        self.returnLength = methodSignature.value(forKeyPath: "methodReturnLength") as? Int ?? 0
                            ~~~~~~~~~~~~~~~ ^~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:76:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("methodReturnType")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:77:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector) -> UnsafePointer<CChar>).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:78:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(methodSignature.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:78:56: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(methodSignature.method(for: selector), to: signature)
                                       ~~~~~~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:88:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("invocationWithMethodSignature:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:89:56: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(AnyObject, Selector, AnyObject) -> AnyObject).self
                                                       ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:90:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(NSInvocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:90:53: error: value of type 'AnyObject' has no member 'method'
            let method = unsafeBitCast(NSInvocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:102:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("setSelector:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:103:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, Selector) -> Void).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:103:65: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, Selector) -> Void).self
                                                                ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:104:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:104:51: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:110:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("retainArguments")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:111:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector) -> Void).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:112:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:112:51: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:123:24: error: cannot find 'NSSelectorFromString' in scope
        let selector = NSSelectorFromString("setArgument:atIndex:")
                       ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:124:51: error: cannot find type 'Selector' in scope
        let signature = (@convention(c)(NSObject, Selector, UnsafeRawPointer, Int) -> Void).self
                                                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:125:22: error: generic parameter 'U' could not be inferred
        let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                     ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:125:47: error: value of type 'NSObject' has no member 'method'
        let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                   ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:131:13: warning: result of call to 'NSGetSizeAndAlignment' is unused
            NSGetSizeAndAlignment(valueArgument.objCType, typeSize, nil)
            ^                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:155:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("invokeWithTarget:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:156:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, AnyObject) -> Void).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:157:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:157:51: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:169:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("getReturnValue:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:170:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, UnsafeMutableRawPointer) -> Void).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:171:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:171:51: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:177:12: error: cannot find 'NSStringFromSelector' in scope
        if NSStringFromSelector(self.selector) == "alloc" {
           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:209:24: error: cannot find 'NSStringFromSelector' in scope
        let selector = NSStringFromSelector(self.selector)
                       ^~~~~~~~~~~~~~~~~~~~
Can't demangle: $s7Dynamic15InvocationErrorO20unrecognizedSelector33_A150123FE31DA040782B113D070915EFLLXeF9classTypeL_yXlXpvp
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /usr/bin/swift-frontend -frontend -c /host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift -primary-file /host/spi-builder-workspace/Sources/Dynamic/Invocation.swift /host/spi-builder-workspace/Sources/Dynamic/Logger.swift /host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift -emit-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Dynamic.build/Invocation.d -emit-reference-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Dynamic.build/Invocation.swiftdeps -target x86_64-unknown-linux-gnu -disable-objc-interop -I /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug -enable-testing -g -module-cache-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/ModuleCache -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -new-driver-path /usr/bin/swift-driver -empty-abi-descriptor -resource-dir /usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fPIC -Xcc -g -Xcc -fno-omit-frame-pointer -module-name Dynamic -plugin-path /usr/lib/swift/host/plugins -plugin-path /usr/local/lib/swift/host/plugins -parse-as-library -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Dynamic.build/Invocation.swift.o -index-store-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/index/store -index-system-modules
1.	Swift version 5.10-dev (LLVM dbfaba0078e9380, Swift 63c8b551eb2f613)
2.	Compiling with the current language version
3.	While walking into 'InvocationError' (at /host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:217:8)
4.	While evaluating request USRGenerationRequest(Dynamic.(file).InvocationError.unrecognizedSelector(_:_:).classType@/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:218:33)
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
/usr/bin/swift-frontend(+0x7307d73)[0x5630cd9dbd73]
/usr/bin/swift-frontend(+0x7305abe)[0x5630cd9d9abe]
/usr/bin/swift-frontend(+0x73080ea)[0x5630cd9dc0ea]
/lib/x86_64-linux-gnu/libc.so.6(+0x42520)[0x7fc1063b7520]
/lib/x86_64-linux-gnu/libc.so.6(pthread_kill+0x12c)[0x7fc10640b9fc]
/lib/x86_64-linux-gnu/libc.so.6(raise+0x16)[0x7fc1063b7476]
/lib/x86_64-linux-gnu/libc.so.6(abort+0xd3)[0x7fc10639d7f3]
/usr/bin/swift-frontend(+0x2af4275)[0x5630c91c8275]
/usr/bin/swift-frontend(+0x2755c54)[0x5630c8e29c54]
/usr/bin/swift-frontend(+0x2ab869b)[0x5630c918c69b]
/usr/bin/swift-frontend(+0x2347a0c)[0x5630c8a1ba0c]
/usr/bin/swift-frontend(+0x106859c)[0x5630c773c59c]
/usr/bin/swift-frontend(+0x1068102)[0x5630c773c102]
/usr/bin/swift-frontend(+0x106716b)[0x5630c773b16b]
/usr/bin/swift-frontend(+0x2ab91aa)[0x5630c918d1aa]
/usr/bin/swift-frontend(+0x1036d5b)[0x5630c770ad5b]
/usr/bin/swift-frontend(+0x10362a7)[0x5630c770a2a7]
/usr/bin/swift-frontend(+0x1033c59)[0x5630c7707c59]
/usr/bin/swift-frontend(+0x1cb4cd1)[0x5630c8388cd1]
/usr/bin/swift-frontend(+0x27ad05c)[0x5630c8e8105c]
/usr/bin/swift-frontend(+0x27aeb3c)[0x5630c8e82b3c]
/usr/bin/swift-frontend(+0x27b10e7)[0x5630c8e850e7]
/usr/bin/swift-frontend(+0x27ad07c)[0x5630c8e8107c]
/usr/bin/swift-frontend(+0x27b1c1f)[0x5630c8e85c1f]
/usr/bin/swift-frontend(+0x27b086b)[0x5630c8e8486b]
/usr/bin/swift-frontend(+0x27ad07c)[0x5630c8e8107c]
/usr/bin/swift-frontend(+0x27acf73)[0x5630c8e80f73]
/usr/bin/swift-frontend(+0x298b1e2)[0x5630c905f1e2]
/usr/bin/swift-frontend(+0x1cb26a6)[0x5630c83866a6]
/usr/bin/swift-frontend(+0x1032c84)[0x5630c7706c84]
/usr/bin/swift-frontend(+0x1032b2a)[0x5630c7706b2a]
/usr/bin/swift-frontend(+0x1027f82)[0x5630c76fbf82]
/usr/bin/swift-frontend(+0x1027978)[0x5630c76fb978]
/usr/bin/swift-frontend(+0xe3f242)[0x5630c7513242]
/usr/bin/swift-frontend(+0xe3d09c)[0x5630c751109c]
/usr/bin/swift-frontend(+0xe382cd)[0x5630c750c2cd]
/usr/bin/swift-frontend(+0xe369db)[0x5630c750a9db]
/usr/bin/swift-frontend(+0xcc3315)[0x5630c7397315]
/lib/x86_64-linux-gnu/libc.so.6(+0x29d90)[0x7fc10639ed90]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x80)[0x7fc10639ee40]
/usr/bin/swift-frontend(+0xcc2375)[0x5630c7396375]
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/5] Compiling Dynamic TypeMapping.swift
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:35:10: error: cannot find 'URLRequest' in scope
        (URLRequest.self, NSURLRequest.self),
         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:35:27: error: cannot find 'NSURLRequest' in scope
        (URLRequest.self, NSURLRequest.self),
                          ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:87:17: error: cannot find type 'URLRequest' in scope
        case is URLRequest: return object as? NSURLRequest
                ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:87:47: error: cannot find type 'NSURLRequest' in scope
        case is URLRequest: return object as? NSURLRequest
                                              ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:87:43: warning: conditional downcast from 'Any?' to 'Any' does nothing
        case is URLRequest: return object as? NSURLRequest
                                   ~~~~~~~^~~~~~~~~~~~~~~~

/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:116:17: error: cannot find type 'NSURLRequest' in scope
        case is NSURLRequest: return object as? URLRequest
                ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:116:49: error: cannot find type 'URLRequest' in scope
        case is NSURLRequest: return object as? URLRequest
                                                ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:116:45: warning: conditional downcast from 'Any?' to 'Any' does nothing
        case is NSURLRequest: return object as? URLRequest
                                     ~~~~~~~^~~~~~~~~~~~~~

error: emit-module command failed with exit code 1 (use -v to see invocation)
error: compile command failed due to signal 6 (use -v to see invocation)
[3/5] Compiling Dynamic Dynamic.swift
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:267:28: error: cannot find type 'Selector' in scope
    public var asSelector: Selector? { unwrap() }
                           ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:29:51: error: value of type 'AnyObject' has no member 'debugDescription'
    public var debugDescription: String { object?.debugDescription ?? "<nil>" }
                                          ~~~~~~~ ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:41:23: error: cannot assign value of type 'AnyClass?' (aka 'Optional<any AnyObject.Type>') to type 'AnyObject?'
        self.object = NSClassFromString(className)
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                   as AnyObject?
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:102:32: error: value of type 'AnyObject' has no member 'debugDescription'
        log("Get:", "\(object?.debugDescription ?? "").\(name)")
                       ~~~~~~~ ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:119:32: error: value of type 'AnyObject' has no member 'debugDescription'
        log("Set:", "\(object?.debugDescription ?? "").\(name)")
                       ~~~~~~~ ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:141:19: warning: cast from 'NSObject' to unrelated type 'AnyClass' (aka 'any AnyObject.Type') always fails
        if target is AnyClass, selector.hasPrefix("init") {
           ~~~~~~ ^  ~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:147:67: error: cannot find 'NSSelectorFromString' in scope
            invocation = try Invocation(target: target, selector: NSSelectorFromString(selector))
                                                                  ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:38:38: error: cannot find type 'Selector' in scope
    init(target: NSObject, selector: Selector) throws {
                                     ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:117:50: error: cannot find type 'NSInteger' in scope
    func setArgument(_ argument: Any?, at index: NSInteger) {
                                                 ^~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:172:69: error: cannot find 'NSSelectorFromString' in scope
            let invocation = try Invocation(target: type, selector: NSSelectorFromString("alloc"))
                                                                    ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:231:27: error: incorrect argument label in call (have 'nonretainedObject:', expected 'coder:')
            return NSValue(nonretainedObject: object)
                          ^~~~~~~~~~~~~~~~~~
                           coder
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:231:47: error: 'AnyObject' is not convertible to 'NSCoder'
            return NSValue(nonretainedObject: object)
                                              ^
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:231:47: note: did you mean to use 'as!' to force downcast?
            return NSValue(nonretainedObject: object)
                                              ^
                                                     as! NSCoder
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:253:49: error: value of type 'AnyObject' has no member 'description'
    public var asString: String? { asAnyObject?.description }
                                   ~~~~~~~~~~~~ ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:282:26: error: value of type 'NSValue' has no member 'nonretainedObjectValue'
            return value.nonretainedObjectValue as? T
                   ~~~~~ ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:287:9: warning: result of call to 'NSGetSizeAndAlignment' is unused
        NSGetSizeAndAlignment(invocation.returnType!, &storedSize, &storedAlignment)
        ^                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[4/5] Emitting module Dynamic
/host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift:267:28: error: cannot find type 'Selector' in scope
    public var asSelector: Selector? { unwrap() }
                           ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:14:27: error: cannot find type 'Selector' in scope
    private let selector: Selector
                          ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:38:38: error: cannot find type 'Selector' in scope
    init(target: NSObject, selector: Selector) throws {
                                     ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:117:50: error: cannot find type 'NSInteger' in scope
    func setArgument(_ argument: Any?, at index: NSInteger) {
                                                 ^~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:218:66: error: cannot find type 'Selector' in scope
    case unrecognizedSelector(_ classType: AnyClass, _ selector: Selector)
                                                                 ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:35:10: error: cannot find 'URLRequest' in scope
        (URLRequest.self, NSURLRequest.self),
         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift:35:27: error: cannot find 'NSURLRequest' in scope
        (URLRequest.self, NSURLRequest.self),
                          ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:14:27: error: cannot find type 'Selector' in scope
    private let selector: Selector
                          ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:38:38: error: cannot find type 'Selector' in scope
    init(target: NSObject, selector: Selector) throws {
                                     ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:117:50: error: cannot find type 'NSInteger' in scope
    func setArgument(_ argument: Any?, at index: NSInteger) {
                                                 ^~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:218:66: error: cannot find type 'Selector' in scope
    case unrecognizedSelector(_ classType: AnyClass, _ selector: Selector)
                                                                 ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:54:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("methodSignatureForSelector:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:55:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, Selector) -> Any).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:55:65: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, Selector) -> Any).self
                                                                ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:56:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(target.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:56:47: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(target.method(for: selector), to: signature)
                                       ~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:66:50: error: value of type 'NSObject' has no member 'value'
        self.numberOfArguments = methodSignature.value(forKeyPath: "numberOfArguments") as? Int ?? 0
                                 ~~~~~~~~~~~~~~~ ^~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:70:45: error: value of type 'NSObject' has no member 'value'
        self.returnLength = methodSignature.value(forKeyPath: "methodReturnLength") as? Int ?? 0
                            ~~~~~~~~~~~~~~~ ^~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:76:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("methodReturnType")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:77:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector) -> UnsafePointer<CChar>).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:78:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(methodSignature.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:78:56: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(methodSignature.method(for: selector), to: signature)
                                       ~~~~~~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:88:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("invocationWithMethodSignature:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:89:56: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(AnyObject, Selector, AnyObject) -> AnyObject).self
                                                       ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:90:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(NSInvocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:90:53: error: value of type 'AnyObject' has no member 'method'
            let method = unsafeBitCast(NSInvocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:102:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("setSelector:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:103:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, Selector) -> Void).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:103:65: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, Selector) -> Void).self
                                                                ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:104:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:104:51: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:110:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("retainArguments")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:111:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector) -> Void).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:112:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:112:51: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:123:24: error: cannot find 'NSSelectorFromString' in scope
        let selector = NSSelectorFromString("setArgument:atIndex:")
                       ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:124:51: error: cannot find type 'Selector' in scope
        let signature = (@convention(c)(NSObject, Selector, UnsafeRawPointer, Int) -> Void).self
                                                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:125:22: error: generic parameter 'U' could not be inferred
        let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                     ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:125:47: error: value of type 'NSObject' has no member 'method'
        let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                   ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:131:13: warning: result of call to 'NSGetSizeAndAlignment' is unused
            NSGetSizeAndAlignment(valueArgument.objCType, typeSize, nil)
            ^                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:155:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("invokeWithTarget:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:156:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, AnyObject) -> Void).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:157:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:157:51: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:169:28: error: cannot find 'NSSelectorFromString' in scope
            let selector = NSSelectorFromString("getReturnValue:")
                           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:170:55: error: cannot find type 'Selector' in scope
            let signature = (@convention(c)(NSObject, Selector, UnsafeMutableRawPointer) -> Void).self
                                                      ^~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:171:26: error: generic parameter 'U' could not be inferred
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                         ^
Swift.unsafeBitCast:1:24: note: in call to function 'unsafeBitCast(_:to:)'
@inlinable public func unsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U
                       ^
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:171:51: error: value of type 'NSObject' has no member 'method'
            let method = unsafeBitCast(invocation.method(for: selector), to: signature)
                                       ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:177:12: error: cannot find 'NSStringFromSelector' in scope
        if NSStringFromSelector(self.selector) == "alloc" {
           ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:209:24: error: cannot find 'NSStringFromSelector' in scope
        let selector = NSStringFromSelector(self.selector)
                       ^~~~~~~~~~~~~~~~~~~~
Can't demangle: $s7Dynamic15InvocationErrorO20unrecognizedSelector33_A150123FE31DA040782B113D070915EFLLXeF9classTypeL_yXlXpvp
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /usr/bin/swift-frontend -frontend -c /host/spi-builder-workspace/Sources/Dynamic/Dynamic.swift -primary-file /host/spi-builder-workspace/Sources/Dynamic/Invocation.swift /host/spi-builder-workspace/Sources/Dynamic/Logger.swift /host/spi-builder-workspace/Sources/Dynamic/TypeMapping.swift -emit-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Dynamic.build/Invocation.d -emit-reference-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Dynamic.build/Invocation.swiftdeps -target x86_64-unknown-linux-gnu -disable-objc-interop -I /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug -enable-testing -g -module-cache-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/ModuleCache -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -new-driver-path /usr/bin/swift-driver -empty-abi-descriptor -resource-dir /usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fPIC -Xcc -g -Xcc -fno-omit-frame-pointer -module-name Dynamic -plugin-path /usr/lib/swift/host/plugins -plugin-path /usr/local/lib/swift/host/plugins -parse-as-library -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Dynamic.build/Invocation.swift.o -index-store-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/index/store -index-system-modules
1.	Swift version 5.10-dev (LLVM dbfaba0078e9380, Swift 63c8b551eb2f613)
2.	Compiling with the current language version
3.	While walking into 'InvocationError' (at /host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:217:8)
4.	While evaluating request USRGenerationRequest(Dynamic.(file).InvocationError.unrecognizedSelector(_:_:).classType@/host/spi-builder-workspace/Sources/Dynamic/Invocation.swift:218:33)
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
/usr/bin/swift-frontend(+0x7307d73)[0x5564d6a15d73]
/usr/bin/swift-frontend(+0x7305abe)[0x5564d6a13abe]
/usr/bin/swift-frontend(+0x73080ea)[0x5564d6a160ea]
/lib/x86_64-linux-gnu/libc.so.6(+0x42520)[0x7f5afa38f520]
/lib/x86_64-linux-gnu/libc.so.6(pthread_kill+0x12c)[0x7f5afa3e39fc]
/lib/x86_64-linux-gnu/libc.so.6(raise+0x16)[0x7f5afa38f476]
/lib/x86_64-linux-gnu/libc.so.6(abort+0xd3)[0x7f5afa3757f3]
/usr/bin/swift-frontend(+0x2af4275)[0x5564d2202275]
/usr/bin/swift-frontend(+0x2755c54)[0x5564d1e63c54]
/usr/bin/swift-frontend(+0x2ab869b)[0x5564d21c669b]
/usr/bin/swift-frontend(+0x2347a0c)[0x5564d1a55a0c]
/usr/bin/swift-frontend(+0x106859c)[0x5564d077659c]
/usr/bin/swift-frontend(+0x1068102)[0x5564d0776102]
/usr/bin/swift-frontend(+0x106716b)[0x5564d077516b]
/usr/bin/swift-frontend(+0x2ab91aa)[0x5564d21c71aa]
/usr/bin/swift-frontend(+0x1036d5b)[0x5564d0744d5b]
/usr/bin/swift-frontend(+0x10362a7)[0x5564d07442a7]
/usr/bin/swift-frontend(+0x1033c59)[0x5564d0741c59]
/usr/bin/swift-frontend(+0x1cb4cd1)[0x5564d13c2cd1]
/usr/bin/swift-frontend(+0x27ad05c)[0x5564d1ebb05c]
/usr/bin/swift-frontend(+0x27aeb3c)[0x5564d1ebcb3c]
/usr/bin/swift-frontend(+0x27b10e7)[0x5564d1ebf0e7]
/usr/bin/swift-frontend(+0x27ad07c)[0x5564d1ebb07c]
/usr/bin/swift-frontend(+0x27b1c1f)[0x5564d1ebfc1f]
/usr/bin/swift-frontend(+0x27b086b)[0x5564d1ebe86b]
/usr/bin/swift-frontend(+0x27ad07c)[0x5564d1ebb07c]
/usr/bin/swift-frontend(+0x27acf73)[0x5564d1ebaf73]
/usr/bin/swift-frontend(+0x298b1e2)[0x5564d20991e2]
/usr/bin/swift-frontend(+0x1cb26a6)[0x5564d13c06a6]
/usr/bin/swift-frontend(+0x1032c84)[0x5564d0740c84]
/usr/bin/swift-frontend(+0x1032b2a)[0x5564d0740b2a]
/usr/bin/swift-frontend(+0x1027f82)[0x5564d0735f82]
/usr/bin/swift-frontend(+0x1027978)[0x5564d0735978]
/usr/bin/swift-frontend(+0xe3f242)[0x5564d054d242]
/usr/bin/swift-frontend(+0xe3d09c)[0x5564d054b09c]
/usr/bin/swift-frontend(+0xe382cd)[0x5564d05462cd]
/usr/bin/swift-frontend(+0xe369db)[0x5564d05449db]
/usr/bin/swift-frontend(+0xcc3315)[0x5564d03d1315]
/lib/x86_64-linux-gnu/libc.so.6(+0x29d90)[0x7f5afa376d90]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x80)[0x7f5afa376e40]
/usr/bin/swift-frontend(+0xcc2375)[0x5564d03d0375]
BUILD FAILURE 5.10 linux

Build Machine: Linux 2