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 Citadel, reference 0.11.0 (d29285), with Swift 6.1 for Android on 23 Jun 2025 11:33:59 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/orlandos-nl/Citadel.git
Reference: 0.11.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/orlandos-nl/Citadel
 * tag               0.11.0     -> FETCH_HEAD
HEAD is now at d292854 Merge pull request #109 from nedithgar/main
Cloned https://github.com/orlandos-nl/Citadel.git
Revision (git rev-parse @):
d29285434900d98ce7d5781e9ac1c3a0b3fc9a14
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/orlandos-nl/Citadel.git at 0.11.0
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/orlandos-nl/Citadel.git
https://github.com/orlandos-nl/Citadel.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-nio-ssh",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.2",
            "upper_bound" : "0.4.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Joannis/swift-nio-ssh.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "bigint",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.2.0",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/attaswift/BigInt.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "colorizeswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/mtynior/ColorizeSwift.git"
    }
  ],
  "manifest_display_name" : "Citadel",
  "name" : "Citadel",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Citadel",
      "targets" : [
        "Citadel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CitadelServerExample",
      "targets" : [
        "CitadelServerExample"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CitadelTests",
      "module_type" : "SwiftTarget",
      "name" : "CitadelTests",
      "path" : "Tests/CitadelTests",
      "product_dependencies" : [
        "NIOSSH",
        "BigInt",
        "Logging"
      ],
      "sources" : [
        "Citadel2Tests.swift",
        "EndToEndTests.swift",
        "KeyTests.swift"
      ],
      "target_dependencies" : [
        "Citadel"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CitadelServerExample",
      "module_type" : "SwiftTarget",
      "name" : "CitadelServerExample",
      "path" : "Sources/CitadelServerExample",
      "product_dependencies" : [
        "ColorizeSwift"
      ],
      "product_memberships" : [
        "CitadelServerExample"
      ],
      "sources" : [
        "EchoShell/BasicCommands.swift",
        "EchoShell/EchoShell.swift",
        "EchoShell/Extensions.swift",
        "EchoShell/Terminal.swift",
        "HostKeyFile.swift",
        "Server.swift"
      ],
      "target_dependencies" : [
        "Citadel"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "Citadel",
      "module_type" : "SwiftTarget",
      "name" : "Citadel",
      "path" : "Sources/Citadel",
      "product_dependencies" : [
        "NIOSSH",
        "Crypto",
        "_CryptoExtras",
        "BigInt",
        "Logging"
      ],
      "product_memberships" : [
        "Citadel",
        "CitadelServerExample"
      ],
      "sources" : [
        "Algorithms/AES.swift",
        "Algorithms/DH-Helpers.swift",
        "Algorithms/DiffieHellmanGroup14Sha1.swift",
        "Algorithms/DiffieHellmanGroup14Sha256.swift",
        "Algorithms/RSA.swift",
        "BCrypt.swift",
        "ByteBufferHelpers.swift",
        "ChannelUnwrapper.swift",
        "Client.swift",
        "ClientSession.swift",
        "DirectTCPIP/Client/DirectTCPIP+Client.swift",
        "DirectTCPIP/Server/DirectTCPIP+Server.swift",
        "Errors.swift",
        "Exec/Client/ExecClient.swift",
        "Exec/Server/ExecDelegate.swift",
        "Exec/Server/ExecHandler.swift",
        "NIOGlueHandler.swift",
        "OpenSSHKey.swift",
        "SFTP/Client/SFTPClient.swift",
        "SFTP/Client/SFTPClientInboundHandler.swift",
        "SFTP/Client/SFTPFile.swift",
        "SFTP/SFTPBasicEnums.swift",
        "SFTP/SFTPFileFlags.swift",
        "SFTP/SFTPMessage.swift",
        "SFTP/SFTPMessageParser.swift",
        "SFTP/SFTPSerializer.swift",
        "SFTP/Server/SFTPServer.swift",
        "SFTP/Server/SFTPServerInboundHandler.swift",
        "SSHAuthenticationMethod.swift",
        "SSHCert.swift",
        "SSHConnectionPoolSettings.swift",
        "SSHKeyTypeDetection.swift",
        "Server.swift",
        "Shell/Server/ShellDelegate.swift",
        "TTY/Client/TTY.swift"
      ],
      "target_dependencies" : [
        "CCitadelBcrypt"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CCitadelBcrypt",
      "module_type" : "ClangTarget",
      "name" : "CCitadelBcrypt",
      "path" : "Sources/CCitadelBcrypt",
      "product_memberships" : [
        "Citadel",
        "CitadelServerExample"
      ],
      "sources" : [
        "bcrypt-kdf.c",
        "bcrypt.c",
        "blf.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:873b43b7be6289c04a5a3fd4b2c372c2a5abf90643451079297d3dc6dc0b7d36
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/mtynior/ColorizeSwift.git
Fetching https://github.com/Joannis/swift-nio-ssh.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/attaswift/BigInt.git
[1/291] Fetching colorizeswift
[77/3047] Fetching colorizeswift, swift-nio-ssh
[142/7854] Fetching colorizeswift, swift-nio-ssh, bigint
[4298/11690] Fetching colorizeswift, swift-nio-ssh, bigint, swift-log
[6507/27123] Fetching colorizeswift, swift-nio-ssh, bigint, swift-log, swift-crypto
Fetched https://github.com/Joannis/swift-nio-ssh.git from cache (0.45s)
[7865/24367] Fetching colorizeswift, bigint, swift-log, swift-crypto
Fetched https://github.com/mtynior/ColorizeSwift.git from cache (2.40s)
Fetched https://github.com/apple/swift-log.git from cache (2.41s)
Fetched https://github.com/attaswift/BigInt.git from cache (2.41s)
Fetched https://github.com/apple/swift-crypto.git from cache (2.46s)
Computing version for https://github.com/Joannis/swift-nio-ssh.git
Computed https://github.com/Joannis/swift-nio-ssh.git at 0.3.3 (3.10s)
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-atomics.git
[1/1797] Fetching swift-atomics
[1798/78136] Fetching swift-atomics, swift-nio
Fetched https://github.com/apple/swift-atomics.git from cache (0.64s)
[3054/76339] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (8.54s)
Computing version for https://github.com/mtynior/ColorizeSwift.git
Computed https://github.com/mtynior/ColorizeSwift.git at 1.7.0 (12.75s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.99s)
Computing version for https://github.com/attaswift/BigInt.git
Computed https://github.com/attaswift/BigInt.git at 5.6.0 (0.94s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 2.0.5 (1.07s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.89s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (1.50s)
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-collections.git
[1/4436] Fetching swift-system
[1244/21076] Fetching swift-system, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (0.72s)
[3661/16640] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.93s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (2.87s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (1.21s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
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/attaswift/BigInt.git
Working copy of https://github.com/attaswift/BigInt.git resolved at 5.6.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.83.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
Creating working copy for https://github.com/mtynior/ColorizeSwift.git
Working copy of https://github.com/mtynior/ColorizeSwift.git resolved at 1.7.0
Creating working copy for https://github.com/Joannis/swift-nio-ssh.git
Working copy of https://github.com/Joannis/swift-nio-ssh.git resolved at 0.3.3
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 2.0.5
Building for debugging...
[0/458] Write sources
/host/spi-builder-workspace/Sources/CCitadelBcrypt/bcrypt-kdf.c:44:9: warning: 'BCRYPT_WORDS' macro redefined [-Wmacro-redefined]
   44 | #define BCRYPT_WORDS 8
      |         ^
/host/spi-builder-workspace/Sources/CCitadelBcrypt/bcrypt.h:31:9: note: previous definition is here
   31 | #define BCRYPT_WORDS 6        /* Ciphertext words */
      |         ^
/host/spi-builder-workspace/Sources/CCitadelBcrypt/bcrypt-kdf.c:163:5: error: call to undeclared function 'getentropy'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
  163 |     getentropy(key, keylen);
      |     ^
1 warning and 1 error generated.
[8/458] Compiling CCitadelBcrypt bcrypt-kdf.c
[8/458] Compiling a_d2i_fp.c
[8/458] Compiling CCitadelBcrypt bcrypt.c
[8/458] Compiling a_bool.c
[8/458] Compiling a_bitstr.c
[8/458] Compiling a_dup.c
[8/458] Compiling CCitadelBcrypt blf.c
[8/458] Write swift-version-24593BA9C3E375BF.txt
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:873b43b7be6289c04a5a3fd4b2c372c2a5abf90643451079297d3dc6dc0b7d36
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/450] Write sources
[11/450] Compiling _AtomicsShims.c
[12/450] Compiling CNIOWindows WSAStartup.c
[13/450] Compiling CNIOWASI CNIOWASI.c
[14/450] Compiling CNIODarwin shim.c
[15/450] Compiling CNIOLinux liburing_shims.c
[16/450] Compiling CNIOLinux shim.c
[17/450] Write swift-version-24593BA9C3E375BF.txt
[18/450] Compiling CNIOWindows shim.c
[19/450] Compiling v3_skey.c
[20/450] Compiling v3_utl.c
[21/454] Compiling v3_purp.c
[22/461] Compiling CCryptoBoringSSLShims shims.c
[23/461] Compiling v3_prn.c
[25/498] Emitting module _NIODataStructures
[25/498] Compiling c-nioatomics.c
[26/516] Compiling c-atomics.c
[28/516] Compiling Atomics AtomicBool.swift
[29/516] Compiling Atomics AtomicInteger.swift
[30/517] Compiling Atomics OptionalRawRepresentable.swift
[31/517] Compiling Atomics RawRepresentable.swift
[32/517] Compiling Atomics IntegerConformances.swift
[33/517] Compiling Atomics PointerConformances.swift
[34/517] Compiling Atomics AtomicOptionalWrappable.swift
[35/517] Compiling Atomics AtomicReference.swift
[36/517] Compiling Logging LogHandler.swift
[37/517] Emitting module InternalCollectionsUtilities
[38/517] Compiling Atomics ManagedAtomic.swift
[39/517] Compiling Atomics ManagedAtomicLazyReference.swift
[40/517] Compiling Atomics Primitives.native.swift
[41/517] Compiling Atomics UnsafeAtomic.swift
[42/517] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[43/519] Emitting module _NIOBase64
[44/521] Compiling _NIOBase64 Base64.swift
[46/524] Compiling Atomics UnsafeAtomicLazyReference.swift
[47/526] Compiling _NIODataStructures PriorityQueue.swift
[48/526] Compiling _NIODataStructures Heap.swift
[49/526] Compiling _NIODataStructures _TinyArray.swift
[50/527] Compiling Atomics AtomicStorage.swift
[51/527] Compiling Atomics AtomicValue.swift
[52/527] Compiling Atomics AtomicMemoryOrderings.swift
[53/527] Compiling Atomics DoubleWord.swift
[55/527] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[57/528] Compiling Atomics Unmanaged extensions.swift
[58/528] Compiling BigInt String Conversion.swift
[62/530] Wrapping AST for _NIOBase64 for debugging
[63/530] Compiling v3_pmaps.c
[64/530] Wrapping AST for _NIODataStructures for debugging
[68/530] Compiling Atomics IntegerOperations.swift
[71/530] Wrapping AST for InternalCollectionsUtilities for debugging
[75/530] Compiling NIOConcurrencyHelpers lock.swift
[75/533] Compiling v3_pcia.c
[76/545] Compiling v3_pcons.c
[78/545] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[79/545] Compiling NIOConcurrencyHelpers NIOLock.swift
[80/545] Compiling NIOConcurrencyHelpers atomics.swift
[81/545] Emitting module NIOConcurrencyHelpers
[82/545] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[83/546] Compiling DequeModule _DequeBuffer.swift
[84/546] Compiling DequeModule _DequeBufferHeader.swift
[85/548] Compiling DequeModule Deque+CustomReflectable.swift
[86/548] Compiling DequeModule Deque+Descriptions.swift
[87/548] Compiling v3_pci.c
[88/548] Compiling v3_ocsp.c
[89/548] Wrapping AST for NIOConcurrencyHelpers for debugging
[90/548] Compiling v3_ncons.c
[91/548] Compiling v3_lib.c
[93/548] Compiling DequeModule _DequeSlot.swift
[94/548] Compiling DequeModule _UnsafeWrappedBuffer.swift
[95/548] Compiling BigInt Subtraction.swift
[96/548] Compiling BigInt Words and Bits.swift
[96/548] Compiling v3_int.c
[97/548] Compiling v3_info.c
[98/548] Compiling v3_ia5.c
[100/548] Compiling DequeModule Deque+Testing.swift
[101/548] Compiling DequeModule Deque._Storage.swift
[102/548] Compiling DequeModule Deque+Equatable.swift
[103/548] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[104/548] Compiling DequeModule Deque._UnsafeHandle.swift
[105/548] Compiling DequeModule Deque.swift
[106/548] Compiling DequeModule Deque+Extras.swift
[107/548] Compiling DequeModule Deque+Hashable.swift
[107/548] Compiling v3_genn.c
[109/548] Compiling DequeModule Deque+Codable.swift
[110/548] Compiling DequeModule Deque+Collection.swift
[110/548] Compiling v3_extku.c
[111/548] Compiling v3_enum.c
[113/548] Emitting module DequeModule
[116/549] Emitting module Atomics
[123/550] Compiling v3_crld.c
[125/550] Compiling v3_cpols.c
[125/550] Compiling v3_conf.c
[127/550] Wrapping AST for DequeModule for debugging
[128/550] Compiling v3_bitst.c
[129/550] Compiling v3_bcons.c
[130/550] Compiling v3_akeya.c
[131/550] Compiling v3_alt.c
[133/550] Compiling Logging MetadataProvider.swift
[134/550] Compiling Logging Locks.swift
[135/550] Emitting module Logging
[135/550] Compiling v3_akey.c
[136/550] Compiling pcy_tree.c
[137/576] Compiling pcy_node.c
[138/610] Compiling pcy_lib.c
[140/610] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[141/610] Compiling NIOCore BSDSocketAPI.swift
[142/610] Compiling NIOCore ByteBuffer-aux.swift
[142/610] Compiling pcy_map.c
[144/610] Emitting module BigInt
[145/610] Compiling NIOCore AddressedEnvelope.swift
[146/610] Compiling NIOCore AsyncAwaitSupport.swift
[147/610] Compiling NIOCore AsyncChannel.swift
[147/610] Compiling pcy_data.c
[149/610] Compiling NIOCore NIOAsyncSequenceProducer.swift
[150/610] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[151/610] Compiling NIOCore NIOAsyncWriter.swift
[152/610] Compiling NIOCore AsyncChannelHandler.swift
[153/610] Compiling NIOCore AsyncChannelInboundStream.swift
[154/610] Compiling NIOCore AsyncChannelOutboundWriter.swift
[154/610] Compiling x_x509a.c
[157/611] Compiling Logging Logging.swift
[157/612] Compiling x_val.c
[159/612] Emitting module ColorizeSwift
[160/612] Compiling ColorizeSwift ColorizeSwift.swift
[160/613] Compiling pcy_cache.c
[162/613] Compiling x_x509.c
[163/613] Compiling x_spki.c
[165/613] Compiling x_sig.c
[166/613] Compiling x_pkey.c
[167/613] Compiling x_pubkey.c
[168/613] Wrapping AST for Logging for debugging
[169/613] Compiling x_req.c
[170/613] Wrapping AST for ColorizeSwift for debugging
[171/613] Compiling x_info.c
[172/613] Compiling x_attrib.c
[173/613] Compiling x_name.c
[174/613] Compiling x_exten.c
[175/613] Compiling x_crl.c
[176/613] Compiling x509cset.c
[177/613] Compiling x509_vpm.c
[178/613] Compiling x_algor.c
[179/613] Compiling x_all.c
[180/613] Compiling x509rset.c
[181/613] Compiling x509name.c
[182/613] Compiling x509spki.c
[183/613] Compiling x509_trs.c
[184/613] Compiling x509_req.c
[185/613] Compiling x509_txt.c
[186/613] Compiling x509_ext.c
[188/613] Compiling NIOCore MulticastChannel.swift
[189/613] Compiling NIOCore NIOAny.swift
[190/613] Compiling NIOCore NIOCloseOnErrorHandler.swift
[191/613] Compiling NIOCore NIOLoopBound.swift
[192/613] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[193/613] Compiling NIOCore NIOScheduledCallback.swift
[194/613] Compiling NIOCore NIOSendable.swift
[195/613] Compiling NIOCore RecvByteBufferAllocator.swift
[195/613] Compiling x509_set.c
[196/621] Compiling x509_v3.c
[197/621] Compiling x509_obj.c
[198/621] Compiling x509_def.c
[199/621] Compiling x509_att.c
[200/621] Compiling x509_lu.c
[201/621] Compiling x509_vfy.c
[202/621] Compiling t_x509a.c
[203/621] Compiling x509_d2.c
[204/621] Compiling x509_cmp.c
[206/621] Compiling NIOCore IO.swift
[207/621] Compiling NIOCore IOData.swift
[208/621] Compiling NIOCore IPProtocol.swift
[209/621] Compiling NIOCore IntegerBitPacking.swift
[210/621] Compiling NIOCore IntegerTypes.swift
[211/621] Compiling NIOCore Interfaces.swift
[212/621] Compiling NIOCore Linux.swift
[213/621] Compiling NIOCore MarkedCircularBuffer.swift
[213/621] Compiling t_req.c
[214/621] Compiling x509.c
[215/621] Compiling t_x509.c
[216/621] Compiling i2d_pr.c
[217/621] Compiling name_print.c
[218/621] Compiling rsa_pss.c
[219/621] Compiling by_file.c
[220/621] Compiling t_crl.c
[221/621] Compiling algorithm.c
[222/621] Compiling by_dir.c
[223/621] Compiling a_digest.c
[224/621] Compiling voprf.c
[225/621] Compiling thread_win.c
[226/621] Compiling a_verify.c
[227/621] Compiling thread_pthread.c
[228/621] Compiling a_sign.c
[229/621] Compiling thread.c
[230/621] Compiling trust_token.c
[231/621] Compiling pmbtoken.c
[232/621] Compiling thread_none.c
[233/621] Compiling asn1_gen.c
[234/621] Compiling rsa_print.c
[235/621] Compiling refcount_c11.c
[237/621] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[238/621] Compiling NIOCore EventLoopFuture+Deprecated.swift
[239/621] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[240/621] Compiling NIOCore EventLoopFuture.swift
[241/621] Compiling NIOCore FileDescriptor.swift
[242/621] Compiling NIOCore FileHandle.swift
[243/621] Compiling NIOCore FileRegion.swift
[244/621] Compiling NIOCore GlobalSingletons.swift
[244/621] Compiling siphash.c
[245/621] Compiling windows.c
[246/621] Compiling stack.c
[247/621] Compiling rand_extra.c
[248/621] Compiling refcount_lock.c
[249/621] Compiling rc4.c
[250/621] Compiling fuchsia.c
[251/621] Compiling rsa_asn1.c
[252/621] Compiling deterministic.c
[253/621] Compiling passive.c
[254/621] Compiling forkunsafe.c
[255/621] Compiling poly1305_arm_asm.S
[256/621] Compiling poly1305_vec.c
[257/621] Compiling pool.c
[258/621] Compiling poly1305.c
[259/621] Compiling poly1305_arm.c
[260/621] Compiling pkcs7.c
[261/621] Compiling pkcs8.c
[262/621] Compiling pem_xaux.c
[263/621] Compiling pkcs7_x509.c
[264/621] Compiling p5_pbev2.c
[265/621] Compiling pkcs8_x509.c
[267/621] Compiling NIOCore CircularBuffer.swift
[268/621] Compiling NIOCore Codec.swift
[269/621] Compiling NIOCore ConvenienceOptionSupport.swift
[270/621] Compiling NIOCore DeadChannel.swift
[271/621] Compiling NIOCore DispatchQueue+WithFuture.swift
[272/621] Compiling NIOCore EventLoop+Deprecated.swift
[273/621] Compiling NIOCore EventLoop+SerialExecutor.swift
[274/621] Compiling NIOCore EventLoop.swift
[274/621] Compiling pem_x509.c
[275/621] Compiling pem_pkey.c
[276/621] Compiling pem_oth.c
[277/621] Compiling obj_xref.c
[278/621] Compiling pem_info.c
[279/621] Compiling pem_pk8.c
[280/621] Compiling poly_rq_mul.S
[281/621] Compiling mem.c
[282/621] Compiling obj.c
[283/621] Compiling lhash.c
[284/621] Compiling pem_all.c
[285/621] Compiling x86_64-mont5.linux.x86_64.S
[286/621] Compiling x86_64-mont5.mac.x86_64.S
[287/621] Compiling pem_lib.c
[288/621] Compiling hkdf.c
[289/621] Compiling hpke.c
[290/621] Compiling x86_64-mont.mac.x86_64.S
[291/621] Compiling x86-mont.windows.x86.S
[292/621] Compiling x86_64-mont.linux.x86_64.S
[293/621] Compiling vpaes-x86_64.mac.x86_64.S
[294/621] Compiling x86-mont.linux.x86.S
[295/621] Compiling vpaes-x86_64.linux.x86_64.S
[296/621] Compiling vpaes-x86.windows.x86.S
[297/621] Compiling vpaes-armv8.ios.aarch64.S
[298/621] Compiling vpaes-x86.linux.x86.S
[298/621] Compiling vpaes-armv7.linux.arm.S
[300/621] Compiling vpaes-armv8.linux.aarch64.S
[301/621] Compiling vpaes-armv7.ios.arm.S
[302/621] Compiling kdf.c
[303/621] Compiling sha512-x86_64.linux.x86_64.S
[304/621] Compiling sha512-x86_64.mac.x86_64.S
[305/621] Compiling sha512-armv8.linux.aarch64.S
[306/621] Compiling sha512-armv8.ios.aarch64.S
[307/621] Compiling sha512-armv4.ios.arm.S
[308/621] Compiling sha512-armv4.linux.arm.S
[309/621] Compiling sha512-586.linux.x86.S
[310/621] Compiling sha512-586.windows.x86.S
[311/621] Compiling sha256-x86_64.mac.x86_64.S
[312/621] Compiling sha256-x86_64.linux.x86_64.S
[313/621] Compiling sha256-armv4.linux.arm.S
[314/621] Compiling sha256-armv8.ios.aarch64.S
[315/621] Compiling sha256-armv4.ios.arm.S
[316/621] Compiling sha256-armv8.linux.aarch64.S
[317/621] Compiling sha256-586.linux.x86.S
[318/621] Compiling sha256-586.windows.x86.S
[319/621] Compiling sha1-x86_64.mac.x86_64.S
[320/621] Compiling sha1-x86_64.linux.x86_64.S
[321/621] Compiling sha1-armv8.ios.aarch64.S
[322/621] Compiling sha1-armv4-large.linux.arm.S
[323/621] Compiling sha1-armv8.linux.aarch64.S
[324/621] Compiling sha1-armv4-large.ios.arm.S
[325/621] Compiling sha1-586.windows.x86.S
[326/621] Compiling sha1-586.linux.x86.S
[327/621] Compiling sha1-altivec.c
[328/621] Compiling self_check.c
[329/621] Compiling sha256.c
[330/621] Compiling rsaz-avx2.mac.x86_64.S
[331/621] Compiling fips.c
[331/621] Compiling sha1.c
[333/621] Compiling sha512.c
[334/621] Compiling rsaz-avx2.linux.x86_64.S
[335/621] Compiling rdrand-x86_64.mac.x86_64.S
[336/621] Compiling rdrand-x86_64.linux.x86_64.S
[338/621] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[339/621] Compiling NIOCore SocketAddresses.swift
[340/621] Compiling NIOCore SocketOptionProvider.swift
[341/621] Compiling NIOCore SystemCallHelpers.swift
[342/621] Compiling NIOCore TimeAmount+Duration.swift
[343/621] Compiling NIOCore TypeAssistedChannelHandler.swift
[344/621] Compiling NIOCore UniversalBootstrapSupport.swift
[345/621] Compiling NIOCore Utilities.swift
[345/621] Compiling blinding.c
[346/621] Compiling rsa.c
[347/621] Compiling hrss.c
[348/621] Compiling padding.c
[349/621] Compiling urandom.c
[350/621] Compiling rand.c
[350/621] Compiling fork_detect.c
[352/621] Compiling rsa_impl.c
[353/621] Compiling ctrdrbg.c
[354/621] Compiling p256_beeu-x86_64-asm.mac.x86_64.S
[355/621] Compiling p256_beeu-x86_64-asm.linux.x86_64.S
[356/621] Compiling p256-x86_64-asm.linux.x86_64.S
[357/621] Compiling p256-x86_64-asm.mac.x86_64.S
[358/621] Compiling polyval.c
[359/621] Compiling gcm_nohw.c
[360/621] Compiling cfb.c
[361/621] Compiling cbc.c
[362/621] Compiling gcm.c
[363/621] Compiling ctr.c
[364/621] Compiling md5-x86_64.mac.x86_64.S
[365/621] Compiling md5-586.windows.x86.S
[366/621] Compiling md5-x86_64.linux.x86_64.S
[367/621] Compiling ofb.c
[368/621] Compiling md5.c
[369/621] Compiling md5-586.linux.x86.S
[370/621] Compiling ghashv8-armx64.ios.aarch64.S
[371/621] Compiling ghashv8-armx32.linux.arm.S
[372/621] Compiling ghash-x86_64.mac.x86_64.S
[373/621] Compiling ghashv8-armx32.ios.arm.S
[374/621] Compiling ghashv8-armx64.linux.aarch64.S
[375/621] Compiling hmac.c
[376/621] Compiling ghash-x86_64.linux.x86_64.S
[377/621] Compiling md4.c
[378/621] Compiling ghash-x86.windows.x86.S
[379/621] Compiling ghash-ssse3-x86_64.mac.x86_64.S
[380/621] Compiling ghash-ssse3-x86.windows.x86.S
[381/621] Compiling ghash-ssse3-x86_64.linux.x86_64.S
[382/621] Compiling ghash-x86.linux.x86.S
[383/621] Compiling ghash-neon-armv8.ios.aarch64.S
[383/621] Compiling ghash-ssse3-x86.linux.x86.S
[394/621] Compiling ghash-armv4.ios.arm.S
[395/621] Compiling fips_shared_support.c
[396/621] Compiling ghash-armv4.linux.arm.S
[397/621] Compiling ghash-neon-armv8.linux.aarch64.S
[398/621] Compiling util.c
[399/621] Compiling wnaf.c
[400/621] Compiling ecdsa.c
[401/621] Compiling ecdh.c
[402/621] Compiling simple.c
[403/621] Compiling simple_mul.c
[403/621] Compiling p256-x86_64.c
[405/621] Compiling scalar.c
[406/621] Compiling p256.c
[407/621] Compiling oct.c
[408/621] Compiling ec_key.c
[408/621] Compiling felem.c
[408/621] Compiling p224-64.c
[411/621] Compiling digests.c
[412/621] Compiling ec_montgomery.c
[413/621] Compiling check.c
[414/621] Compiling co-586.windows.x86.S
[415/621] Compiling ec.c
[416/621] Compiling co-586.linux.x86.S
[417/621] Compiling dh.c
[418/621] Compiling digest.c
[419/621] Compiling aead.c
[420/621] Compiling bsaes-armv7.linux.arm.S
[421/621] Compiling bsaes-armv7.ios.arm.S
[422/621] Compiling cipher.c
[423/621] Compiling e_aes.c
[424/621] Compiling rsaz_exp.c
[425/621] Compiling prime.c
[426/621] Compiling sqrt.c
[427/621] Compiling shift.c
[428/621] Compiling random.c
[429/621] Compiling montgomery_inv.c
[430/621] Compiling mul.c
[431/621] Compiling jacobi.c
[432/621] Compiling gcd_extra.c
[433/621] Compiling montgomery.c
[434/621] Compiling div_extra.c
[435/621] Compiling gcd.c
[436/621] Compiling div.c
[437/621] Compiling exponentiation.c
[438/621] Compiling bytes.c
[439/621] Compiling generic.c
[440/621] Compiling cmp.c
[441/621] Compiling ctx.c
[442/621] Compiling x86_64-gcc.c
[443/621] Compiling bn-586.windows.x86.S
[444/621] Compiling bn.c
[445/621] Compiling bn-586.linux.x86.S
[446/621] Compiling add.c
[447/621] Compiling armv8-mont.linux.aarch64.S
[448/621] Compiling armv4-mont.linux.arm.S
[449/621] Compiling armv8-mont.ios.aarch64.S
[450/621] Compiling aesv8-armx64.linux.aarch64.S
[451/621] Compiling armv4-mont.ios.arm.S
[452/621] Compiling aesv8-armx32.linux.arm.S
[453/621] Compiling aesv8-armx64.ios.aarch64.S
[454/621] Compiling aesni-x86.windows.x86.S
[455/621] Compiling aesni-x86_64.mac.x86_64.S
[456/621] Compiling aesv8-armx32.ios.arm.S
[457/621] Compiling aesni-x86_64.linux.x86_64.S
[458/621] Compiling aesni-x86.linux.x86.S
[459/621] Compiling aesni-gcm-x86_64.mac.x86_64.S
[460/621] Compiling aesni-gcm-x86_64.linux.x86_64.S
[461/621] Compiling mode_wrappers.c
[462/621] Compiling scrypt.c
[463/621] Compiling aes.c
[464/621] Compiling key_wrap.c
[465/621] Compiling ex_data.c
[466/621] Compiling sign.c
[467/621] Compiling aes_nohw.c
[468/621] Compiling pbkdf.c
[469/621] Compiling p_x25519.c
[469/621] Compiling print.c
[471/621] Compiling p_x25519_asn1.c
[472/621] Compiling p_rsa_asn1.c
[473/621] Compiling p_ec_asn1.c
[473/621] Compiling p_rsa.c
[475/621] Compiling p_ed25519.c
[476/621] Compiling p_ed25519_asn1.c
[477/621] Compiling err_data.c
[478/621] Compiling p_ec.c
[479/621] Compiling p_dsa_asn1.c
[480/621] Compiling digestsign.c
[481/621] Compiling evp_ctx.c
[482/621] Compiling evp.c
[483/621] Compiling evp_asn1.c
[484/621] Compiling engine.c
[485/621] Compiling ecdsa_asn1.c
[485/621] Compiling err.c
[487/621] Compiling ecdh_extra.c
[488/621] Compiling ec_derive.c
[489/621] Compiling hash_to_curve.c
[490/621] Compiling params.c
[491/621] Compiling dsa_asn1.c
[492/621] Compiling digest_extra.c
[493/621] Compiling dsa.c
[494/621] Compiling dh_asn1.c
[495/621] Compiling ec_asn1.c
[496/621] Compiling cpu_ppc64le.c
[497/621] Compiling cpu_intel.c
[498/621] Compiling spake25519.c
[499/621] Compiling crypto.c
[500/621] Compiling x25519-asm-arm.S
[501/621] Compiling cpu_arm_linux.c
[502/621] Compiling des.c
[503/621] Compiling cpu_arm.c
[504/621] Compiling cpu_aarch64_win.c
[505/621] Compiling cpu_aarch64_linux.c
[506/621] Compiling cpu_aarch64_apple.c
[507/621] Compiling cpu_aarch64_fuchsia.c
[508/621] Compiling e_tls.c
[508/621] Compiling conf.c
[510/621] Compiling tls_cbc.c
[511/621] Compiling cmac.c
[512/621] Compiling e_rc4.c
[513/621] Compiling e_chacha20poly1305.c
[514/621] Compiling curve25519.c
[515/621] Compiling e_des.c
[515/621] Compiling e_null.c
[515/621] Compiling e_aesgcmsiv.c
[518/621] Compiling e_rc2.c
[519/621] Compiling derive_key.c
[520/621] Compiling cipher_extra.c
[521/621] Compiling e_aesctrhmac.c
[522/621] Compiling e_aesccm.c
[523/621] Compiling chacha.c
[524/621] Compiling chacha20_poly1305_x86_64.mac.x86_64.S
[525/621] Compiling chacha20_poly1305_x86_64.linux.x86_64.S
[526/621] Compiling chacha-x86.windows.x86.S
[527/621] Compiling aes128gcmsiv-x86_64.mac.x86_64.S
[527/621] Compiling chacha-x86_64.mac.x86_64.S
[527/621] Compiling chacha-x86_64.linux.x86_64.S
[530/621] Compiling aes128gcmsiv-x86_64.linux.x86_64.S
[531/621] Compiling chacha-x86.linux.x86.S
[533/621] Compiling NIOCore ByteBuffer-multi-int.swift
[534/621] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[535/621] Compiling NIOCore ByteBuffer-views.swift
[536/621] Compiling NIOCore Channel.swift
[537/621] Compiling NIOCore ChannelHandler.swift
[538/621] Compiling NIOCore ChannelHandlers.swift
[539/621] Compiling NIOCore ChannelInvoker.swift
[540/621] Compiling NIOCore ChannelOption.swift
[541/621] Compiling NIOCore ChannelPipeline.swift
[545/621] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[546/621] Compiling NIOCore ByteBuffer-conversions.swift
[547/621] Compiling NIOCore ByteBuffer-core.swift
[548/621] Compiling NIOCore ByteBuffer-hex.swift
[549/621] Compiling NIOCore ByteBuffer-int.swift
[550/621] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[550/621] Compiling chacha-armv4.ios.arm.S
[550/621] Compiling chacha-armv4.linux.arm.S
[550/621] Compiling chacha-armv8.ios.aarch64.S
[553/621] Compiling unicode.c
[554/621] Compiling chacha-armv8.linux.aarch64.S
[555/621] Compiling cbs.c
[556/621] Compiling asn1_compat.c
[557/621] Compiling cbb.c
[558/621] Compiling bn_asn1.c
[559/621] Compiling buf.c
[560/621] Compiling ber.c
[561/621] Compiling blake2.c
[562/621] Compiling convert.c
[563/621] Compiling hexdump.c
[564/621] Compiling socket_helper.c
[565/621] Compiling printf.c
[566/621] Compiling socket.c
[567/621] Compiling pair.c
[568/621] Compiling file.c
[569/621] Compiling fd.c
[570/621] Compiling connect.c
[571/621] Compiling bio_mem.c
[572/621] Compiling base64.c
[573/621] Compiling time_support.c
[574/621] Compiling bio.c
[575/621] Compiling tasn_utl.c
[576/621] Compiling tasn_fre.c
[577/621] Compiling tasn_typ.c
[578/621] Compiling tasn_new.c
[579/621] Compiling f_int.c
[580/621] Compiling f_string.c
[581/621] Compiling asn_pack.c
[582/621] Compiling tasn_enc.c
[583/621] Compiling tasn_dec.c
[584/621] Compiling asn1_par.c
[585/621] Compiling a_type.c
[586/621] Compiling a_utctm.c
[587/621] Compiling asn1_lib.c
[588/621] Compiling a_utf8.c
[589/621] Compiling a_time.c
[590/621] Compiling a_print.c
[591/621] Compiling a_strex.c
[592/621] Compiling a_strnid.c
[593/621] Compiling a_mbstr.c
[594/621] Compiling a_octet.c
[595/621] Compiling a_object.c
[596/621] Compiling a_bool.c
[597/621] Compiling a_i2d_fp.c
[598/621] Compiling a_int.c
[599/621] Compiling a_gentm.c
[600/621] Compiling a_d2i_fp.c
[601/621] Compiling a_dup.c
[602/621] Compiling CCitadelBcrypt bcrypt.c
[603/621] Compiling CCitadelBcrypt blf.c
/host/spi-builder-workspace/Sources/CCitadelBcrypt/bcrypt-kdf.c:44:9: warning: 'BCRYPT_WORDS' macro redefined [-Wmacro-redefined]
   44 | #define BCRYPT_WORDS 8
      |         ^
/host/spi-builder-workspace/Sources/CCitadelBcrypt/bcrypt.h:31:9: note: previous definition is here
   31 | #define BCRYPT_WORDS 6        /* Ciphertext words */
      |         ^
/host/spi-builder-workspace/Sources/CCitadelBcrypt/bcrypt-kdf.c:163:5: error: call to undeclared function 'getentropy'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
  163 |     getentropy(key, keylen);
      |     ^
1 warning and 1 error generated.
[604/621] Compiling CCitadelBcrypt bcrypt-kdf.c
[604/621] Compiling a_bitstr.c
[604/621] Wrapping AST for Atomics for debugging
[604/621] Wrapping AST for BigInt for debugging
BUILD FAILURE 6.1 android