The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build swift-nio-ssh, reference 0.12.0 (8f33ca), with Swift 6.1 for Wasm on 6 Nov 2025 10:44:21 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apple/swift-nio-ssh.git
Reference: 0.12.0
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/apple/swift-nio-ssh
 * tag               0.12.0     -> FETCH_HEAD
HEAD is now at 8f33cac Bump minimum Swift version to 6.0 (#216)
Cloned https://github.com/apple/swift-nio-ssh.git
Revision (git rev-parse @):
8f33cac67309a13aecc0a4d95044543549b20ffb
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/apple/swift-nio-ssh.git at 0.12.0
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/apple/swift-nio-ssh.git
https://github.com/apple/swift-nio-ssh.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.81.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "swift-atomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-atomics.git"
    }
  ],
  "manifest_display_name" : "swift-nio-ssh",
  "name" : "swift-nio-ssh",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "NIOSSH",
      "targets" : [
        "NIOSSH"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "NIOSSHServer",
      "targets" : [
        "NIOSSHServer"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "NIOSSHPerformanceTester",
      "targets" : [
        "NIOSSHPerformanceTester"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "NIOSSHClient",
      "targets" : [
        "NIOSSHClient"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NIOSSHTests",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHTests",
      "path" : "Tests/NIOSSHTests",
      "product_dependencies" : [
        "NIOCore",
        "NIOEmbedded",
        "NIOFoundationCompat"
      ],
      "sources" : [
        "AESGCMTests.swift",
        "ByteBuffer+SSHTests.swift",
        "CertifiedKeyTests.swift",
        "ChildChannelMultiplexerTests.swift",
        "ECKeyExchangeTests.swift",
        "EndToEndTests.swift",
        "FuzzResultTests.swift",
        "HostKeyTests.swift",
        "SSHConnectionStateMachineTests.swift",
        "SSHEncryptedTrafficTests.swift",
        "SSHHandlerTests.swift",
        "SSHKeyExchangeStateMachineTests.swift",
        "SSHMessagesTests.swift",
        "SSHPackerSerializerTests.swift",
        "SSHPacketParserTests.swift",
        "UserAuthenticationStateMachineTests.swift",
        "Utilities.swift",
        "UtilitiesTests.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "test"
    },
    {
      "c99name" : "NIOSSHServer",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHServer",
      "path" : "Sources/NIOSSHServer",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "NIOFoundationCompat",
        "Crypto"
      ],
      "product_memberships" : [
        "NIOSSHServer"
      ],
      "sources" : [
        "DataToBufferCodec.swift",
        "ExecHandler.swift",
        "GlueHandler.swift",
        "RemotePortForwarding.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "NIOSSHPerformanceTester",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHPerformanceTester",
      "path" : "Sources/NIOSSHPerformanceTester",
      "product_dependencies" : [
        "NIOCore",
        "NIOEmbedded",
        "Crypto"
      ],
      "product_memberships" : [
        "NIOSSHPerformanceTester"
      ],
      "sources" : [
        "Benchmark.swift",
        "BenchmarkHandshake.swift",
        "BenchmarkLinearThroughput.swift",
        "main.swift",
        "shared.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "NIOSSHClient",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHClient",
      "path" : "Sources/NIOSSHClient",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "NIOConcurrencyHelpers"
      ],
      "product_memberships" : [
        "NIOSSHClient"
      ],
      "sources" : [
        "ExecHandler.swift",
        "GlueHandler.swift",
        "InteractivePasswordPromptDelegate.swift",
        "PortForwardingServer.swift",
        "SimpleCLIParser.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "NIOSSH",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSH",
      "path" : "Sources/NIOSSH",
      "product_dependencies" : [
        "NIOCore",
        "NIOConcurrencyHelpers",
        "NIOFoundationCompat",
        "Crypto",
        "Atomics"
      ],
      "product_memberships" : [
        "NIOSSH",
        "NIOSSHServer",
        "NIOSSHPerformanceTester",
        "NIOSSHClient"
      ],
      "sources" : [
        "ByteBuffer+SSH.swift",
        "CSPRNG/CSPRNG.swift",
        "Child Channels/ChildChannelOptions.swift",
        "Child Channels/ChildChannelStateMachine.swift",
        "Child Channels/ChildChannelUserEvents.swift",
        "Child Channels/ChildChannelWindowManager.swift",
        "Child Channels/ChildChannelWritabilityManager.swift",
        "Child Channels/OutboundFlowController.swift",
        "Child Channels/SSHChannelData.swift",
        "Child Channels/SSHChannelIdentifier.swift",
        "Child Channels/SSHChannelMultiplexer.swift",
        "Child Channels/SSHChannelType.swift",
        "Child Channels/SSHChildChannel.swift",
        "Connection State Machine/Operations/AcceptsChannelMessages.swift",
        "Connection State Machine/Operations/AcceptsKeyExchangeMessages.swift",
        "Connection State Machine/Operations/AcceptsUserAuthMessages.swift",
        "Connection State Machine/Operations/AcceptsVersionMessages.swift",
        "Connection State Machine/Operations/SendsChannelMessages.swift",
        "Connection State Machine/Operations/SendsKeyExchangeMessages.swift",
        "Connection State Machine/Operations/SendsUserAuthMessages.swift",
        "Connection State Machine/SSHConnectionStateMachine.swift",
        "Connection State Machine/States/ActiveState.swift",
        "Connection State Machine/States/IdleState.swift",
        "Connection State Machine/States/KeyExchangeState.swift",
        "Connection State Machine/States/ReceivedKexInitWhenActiveState.swift",
        "Connection State Machine/States/ReceivedNewKeysState.swift",
        "Connection State Machine/States/RekeyingReceivedNewKeysState.swift",
        "Connection State Machine/States/RekeyingSentNewKeysState.swift",
        "Connection State Machine/States/RekeyingState.swift",
        "Connection State Machine/States/SentKexInitWhenActiveState.swift",
        "Connection State Machine/States/SentNewKeysState.swift",
        "Connection State Machine/States/SentVersionState.swift",
        "Connection State Machine/States/UserAuthenticationState.swift",
        "Constants.swift",
        "GlobalRequestDelegate.swift",
        "Key Exchange/ECDHCompatibleKey.swift",
        "Key Exchange/EllipticCurveKeyExchange.swift",
        "Key Exchange/SSHKeyExchangeResult.swift",
        "Key Exchange/SSHKeyExchangeStateMachine.swift",
        "Keys And Signatures/ClientServerAuthenticationDelegate.swift",
        "Keys And Signatures/NIOSSHCertifiedPublicKey.swift",
        "Keys And Signatures/NIOSSHPrivateKey.swift",
        "Keys And Signatures/NIOSSHPublicKey.swift",
        "Keys And Signatures/NIOSSHSignature.swift",
        "NIOSSHError.swift",
        "NIOSSHHandler.swift",
        "Role.swift",
        "SSHClientConfiguration.swift",
        "SSHEncryptablePacketPayload.swift",
        "SSHMessages.swift",
        "SSHPacketParser.swift",
        "SSHPacketSerializer.swift",
        "SSHServerConfiguration.swift",
        "SSHTerminalModes.swift",
        "TransportProtection/AESGCM.swift",
        "TransportProtection/SSHTransportProtection.swift",
        "User Authentication/ClientUserAuthenticationDelegate.swift",
        "User Authentication/DenyAllServerAuthDelegate.swift",
        "User Authentication/ServerUserAuthenticationDelegate.swift",
        "User Authentication/SimplePasswordDelegate.swift",
        "User Authentication/UserAuthDelegate.swift",
        "User Authentication/UserAuthSignablePayload.swift",
        "User Authentication/UserAuthenticationMethod.swift",
        "User Authentication/UserAuthenticationStateMachine.swift",
        "_NIOSSHSendableMetatype.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:062e4aaff76454b333ce7957a8e87c3beb342f1dedb64399abb81cdea021b526
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-nio.git
[1/1820] Fetching swift-atomics
[1821/19248] Fetching swift-atomics, swift-crypto
Fetched https://github.com/apple/swift-atomics.git from cache (0.52s)
[698/17428] Fetching swift-crypto
[1570/97448] Fetching swift-crypto, swift-nio
Fetched https://github.com/apple/swift-crypto.git from cache (3.32s)
[48012/80020] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (9.81s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (10.41s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.88.0 (1.03s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
[1/5167] Fetching swift-system
[1810/23453] Fetching swift-system, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (0.58s)
[6583/18286] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.77s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.3 (2.53s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.3.0 (0.81s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.15.1 (3.56s)
Fetching https://github.com/apple/swift-asn1.git
[1/1653] Fetching swift-asn1
Fetched https://github.com/apple/swift-asn1.git from cache (0.51s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.5.0 (2.92s)
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.15.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.88.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.5.0
Building for debugging...
[0/416] Write sources
[9/416] Write swift-version-24593BA9C3E375BF.txt
[9/416] Write sources
[12/416] Compiling _AtomicsShims.c
[13/420] Compiling mlkem.cc
[14/420] Compiling mldsa.cc
[15/420] Compiling mem.cc
[16/420] Write sources
[19/420] Compiling err.cc
[19/420] Write sources
[22/420] Compiling CNIOWindows shim.c
[23/420] Compiling CNIOWindows WSAStartup.c
[24/422] Compiling CNIOWASI CNIOWASI.c
[25/436] Compiling CNIOPosix event_loop_id.c
[26/438] Compiling CNIOLinux shim.c
[27/438] Compiling CNIOLinux liburing_shims.c
[28/456] Compiling CNIODarwin shim.c
[29/456] Compiling md4.cc
[30/456] Compiling md5.cc
[31/456] Compiling evp.cc
[32/456] Compiling fiat_p256_adx_sqr.S
[33/456] Compiling fiat_p256_adx_mul.S
[34/456] Compiling fiat_curve25519_adx_square.S
[35/456] Compiling fiat_curve25519_adx_mul.S
[37/456] Emitting module _NIOBase64
[37/456] Compiling md5-x86_64-linux.S
[38/456] Compiling md5-x86_64-apple.S
[39/456] Compiling md5-586-linux.S
[40/456] Compiling md5-586-apple.S
[41/456] Compiling CCryptoBoringSSLShims shims.c
[42/456] Compiling chacha20_poly1305_x86_64-linux.S
[43/456] Compiling chacha20_poly1305_x86_64-apple.S
[45/456] Emitting module InternalCollectionsUtilities
[45/458] Compiling chacha20_poly1305_armv8-win.S
[46/458] Compiling chacha20_poly1305_armv8-linux.S
[47/458] Compiling chacha20_poly1305_armv8-apple.S
[48/458] Compiling chacha-x86_64-linux.S
[49/458] Compiling chacha-x86_64-apple.S
[50/458] Compiling chacha-x86-linux.S
[51/458] Compiling chacha-x86-apple.S
[52/458] Compiling err_data.cc
[53/458] Compiling chacha-armv8-win.S
[54/458] Compiling chacha-armv8-linux.S
[55/458] Compiling chacha-armv8-apple.S
[56/458] Compiling chacha-armv4-linux.S
[57/458] Compiling aes128gcmsiv-x86_64-linux.S
[58/458] Compiling aes128gcmsiv-x86_64-apple.S
[59/458] Compiling x86_64-mont5-linux.S
[60/458] Compiling x86_64-mont5-apple.S
[61/458] Compiling x86_64-mont-linux.S
[62/458] Compiling x86_64-mont-apple.S
[63/458] Compiling x86-mont-apple.S
[64/458] Compiling x86-mont-linux.S
[65/458] Compiling vpaes-x86_64-apple.S
[66/458] Compiling vpaes-x86_64-linux.S
[67/458] Compiling vpaes-x86-linux.S
[68/458] Compiling vpaes-x86-apple.S
[69/458] Compiling vpaes-armv8-win.S
[70/458] Compiling vpaes-armv8-linux.S
[71/458] Compiling vpaes-armv8-apple.S
[72/458] Compiling vpaes-armv7-linux.S
[73/458] Compiling sha512-x86_64-linux.S
[74/458] Compiling sha512-x86_64-apple.S
[75/458] Compiling sha512-armv8-linux.S
[76/458] Compiling sha512-armv8-win.S
[77/458] Compiling sha512-armv4-linux.S
[78/458] Compiling sha512-armv8-apple.S
[79/458] Compiling sha512-586-linux.S
[80/458] Compiling sha512-586-apple.S
[81/458] Compiling sha256-x86_64-apple.S
[82/458] Compiling sha256-x86_64-linux.S
[83/458] Compiling sha256-armv8-win.S
[84/458] Compiling sha256-armv8-linux.S
[85/458] Compiling sha256-armv8-apple.S
[86/458] Compiling sha256-armv4-linux.S
[87/458] Compiling sha256-586-linux.S
[88/458] Compiling sha1-x86_64-linux.S
[89/458] Compiling sha256-586-apple.S
[90/458] Compiling sha1-x86_64-apple.S
[92/458] Compiling _NIOBase64 Base64.swift
[92/459] Compiling sha1-armv8-win.S
[94/459] Compiling Atomics AtomicMemoryOrderings.swift
[95/459] Compiling Atomics DoubleWord.swift
[96/461] Compiling Atomics AtomicInteger.swift
[97/461] Compiling Atomics AtomicOptionalWrappable.swift
[98/461] Compiling Atomics AtomicReference.swift
[99/461] Compiling Atomics ManagedAtomic.swift
[100/461] Compiling Atomics ManagedAtomicLazyReference.swift
[101/461] Compiling _NIODataStructures _TinyArray.swift
[104/461] Compiling InternalCollectionsUtilities UnsafeMutableRawBufferPointer+Extras.swift
[105/461] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.swift
[110/461] Compiling Atomics OptionalRawRepresentable.swift
[111/461] Compiling Atomics RawRepresentable.swift
[112/461] Compiling Atomics AtomicBool.swift
[112/461] Compiling sha1-armv8-apple.S
[116/461] Compiling Atomics IntegerConformances.swift
[117/461] Compiling Atomics PointerConformances.swift
[118/461] Compiling Atomics Primitives.native.swift
[119/461] Compiling Atomics AtomicValue.swift
[124/461] Compiling Atomics AtomicStorage.swift
[124/461] Compiling sha1-armv8-linux.S
[128/462] Compiling _NIODataStructures PriorityQueue.swift
[128/462] Compiling sha1-armv4-large-linux.S
[129/462] Compiling sha1-586-linux.S
[131/462] Compiling sha1-586-apple.S
[133/462] Compiling rsaz-avx2-linux.S
[134/462] Compiling rsaz-avx2-apple.S
[135/462] Compiling rdrand-x86_64-linux.S
[136/462] Compiling rdrand-x86_64-apple.S
[136/462] Compiling p256_beeu-x86_64-asm-linux.S
[139/462] Emitting module Atomics
[142/477] Compiling p256_beeu-x86_64-asm-apple.S
[143/477] Wrapping AST for InternalCollectionsUtilities for debugging
[144/477] Compiling p256_beeu-armv8-asm-win.S
[145/477] Compiling p256_beeu-armv8-asm-linux.S
[146/477] Wrapping AST for _NIOBase64 for debugging
[147/477] Compiling p256_beeu-armv8-asm-apple.S
[148/477] Compiling p256-x86_64-asm-linux.S
[149/477] Compiling p256-x86_64-asm-apple.S
[150/477] Compiling p256-armv8-asm-linux.S
[151/477] Compiling p256-armv8-asm-apple.S
[152/477] Compiling p256-armv8-asm-win.S
[153/477] Compiling ghashv8-armv8-linux.S
[154/477] Compiling ghashv8-armv8-win.S
[156/477] Compiling Atomics IntegerOperations.swift
[157/477] Compiling Atomics Unmanaged extensions.swift
[157/477] Compiling ghashv8-armv8-apple.S
[158/478] Compiling ghash-x86_64-linux.S
[159/478] Compiling ghashv8-armv7-linux.S
[160/478] Compiling ghash-x86-linux.S
[161/478] Compiling ghash-x86_64-apple.S
[162/478] Compiling ghash-x86-apple.S
[164/478] Compiling DequeModule _DequeBuffer.swift
[165/478] Compiling DequeModule _DequeBufferHeader.swift
[166/480] Compiling ghash-ssse3-x86_64-linux.S
[168/480] Compiling DequeModule Deque+Equatable.swift
[169/480] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[169/480] Compiling ghash-ssse3-x86_64-apple.S
[171/480] Compiling DequeModule Deque+Extras.swift
[172/480] Compiling DequeModule Deque+Hashable.swift
[173/480] Compiling DequeModule Deque+CustomReflectable.swift
[174/480] Compiling DequeModule Deque+Descriptions.swift
[174/480] Compiling ghash-ssse3-x86-linux.S
[175/480] Compiling ghash-ssse3-x86-apple.S
[176/480] Compiling ghash-neon-armv8-win.S
[177/480] Compiling ghash-neon-armv8-linux.S
[178/480] Compiling co-586-linux.S
[179/480] Compiling ghash-neon-armv8-apple.S
[180/480] Compiling ghash-armv4-linux.S
[182/480] Emitting module _NIODataStructures
[183/480] Compiling _NIODataStructures Heap.swift
[183/481] Compiling bn-armv8-win.S
[184/481] Compiling co-586-apple.S
[185/481] Compiling bsaes-armv7-linux.S
[186/481] Compiling bn-armv8-linux.S
[187/481] Compiling bn-armv8-apple.S
[188/481] Compiling bn-586-linux.S
[189/481] Compiling armv8-mont-linux.S
[190/481] Compiling armv8-mont-win.S
[191/481] Compiling bn-586-apple.S
[192/481] Compiling armv4-mont-linux.S
[194/481] Compiling armv8-mont-apple.S
[195/481] Compiling aesv8-gcm-armv8-win.S
[195/481] Compiling aesv8-gcm-armv8-linux.S
[197/481] Compiling aesv8-gcm-armv8-apple.S
[198/481] Compiling aesv8-armv8-win.S
[200/481] Compiling DequeModule _DequeSlot.swift
[201/481] Compiling DequeModule _UnsafeWrappedBuffer.swift
[201/481] Compiling aesv8-armv8-apple.S
[202/481] Compiling aesv8-armv8-linux.S
[203/481] Wrapping AST for _NIODataStructures for debugging
[204/481] Compiling aesni-x86_64-linux.S
[205/481] Compiling aesni-x86_64-apple.S
[206/481] Compiling aesv8-armv7-linux.S
[207/481] Compiling aesni-x86-linux.S
[208/481] Compiling aesni-x86-apple.S
[209/481] Compiling aes-gcm-avx512-x86_64-linux.S
[210/481] Compiling aes-gcm-avx512-x86_64-apple.S
[210/481] Compiling aesni-gcm-x86_64-linux.S
[212/481] Compiling aesni-gcm-x86_64-apple.S
[213/481] Compiling aes-gcm-avx2-x86_64-apple.S
[214/481] Compiling aes-gcm-avx2-x86_64-linux.S
[216/481] Compiling DequeModule Deque+Codable.swift
[217/481] Compiling DequeModule Deque+Collection.swift
[218/481] Emitting module DequeModule
[219/481] Compiling DequeModule Deque+Testing.swift
[220/481] Compiling DequeModule Deque._Storage.swift
[221/481] Compiling DequeModule Deque._UnsafeHandle.swift
[222/481] Compiling DequeModule Deque.swift
[223/482] Compiling x_req.cc
[224/482] Compiling c-nioatomics.c
[225/482] Wrapping AST for DequeModule for debugging
[226/482] Compiling xwing.cc
[227/482] Compiling x_sig.cc
[228/482] Compiling x_spki.cc
[229/482] Compiling x_x509a.cc
[230/482] Compiling x_x509.cc
[231/482] Compiling c-atomics.c
[232/482] Compiling x_name.cc
[233/482] Compiling x_pubkey.cc
[234/482] Compiling x_exten.cc
[235/488] Compiling x_attrib.cc
[236/488] Compiling x_crl.cc
[237/488] Compiling x_algor.cc
[239/488] Compiling NIOConcurrencyHelpers lock.swift
[239/488] Compiling x_all.cc
[241/488] Emitting module NIOConcurrencyHelpers
[242/488] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[242/488] Compiling x509rset.cc
[244/488] Compiling NIOConcurrencyHelpers NIOLock.swift
[245/488] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[246/488] Compiling NIOConcurrencyHelpers atomics.swift
[246/489] Compiling x509spki.cc
[248/489] Compiling x509name.cc
[249/513] Wrapping AST for NIOConcurrencyHelpers for debugging
[250/552] Compiling x509cset.cc
[251/552] Compiling x509_vfy.cc
[252/552] Compiling x509_vpm.cc
[253/552] Compiling x509_v3.cc
[254/552] Compiling x509_txt.cc
[255/552] Compiling x509_trs.cc
[256/552] Compiling x509_lu.cc
[257/552] Compiling x509_req.cc
[258/552] Compiling x509_set.cc
[260/552] Compiling NIOCore NIOCoreSendableMetatype.swift
[261/552] Compiling NIOCore NIODecodedAsyncSequence.swift
[262/552] Compiling NIOCore NIOLoopBound.swift
[263/552] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[264/552] Compiling NIOCore NIOScheduledCallback.swift
[265/552] Compiling NIOCore NIOSendable.swift
[266/552] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[267/552] Compiling NIOCore RecvByteBufferAllocator.swift
[267/560] Compiling x509_obj.cc
[268/560] Compiling x509_def.cc
[269/560] Compiling x509_ext.cc
[271/560] Compiling NIOCore IPProtocol.swift
[272/560] Compiling NIOCore IntegerBitPacking.swift
[273/560] Compiling NIOCore IntegerTypes.swift
[274/560] Compiling NIOCore Interfaces.swift
[275/560] Compiling NIOCore Linux.swift
[276/560] Compiling NIOCore MarkedCircularBuffer.swift
[277/560] Compiling NIOCore MulticastChannel.swift
[278/560] Compiling NIOCore NIOAny.swift
[279/560] Compiling NIOCore NIOCloseOnErrorHandler.swift
[279/560] Compiling x509_d2.cc
[280/560] Compiling x509.cc
[281/560] Compiling x509_att.cc
[282/560] Compiling x509_cmp.cc
[284/560] Compiling NIOCore EventLoopFuture+Deprecated.swift
[285/560] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[286/560] Compiling NIOCore EventLoopFuture.swift
[287/560] Compiling NIOCore FileDescriptor.swift
[288/560] Compiling NIOCore FileHandle.swift
[289/560] Compiling NIOCore FileRegion.swift
[290/560] Compiling NIOCore GlobalSingletons.swift
[291/560] Compiling NIOCore IO.swift
[292/560] Compiling NIOCore IOData.swift
[292/560] Compiling v3_utl.cc
[293/560] Compiling v3_prn.cc
[294/560] Compiling v3_skey.cc
[295/560] Compiling v3_purp.cc
[296/560] Compiling v3_pmaps.cc
[298/560] Compiling NIOCore CircularBuffer.swift
[299/560] Compiling NIOCore Codec.swift
[300/560] Compiling NIOCore ConvenienceOptionSupport.swift
[301/560] Compiling NIOCore DeadChannel.swift
[302/560] Compiling NIOCore DispatchQueue+WithFuture.swift
[303/560] Compiling NIOCore EventLoop+Deprecated.swift
[304/560] Compiling NIOCore EventLoop+SerialExecutor.swift
[305/560] Compiling NIOCore EventLoop.swift
[306/560] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[307/560] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[308/560] Compiling NIOCore SocketAddresses.swift
[309/560] Compiling NIOCore SocketOptionProvider.swift
[310/560] Compiling NIOCore SystemCallHelpers.swift
[311/560] Compiling NIOCore TimeAmount+Duration.swift
[312/560] Compiling NIOCore TypeAssistedChannelHandler.swift
[313/560] Compiling NIOCore UniversalBootstrapSupport.swift
[314/560] Compiling NIOCore Utilities.swift
[314/560] Compiling v3_pcons.cc
[315/560] Compiling v3_ocsp.cc
[316/560] Compiling v3_ia5.cc
[317/560] Compiling v3_ncons.cc
[318/560] Compiling v3_lib.cc
[319/560] Compiling v3_int.cc
[320/560] Compiling v3_info.cc
[321/560] Compiling v3_genn.cc
[322/560] Compiling v3_extku.cc
[323/560] Compiling v3_enum.cc
[324/560] Compiling v3_cpols.cc
[325/560] Compiling v3_crld.cc
[326/560] Compiling v3_conf.cc
[327/560] Compiling v3_bitst.cc
[328/560] Compiling t_x509a.cc
[329/560] Compiling v3_bcons.cc
[330/560] Compiling v3_akeya.cc
[331/560] Compiling v3_alt.cc
[332/560] Compiling v3_akey.cc
[333/560] Compiling t_x509.cc
[334/560] Compiling t_req.cc
[336/560] Emitting module NIOCore
[336/560] Compiling rsa_pss.cc
[337/560] Compiling i2d_pr.cc
[338/560] Compiling t_crl.cc
[339/560] Compiling policy.cc
[340/560] Compiling name_print.cc
[342/560] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[343/560] Compiling NIOCore BSDSocketAPI.swift
[344/560] Compiling NIOCore ByteBuffer-aux.swift
[345/560] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[346/560] Compiling NIOCore ByteBuffer-conversions.swift
[347/560] Compiling NIOCore ByteBuffer-core.swift
[348/560] Compiling NIOCore ByteBuffer-hex.swift
[349/560] Compiling NIOCore ByteBuffer-int.swift
[350/560] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[351/560] Compiling NIOCore ByteBuffer-multi-int.swift
[352/560] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[353/560] Compiling NIOCore ByteBuffer-views.swift
[354/560] Compiling NIOCore Channel.swift
[355/560] Compiling NIOCore ChannelHandler.swift
[356/560] Compiling NIOCore ChannelHandlers.swift
[357/560] Compiling NIOCore ChannelInvoker.swift
[358/560] Compiling NIOCore ChannelOption.swift
[359/560] Compiling NIOCore ChannelPipeline.swift
[360/560] Compiling NIOCore AddressedEnvelope.swift
[361/560] Compiling NIOCore AsyncAwaitSupport.swift
[362/560] Compiling NIOCore AsyncChannel.swift
[363/560] Compiling NIOCore AsyncChannelHandler.swift
[364/560] Compiling NIOCore AsyncChannelInboundStream.swift
[365/560] Compiling NIOCore AsyncChannelOutboundWriter.swift
[366/560] Compiling NIOCore NIOAsyncSequenceProducer.swift
[367/560] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[368/560] Compiling NIOCore NIOAsyncWriter.swift
[368/560] Compiling a_sign.cc
[369/561] Compiling by_file.cc
[371/561] Compiling by_dir.cc
[372/561] Compiling algorithm.cc
[373/602] Compiling asn1_gen.cc
[374/611] Compiling a_verify.cc
[375/611] Wrapping AST for NIOCore for debugging
[376/620] Compiling a_digest.cc
[378/620] Compiling NIOEmbedded AsyncTestingChannel.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingChannel.swift:731:11: error: cannot find type 'NIOAsyncTestingChannel' in scope
729 | // Synchronous options are never Sendable.
730 | @available(*, unavailable)
731 | extension NIOAsyncTestingChannel.SynchronousOptions: Sendable {}
    |           `- error: cannot find type 'NIOAsyncTestingChannel' in scope
732 |
[378/620] Compiling voprf.cc
[380/620] Compiling NIOPosix IO.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[381/620] Compiling NIOPosix IntegerBitPacking.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[382/620] Compiling NIOPosix IntegerTypes.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[383/620] Compiling NIOPosix Linux.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[384/620] Compiling NIOPosix LinuxCPUSet.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[385/620] Compiling NIOPosix LinuxUring.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[386/620] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
error: emit-module command failed with exit code 1 (use -v to see invocation)
[387/626] Emitting module NIOEmbedded
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingChannel.swift:731:11: error: cannot find type 'NIOAsyncTestingChannel' in scope
729 | // Synchronous options are never Sendable.
730 | @available(*, unavailable)
731 | extension NIOAsyncTestingChannel.SynchronousOptions: Sendable {}
    |           `- error: cannot find type 'NIOAsyncTestingChannel' in scope
732 |
[388/626] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[389/626] Compiling NIOEmbedded Embedded.swift
[389/626] Compiling trust_token.cc
[390/626] Compiling thread.cc
[390/626] Compiling pmbtoken.cc
[390/626] Compiling thread_none.cc
[390/626] Compiling thread_pthread.cc
[390/626] Compiling thread_win.cc
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:062e4aaff76454b333ce7957a8e87c3beb342f1dedb64399abb81cdea021b526
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/189] Compiling stack.cc
[1/189] Write swift-version-24593BA9C3E375BF.txt
[2/189] Compiling thread.cc
[3/189] Compiling thread_pthread.cc
[4/191] Compiling thread_win.cc
[5/193] Compiling thread_none.cc
[6/217] Compiling slhdsa.cc
[8/217] Compiling InternalCollectionsUtilities _SortedCollection.swift
[9/217] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[10/219] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[10/219] Compiling spake2plus.cc
[11/219] Compiling pmbtoken.cc
[13/219] Compiling NIOConcurrencyHelpers lock.swift
[14/237] Compiling Atomics UnsafeAtomic.swift
[15/237] Compiling Atomics UnsafeAtomicLazyReference.swift
[16/237] Compiling NIOConcurrencyHelpers NIOLock.swift
[16/237] Compiling siphash.cc
[18/237] Compiling _NIODataStructures PriorityQueue.swift
[19/237] Compiling _NIODataStructures _TinyArray.swift
[20/237] Compiling _NIODataStructures Heap.swift
[21/237] Emitting module _NIODataStructures
[22/238] Compiling Atomics AtomicOptionalWrappable.swift
[23/238] Compiling Atomics AtomicReference.swift
[24/238] Compiling Atomics ManagedAtomic.swift
[25/238] Compiling Atomics ManagedAtomicLazyReference.swift
[26/238] Compiling Atomics AtomicStorage.swift
[27/238] Compiling Atomics AtomicValue.swift
[29/237] Compiling Atomics AtomicMemoryOrderings.swift
[30/237] Compiling Atomics DoubleWord.swift
[37/239] Compiling _NIOBase64 Base64.swift
[38/239] Emitting module _NIOBase64
[39/240] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[40/240] Emitting module InternalCollectionsUtilities
[42/240] Emitting module NIOConcurrencyHelpers
[43/240] Compiling NIOConcurrencyHelpers atomics.swift
[44/239] Compiling sha1.cc
[45/239] Compiling sha512.cc
[46/239] Compiling sha256.cc
[48/239] Compiling Atomics IntegerOperations.swift
[49/239] Compiling Atomics Unmanaged extensions.swift
[50/239] Compiling Atomics AtomicInteger.swift
[53/239] Compiling Atomics OptionalRawRepresentable.swift
[54/239] Compiling Atomics RawRepresentable.swift
[55/239] Compiling Atomics Primitives.native.swift
[57/239] Compiling Atomics AtomicBool.swift
[58/239] Compiling Atomics IntegerConformances.swift
[59/239] Compiling Atomics PointerConformances.swift
[59/240] Compiling rsa_print.cc
[61/239] Compiling rsa_extra.cc
[62/239] Compiling refcount.cc
[63/239] Compiling rc4.cc
[64/239] Compiling rsa_crypt.cc
[66/254] Compiling DequeModule _DequeBuffer.swift
[67/254] Compiling DequeModule _DequeBufferHeader.swift
[67/256] Compiling windows.cc
[68/256] Compiling urandom.cc
[69/256] Compiling rsa_asn1.cc
[71/256] Compiling DequeModule Deque+Equatable.swift
[72/256] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[73/256] Compiling DequeModule Deque+CustomReflectable.swift
[74/256] Compiling DequeModule Deque+Descriptions.swift
[75/256] Compiling DequeModule Deque+Testing.swift
[76/256] Compiling DequeModule Deque._Storage.swift
[77/256] Compiling DequeModule Deque+Extras.swift
[78/256] Compiling DequeModule Deque+Hashable.swift
[78/256] Compiling rand.cc
[79/256] Compiling trusty.cc
[81/256] Compiling DequeModule Deque._UnsafeHandle.swift
[82/256] Compiling DequeModule Deque.swift
[83/256] Compiling DequeModule _DequeSlot.swift
[84/256] Compiling DequeModule _UnsafeWrappedBuffer.swift
[84/256] Compiling passive.cc
[85/256] Compiling deterministic.cc
[86/256] Compiling ios.cc
[87/256] Compiling poly1305_arm_asm.S
[88/256] Compiling getentropy.cc
[90/256] Compiling DequeModule Deque+Codable.swift
[91/256] Compiling DequeModule Deque+Collection.swift
[91/256] Compiling forkunsafe.cc
[99/256] Emitting module Atomics
[99/257] Compiling fork_detect.cc
[101/257] Emitting module DequeModule
[101/258] Compiling poly1305_vec.cc
[104/257] Compiling poly1305_arm.cc
[105/257] Compiling poly1305.cc
[106/257] Compiling pool.cc
[107/320] Compiling pkcs8_x509.cc
[108/320] Compiling pkcs8.cc
[109/320] Compiling pkcs7.cc
[110/320] Compiling p5_pbev2.cc
[111/320] Compiling pkcs7_x509.cc
[112/320] Compiling pem_x509.cc
[113/320] Compiling pem_xaux.cc
[114/320] Compiling pem_all.cc
[115/320] Compiling pem_pkey.cc
[117/320] Compiling NIOCore NIOCoreSendableMetatype.swift
[118/320] Compiling NIOCore NIODecodedAsyncSequence.swift
[119/320] Compiling NIOCore NIOLoopBound.swift
[120/320] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[121/320] Compiling NIOCore NIOScheduledCallback.swift
[122/320] Compiling NIOCore NIOSendable.swift
[123/320] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[124/320] Compiling NIOCore RecvByteBufferAllocator.swift
[125/320] Compiling NIOCore IPProtocol.swift
[126/320] Compiling NIOCore IntegerBitPacking.swift
[127/320] Compiling NIOCore IntegerTypes.swift
[128/320] Compiling NIOCore Interfaces.swift
[129/320] Compiling NIOCore Linux.swift
[130/320] Compiling NIOCore MarkedCircularBuffer.swift
[131/320] Compiling NIOCore MulticastChannel.swift
[132/320] Compiling NIOCore NIOAny.swift
[133/320] Compiling NIOCore NIOCloseOnErrorHandler.swift
[133/328] Compiling pem_pk8.cc
[134/328] Compiling obj_xref.cc
[135/328] Compiling pem_oth.cc
[136/328] Compiling obj.cc
[137/328] Compiling poly_rq_mul.S
[139/328] Compiling NIOCore EventLoopFuture+Deprecated.swift
[140/328] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[141/328] Compiling NIOCore EventLoopFuture.swift
[142/328] Compiling NIOCore FileDescriptor.swift
[143/328] Compiling NIOCore FileHandle.swift
[144/328] Compiling NIOCore FileRegion.swift
[145/328] Compiling NIOCore GlobalSingletons.swift
[146/328] Compiling NIOCore IO.swift
[147/328] Compiling NIOCore IOData.swift
[147/328] Compiling hrss.cc
[148/328] Compiling fips_shared_support.cc
[149/328] Compiling kyber.cc
[150/328] Compiling pem_lib.cc
[151/328] Compiling pem_info.cc
[152/328] Compiling lhash.cc
[153/328] Compiling fuzzer_mode.cc
[155/328] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[156/328] Compiling NIOCore SocketAddresses.swift
[157/328] Compiling NIOCore SocketOptionProvider.swift
[158/328] Compiling NIOCore SystemCallHelpers.swift
[159/328] Compiling NIOCore TimeAmount+Duration.swift
[160/328] Compiling NIOCore TypeAssistedChannelHandler.swift
[161/328] Compiling NIOCore UniversalBootstrapSupport.swift
[162/328] Compiling NIOCore Utilities.swift
[162/328] Compiling ex_data.cc
[163/328] Compiling scrypt.cc
[164/328] Compiling sign.cc
[165/328] Compiling hpke.cc
[166/328] Compiling print.cc
[167/328] Compiling pbkdf.cc
[168/328] Compiling p_ed25519_asn1.cc
[169/328] Compiling p_ed25519.cc
[171/328] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[172/328] Compiling NIOCore BSDSocketAPI.swift
[173/328] Compiling NIOCore ByteBuffer-aux.swift
[174/328] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[175/328] Compiling NIOCore ByteBuffer-conversions.swift
[176/328] Compiling NIOCore ByteBuffer-core.swift
[177/328] Compiling NIOCore ByteBuffer-hex.swift
[178/328] Compiling NIOCore ByteBuffer-int.swift
[179/328] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[179/328] Compiling p_x25519_asn1.cc
[180/328] Compiling p_ec_asn1.cc
[181/328] Compiling p_x25519.cc
[182/328] Compiling p_rsa_asn1.cc
[183/328] Compiling p_dh_asn1.cc
[184/328] Compiling p_hkdf.cc
[185/328] Compiling p_rsa.cc
[186/328] Compiling p_ec.cc
[187/328] Compiling ecdsa_p1363.cc
[188/328] Compiling engine.cc
[189/328] Compiling p_dsa_asn1.cc
[190/328] Compiling p_dh.cc
[191/328] Compiling evp_asn1.cc
[192/328] Compiling evp_ctx.cc
[193/328] Compiling ecdh.cc
[194/328] Compiling dsa.cc
[195/328] Compiling ec_derive.cc
[196/328] Compiling hash_to_curve.cc
[197/328] Compiling ecdsa_asn1.cc
[198/328] Compiling params.cc
[199/328] Compiling ec_asn1.cc
[200/328] Compiling dsa_asn1.cc
[201/328] Compiling digest_extra.cc
[202/328] Compiling bcm.cc
[203/328] Compiling x25519-asm-arm.S
[204/328] Compiling dh_asn1.cc
[205/328] Compiling des.cc
[206/328] Compiling crypto.cc
[207/328] Compiling spake25519.cc
[208/328] Compiling curve25519_64_adx.cc
[209/328] Compiling cpu_intel.cc
[210/328] Compiling cpu_arm_freebsd.cc
[211/328] Compiling cpu_arm_linux.cc
[212/328] Compiling curve25519.cc
[213/328] Compiling cpu_aarch64_win.cc
[214/328] Compiling cpu_aarch64_sysreg.cc
[215/328] Compiling cpu_aarch64_openbsd.cc
[216/328] Compiling cpu_aarch64_apple.cc
[217/328] Compiling conf.cc
[218/328] Compiling cpu_aarch64_linux.cc
[220/328] Compiling NIOCore ByteBuffer-multi-int.swift
[221/328] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[222/328] Compiling NIOCore ByteBuffer-views.swift
[223/328] Compiling NIOCore Channel.swift
[224/328] Compiling NIOCore ChannelHandler.swift
[225/328] Compiling NIOCore ChannelHandlers.swift
[226/328] Compiling NIOCore ChannelInvoker.swift
[227/328] Compiling NIOCore ChannelOption.swift
[228/328] Compiling NIOCore ChannelPipeline.swift
[229/328] Compiling NIOCore CircularBuffer.swift
[230/328] Compiling NIOCore Codec.swift
[231/328] Compiling NIOCore ConvenienceOptionSupport.swift
[232/328] Compiling NIOCore DeadChannel.swift
[233/328] Compiling NIOCore DispatchQueue+WithFuture.swift
[234/328] Compiling NIOCore EventLoop+Deprecated.swift
[235/328] Compiling NIOCore EventLoop+SerialExecutor.swift
[236/328] Compiling NIOCore EventLoop.swift
[237/328] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[238/328] Compiling NIOCore AddressedEnvelope.swift
[239/328] Compiling NIOCore AsyncAwaitSupport.swift
[240/328] Compiling NIOCore AsyncChannel.swift
[241/328] Compiling NIOCore AsyncChannelHandler.swift
[242/328] Compiling NIOCore AsyncChannelInboundStream.swift
[243/328] Compiling NIOCore AsyncChannelOutboundWriter.swift
[244/328] Compiling NIOCore NIOAsyncSequenceProducer.swift
[245/328] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[246/328] Compiling NIOCore NIOAsyncWriter.swift
[246/328] Compiling cpu_aarch64_fuchsia.cc
[248/328] Emitting module NIOCore
[248/329] Compiling get_cipher.cc
[249/329] Compiling tls_cbc.cc
[251/329] Compiling e_tls.cc
[252/329] Compiling e_rc4.cc
[253/328] Compiling e_rc2.cc
[254/328] Compiling cms.cc
[255/328] Compiling e_des.cc
[256/328] Compiling e_null.cc
[257/387] Compiling e_aesctrhmac.cc
[259/387] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[259/387] Compiling e_chacha20poly1305.cc
[260/387] Compiling derive_key.cc
error: emit-module command failed with exit code 1 (use -v to see invocation)
[262/387] Emitting module NIOEmbedded
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingChannel.swift:731:11: error: cannot find type 'NIOAsyncTestingChannel' in scope
729 | // Synchronous options are never Sendable.
730 | @available(*, unavailable)
731 | extension NIOAsyncTestingChannel.SynchronousOptions: Sendable {}
    |           `- error: cannot find type 'NIOAsyncTestingChannel' in scope
732 |
[262/387] Compiling chacha.cc
[263/387] Compiling e_aesgcmsiv.cc
[263/387] Compiling e_aeseax.cc
[266/387] Compiling NIOPosix Socket.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[267/387] Compiling NIOPosix SocketChannel.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[268/387] Compiling NIOPosix SocketProtocols.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[269/387] Compiling NIOPosix StructuredConcurrencyHelpers.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[270/387] Compiling NIOPosix System.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[271/387] Compiling NIOPosix Thread.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[272/387] Compiling NIOPosix ThreadPosix.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[273/393] Compiling NIOPosix SelectableEventLoop.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[274/393] Compiling NIOPosix SelectorEpoll.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[275/393] Compiling NIOPosix SelectorGeneric.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[276/393] Compiling NIOPosix SelectorKqueue.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[277/393] Compiling NIOPosix SelectorUring.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[278/393] Compiling NIOPosix SelectorWSAPoll.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[279/393] Compiling NIOPosix ServerSocket.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[280/393] Compiling NIOPosix Pool.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[281/393] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[282/393] Compiling NIOPosix PosixSingletons.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[283/393] Compiling NIOPosix RawSocketBootstrap.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[284/393] Compiling NIOPosix Resolver.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[285/393] Compiling NIOPosix Selectable.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[286/393] Compiling NIOPosix SelectableChannel.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[287/393] Compiling NIOPosix ThreadWindows.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[288/393] Compiling NIOPosix UnsafeTransfer.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[289/393] Compiling NIOPosix Utilities.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[290/393] Compiling NIOPosix VsockAddress.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[291/393] Compiling NIOPosix VsockChannelEvents.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[292/393] Compiling NIOPosix Windows.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
error: emit-module command failed with exit code 1 (use -v to see invocation)
[293/393] Emitting module NIOPosix
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[293/393] Compiling asn1_compat.cc
[294/393] Compiling unicode.cc
[296/393] Compiling NIOPosix IO.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[297/393] Compiling NIOPosix IntegerBitPacking.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[298/393] Compiling NIOPosix IntegerTypes.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[299/393] Compiling NIOPosix Linux.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[300/393] Compiling NIOPosix LinuxCPUSet.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[301/393] Compiling NIOPosix LinuxUring.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[302/393] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[303/393] Compiling NIOPosix BSDSocketAPICommon.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[304/393] Compiling NIOPosix BSDSocketAPIPosix.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[305/393] Compiling NIOPosix BSDSocketAPIWindows.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[306/393] Compiling NIOPosix BaseSocket.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[307/393] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[308/393] Compiling NIOPosix BaseSocketChannel.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[309/393] Compiling NIOPosix BaseStreamSocketChannel.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[310/393] Compiling NIOPosix Bootstrap.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[311/393] Compiling NIOPosix ControlMessage.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[312/393] Compiling NIOPosix DatagramVectorReadManager.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[313/393] Compiling NIOPosix Errors+Any.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[314/393] Compiling NIOPosix FileDescriptor.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[315/393] Compiling NIOPosix GetaddrinfoResolver.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[316/393] Compiling NIOPosix HappyEyeballs.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[317/393] Compiling NIOPosix NIOPosixSendableMetatype.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[318/393] Compiling NIOPosix NIOThreadPool.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[319/393] Compiling NIOPosix NonBlockingFileIO.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[320/393] Compiling NIOPosix PendingDatagramWritesManager.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[321/393] Compiling NIOPosix PendingWritesManager.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[322/393] Compiling NIOPosix PipeChannel.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[323/393] Compiling NIOPosix PipePair.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift:18:8: error: no such module 'Dispatch'
  16 | import CNIOPosix
  17 | import DequeModule
  18 | import Dispatch
     |        `- error: no such module 'Dispatch'
  19 | import NIOConcurrencyHelpers
  20 | import NIOCore
[323/393] Compiling cbb.cc
[324/393] Compiling cbs.cc
[325/393] Compiling ber.cc
[327/393] Compiling NIOEmbedded Embedded.swift
[328/393] Compiling NIOEmbedded AsyncTestingChannel.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingChannel.swift:731:11: error: cannot find type 'NIOAsyncTestingChannel' in scope
729 | // Synchronous options are never Sendable.
730 | @available(*, unavailable)
731 | extension NIOAsyncTestingChannel.SynchronousOptions: Sendable {}
    |           `- error: cannot find type 'NIOAsyncTestingChannel' in scope
732 |
[328/393] Compiling convert.cc
[328/393] Compiling buf.cc
[328/393] Compiling exponentiation.cc
[328/393] Compiling sqrt.cc
[328/393] Compiling div.cc
BUILD FAILURE 6.1 wasm