Build Information
Successful build of mysql-nio, reference main (853b43
), with Swift 6.1 for Android on 1 Sep 2025 09:48:41 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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: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
Build Log
========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vapor/mysql-nio.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/vapor/mysql-nio
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 853b434 Finally make non-TLS connections work with modern MySQL (#114)
Cloned https://github.com/vapor/mysql-nio.git
Revision (git rev-parse @):
853b43413941a7fc0cfe44ef0ae81b6dd049f8e5
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/vapor/mysql-nio.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/vapor/mysql-nio.git
https://github.com/vapor/mysql-nio.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-algorithms.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-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "swift-nio-ssl",
"requirement" : {
"range" : [
{
"lower_bound" : "2.14.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio-ssl.git"
}
],
"manifest_display_name" : "mysql-nio",
"name" : "mysql-nio",
"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" : "MySQLNIO",
"targets" : [
"MySQLNIO"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MySQLNIOTests",
"module_type" : "SwiftTarget",
"name" : "MySQLNIOTests",
"path" : "Tests/MySQLNIOTests",
"sources" : [
"MySQLNIOTests.swift",
"Utilities.swift"
],
"target_dependencies" : [
"MySQLNIO"
],
"type" : "test"
},
{
"c99name" : "MySQLNIO",
"module_type" : "SwiftTarget",
"name" : "MySQLNIO",
"path" : "Sources/MySQLNIO",
"product_dependencies" : [
"Algorithms",
"_CryptoExtras",
"Crypto",
"Logging",
"NIO",
"NIOSSL"
],
"product_memberships" : [
"MySQLNIO"
],
"sources" : [
"Exports.swift",
"MySQLConnection.swift",
"MySQLConnectionHandler.swift",
"MySQLData.swift",
"MySQLDataConvertible.swift",
"MySQLDatabase.swift",
"MySQLError.swift",
"MySQLQueryCommand.swift",
"MySQLRow.swift",
"MySQLSimpleQueryCommand.swift",
"MySQLTime.swift",
"Packet/MySQLPacket.swift",
"Packet/MySQLPacketDecoder.swift",
"Packet/MySQLPacketEncoder.swift",
"Packet/MySQLPacketSequence.swift",
"Protocol/MySQLProtocol+BinaryResultSetRow.swift",
"Protocol/MySQLProtocol+COM_QUERY.swift",
"Protocol/MySQLProtocol+COM_QUERY_Response.swift",
"Protocol/MySQLProtocol+COM_QUIT.swift",
"Protocol/MySQLProtocol+COM_STMT_CLOSE.swift",
"Protocol/MySQLProtocol+COM_STMT_EXECUTE.swift",
"Protocol/MySQLProtocol+COM_STMT_PREPARE.swift",
"Protocol/MySQLProtocol+COM_STMT_PREPARE_OK.swift",
"Protocol/MySQLProtocol+CapabilityFlags.swift",
"Protocol/MySQLProtocol+CharacterSet.swift",
"Protocol/MySQLProtocol+ColumnDefinition41.swift",
"Protocol/MySQLProtocol+ColumnFlags.swift",
"Protocol/MySQLProtocol+DataType.swift",
"Protocol/MySQLProtocol+ERR_Packet.swift",
"Protocol/MySQLProtocol+ErrorCode.swift",
"Protocol/MySQLProtocol+HandshakeResponse41.swift",
"Protocol/MySQLProtocol+HandshakeV10.swift",
"Protocol/MySQLProtocol+NullBitmap.swift",
"Protocol/MySQLProtocol+OK_Packet.swift",
"Protocol/MySQLProtocol+SSLRequest.swift",
"Protocol/MySQLProtocol+StatusFlags.swift",
"Protocol/MySQLProtocol+TextResultSetRow.swift",
"Protocol/MySQLProtocol.swift",
"Utilities/CryptoUtils.swift",
"Utilities/NIOUtils.swift"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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: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:8106a39f56f5bb7aad9f0d9a94f1e5362f9a40b692f7bc17efe17b7b91dc65fc
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-algorithms.git
[1/3897] Fetching swift-log
[1638/9865] Fetching swift-log, swift-algorithms
[1992/26228] Fetching swift-log, swift-algorithms, swift-crypto
[5301/41303] Fetching swift-log, swift-algorithms, swift-crypto, swift-nio-ssl
[12344/119249] Fetching swift-log, swift-algorithms, swift-crypto, swift-nio-ssl, swift-nio
Fetched https://github.com/apple/swift-algorithms.git from cache (0.97s)
[8249/113281] Fetching swift-log, swift-crypto, swift-nio-ssl, swift-nio
Fetched https://github.com/apple/swift-nio-ssl.git from cache (4.15s)
Fetched https://github.com/apple/swift-crypto.git from cache (4.17s)
[60019/81843] Fetching swift-log, swift-nio
Fetched https://github.com/apple/swift-log.git from cache (9.10s)
Fetched https://github.com/apple/swift-nio.git from cache (9.20s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (11.44s)
Fetching https://github.com/apple/swift-numerics.git
[1/6348] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.47s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.0 (1.01s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.4 (0.52s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.33.0 (0.78s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.86.0 (0.95s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-system.git
[1/1808] Fetching swift-atomics
[472/6749] Fetching swift-atomics, swift-system
[4047/24143] Fetching swift-atomics, swift-system, swift-collections
Fetched https://github.com/apple/swift-atomics.git from cache (2.81s)
Fetched https://github.com/apple/swift-system.git from cache (2.81s)
Fetched https://github.com/apple/swift-collections.git from cache (2.84s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (6.01s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.2 (0.65s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.1 (0.79s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.15.0 (1.96s)
Fetching https://github.com/apple/swift-asn1.git
[1/1629] Fetching swift-asn1
Fetched https://github.com/apple/swift-asn1.git from cache (0.28s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.4.0 (1.01s)
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.0
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.4
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.86.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.1.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.1
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.33.0
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.2
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.4.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
Building for debugging...
[0/800] Write sources
[10/800] Compiling _NumericsShims _NumericsShims.c
[11/800] Write sources
[20/800] Compiling _AtomicsShims.c
[21/800] Compiling CNIOWindows shim.c
[22/800] Compiling CNIOWindows WSAStartup.c
[23/800] Compiling CNIOWASI CNIOWASI.c
[24/800] Compiling CNIOPosix event_loop_id.c
[25/800] Compiling CNIOLinux liburing_shims.c
[26/800] Compiling CNIODarwin shim.c
[27/800] Compiling CNIOLinux shim.c
[28/800] Write swift-version-24593BA9C3E375BF.txt
[29/800] Compiling fiat_p256_adx_sqr.S
[30/800] Compiling fiat_p256_adx_mul.S
[31/806] Compiling aes.cc
[32/806] Compiling a_d2i_fp.cc
[32/806] Compiling a_dup.cc
[34/806] Compiling CNIOBoringSSLShims shims.c
[36/853] Emitting module _NIOBase64
[36/853] Compiling a_bool.cc
[37/853] Compiling fiat_curve25519_adx_square.S
[38/853] Compiling a_bitstr.cc
[39/853] Compiling fiat_curve25519_adx_mul.S
[41/853] Emitting module Logging
[41/853] Compiling tls_record.cc
[42/853] Compiling tls_method.cc
[44/853] Compiling RealModule Float80+Real.swift
[45/854] Emitting module InternalCollectionsUtilities
[46/854] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[47/854] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[48/855] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[49/855] Compiling InternalCollectionsUtilities Debugging.swift
[50/855] Compiling InternalCollectionsUtilities Integer rank.swift
[51/855] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[52/855] Compiling InternalCollectionsUtilities _SortedCollection.swift
[55/855] Compiling InternalCollectionsUtilities Descriptions.swift
[56/855] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[57/855] Compiling RealModule Real.swift
[58/855] Compiling RealModule RealFunctions.swift
[59/855] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[60/855] Compiling _NIOBase64 Base64.swift
[61/857] Compiling RealModule Float16+Real.swift
[64/857] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[65/857] Compiling InternalCollectionsUtilities UInt+reversed.swift
[68/858] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[70/858] Compiling _NIODataStructures PriorityQueue.swift
[71/858] Compiling _NIODataStructures _TinyArray.swift
[72/858] Compiling SwiftASN1 TimeUtilities.swift
[73/858] Compiling SwiftASN1 UTCTime.swift
[76/858] Emitting module RealModule
[79/858] Compiling _NIODataStructures Heap.swift
[80/858] Emitting module _NIODataStructures
[81/859] Compiling RealModule RelaxedArithmetic.swift
[85/860] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[87/866] Compiling Algorithms Compacted.swift
[88/866] Compiling Algorithms Cycle.swift
[89/866] Compiling Algorithms EitherSequence.swift
[89/886] Compiling tls13_enc.cc
[90/886] Compiling tls13_server.cc
[92/901] Compiling Algorithms Reductions.swift
[93/901] Compiling Algorithms Rotate.swift
[94/901] Emitting module SwiftASN1
[95/901] Compiling DequeModule _DequeBuffer.swift
[96/901] Compiling DequeModule _DequeBufferHeader.swift
[97/903] Compiling DequeModule Deque+Equatable.swift
[98/903] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[99/903] Compiling DequeModule Deque+CustomReflectable.swift
[100/903] Compiling DequeModule Deque+Descriptions.swift
[101/903] Compiling DequeModule Deque+Extras.swift
[102/903] Compiling DequeModule Deque+Hashable.swift
[103/903] Compiling Algorithms Split.swift
[104/903] Compiling Algorithms Stride.swift
[105/903] Compiling Algorithms Suffix.swift
[106/906] Compiling DequeModule _UnsafeWrappedBuffer.swift
[109/906] Compiling Logging Locks.swift
[110/906] Compiling Logging MetadataProvider.swift
[111/906] Compiling Logging LogHandler.swift
[112/906] Compiling Logging Logging.swift
[113/907] Compiling DequeModule Deque+Testing.swift
[114/907] Compiling DequeModule Deque._Storage.swift
[117/907] Compiling DequeModule Deque._UnsafeHandle.swift
[118/907] Compiling DequeModule Deque.swift
[119/907] Compiling DequeModule _DequeSlot.swift
[124/908] Compiling Algorithms Partition.swift
[125/908] Compiling Algorithms Permutations.swift
[126/908] Compiling Algorithms Product.swift
[131/908] Compiling tls13_client.cc
[134/908] Compiling Algorithms Trim.swift
[135/908] Compiling Algorithms Unique.swift
[136/908] Compiling Algorithms Windows.swift
[137/908] Compiling DequeModule Deque+Codable.swift
[138/908] Compiling DequeModule Deque+Collection.swift
[146/908] Compiling tls13_both.cc
[148/908] Emitting module DequeModule
[148/909] Compiling t1_enc.cc
[154/909] Compiling ssl_x509.cc
[155/909] Compiling ssl_versions.cc
[156/909] Compiling ssl_stat.cc
[157/909] Compiling ssl_transcript.cc
[159/909] Emitting module Algorithms
[160/910] Compiling ssl_privkey.cc
[161/910] Compiling ssl_session.cc
[162/910] Compiling ssl_file.cc
[163/910] Compiling ssl_lib.cc
[164/910] Compiling ssl_key_share.cc
[165/910] Compiling ssl_cipher.cc
[166/910] Compiling ssl_credential.cc
[167/910] Compiling ssl_cert.cc
[168/910] Compiling ssl_buffer.cc
[169/910] Compiling ssl_asn1.cc
[170/910] Compiling ssl_aead_ctx.cc
[171/910] Compiling s3_pkt.cc
[172/910] Compiling s3_lib.cc
[173/910] Compiling s3_both.cc
[174/910] Compiling handshake_server.cc
[175/910] Compiling handshake.cc
[176/910] Compiling handshake_client.cc
[177/910] Compiling handoff.cc
[178/910] Compiling encrypted_client_hello.cc
[179/910] Compiling dtls_record.cc
[180/910] Compiling md5-x86_64-linux.S
[181/910] Compiling md5-x86_64-apple.S
[182/910] Compiling extensions.cc
[183/910] Compiling dtls_method.cc
[184/910] Compiling md5-586-linux.S
[185/910] Compiling d1_srtp.cc
[186/910] Compiling md5-586-apple.S
[187/910] Compiling chacha20_poly1305_x86_64-linux.S
[188/910] Compiling chacha20_poly1305_x86_64-apple.S
[189/910] Compiling chacha20_poly1305_armv8-win.S
[190/910] Compiling chacha20_poly1305_armv8-apple.S
[191/910] Compiling chacha-x86_64-apple.S
[192/910] Compiling chacha-x86_64-linux.S
[193/910] Compiling chacha20_poly1305_armv8-linux.S
[194/910] Compiling chacha-x86-linux.S
[195/910] Compiling chacha-x86-apple.S
[196/910] Compiling chacha-armv8-win.S
[197/910] Compiling chacha-armv8-apple.S
[198/910] Compiling chacha-armv4-linux.S
[199/910] Compiling chacha-armv8-linux.S
[200/910] Compiling aes128gcmsiv-x86_64-linux.S
[201/910] Compiling x86_64-mont5-linux.S
[202/910] Compiling aes128gcmsiv-x86_64-apple.S
[203/910] Compiling x86_64-mont5-apple.S
[204/910] Compiling x86_64-mont-linux.S
[205/910] Compiling x86-mont-linux.S
[206/910] Compiling x86_64-mont-apple.S
[207/910] Compiling x86-mont-apple.S
[208/910] Compiling vpaes-x86_64-linux.S
[209/910] Compiling vpaes-x86_64-apple.S
[210/910] Compiling err_data.cc
[211/910] Compiling vpaes-x86-linux.S
[212/910] Compiling d1_pkt.cc
[213/910] Compiling vpaes-armv8-win.S
[214/910] Compiling vpaes-x86-apple.S
[215/910] Compiling vpaes-armv8-apple.S
[216/910] Compiling vpaes-armv7-linux.S
[216/910] Compiling vpaes-armv8-linux.S
[218/910] Compiling sha512-x86_64-linux.S
[219/910] Compiling sha512-x86_64-apple.S
[220/910] Compiling sha512-armv8-win.S
[221/910] Compiling sha512-armv8-apple.S
[222/910] Compiling sha512-armv8-linux.S
[223/910] Compiling sha512-586-linux.S
[224/910] Compiling sha512-armv4-linux.S
[225/910] Compiling sha512-586-apple.S
[226/910] Compiling sha256-x86_64-linux.S
[227/910] Compiling sha256-armv8-win.S
[228/910] Compiling sha256-armv4-linux.S
[229/910] Compiling sha256-x86_64-apple.S
[230/910] Compiling sha256-armv8-apple.S
[231/910] Compiling sha256-586-linux.S
[232/910] Compiling sha256-armv8-linux.S
[233/910] Compiling d1_both.cc
[234/910] Compiling sha256-586-apple.S
[235/910] Compiling sha1-x86_64-apple.S
[236/910] Compiling sha1-x86_64-linux.S
[237/910] Compiling sha1-armv8-win.S
[238/910] Compiling d1_lib.cc
[239/910] Compiling sha1-armv4-large-linux.S
[240/910] Compiling sha1-armv8-apple.S
[241/910] Compiling sha1-586-linux.S
[242/910] Compiling sha1-586-apple.S
[243/910] Compiling sha1-armv8-linux.S
[244/910] Compiling rsaz-avx2-linux.S
[245/910] Compiling rsaz-avx2-apple.S
[246/910] Compiling p256_beeu-x86_64-asm-linux.S
[247/910] Compiling rdrand-x86_64-apple.S
[248/910] Compiling p256_beeu-x86_64-asm-apple.S
[249/910] Compiling rdrand-x86_64-linux.S
[250/910] Compiling p256_beeu-armv8-asm-linux.S
[251/910] Compiling p256-x86_64-asm-linux.S
[252/910] Compiling bio_ssl.cc
[252/910] Compiling p256_beeu-armv8-asm-win.S
[254/910] Compiling p256_beeu-armv8-asm-apple.S
[255/910] Compiling p256-x86_64-asm-apple.S
[256/910] Compiling p256-armv8-asm-win.S
[257/910] Compiling ghashv8-armv8-win.S
[258/910] Compiling p256-armv8-asm-apple.S
[259/910] Compiling ghash-x86_64-apple.S
[260/910] Compiling p256-armv8-asm-linux.S
[261/910] Compiling ghashv8-armv8-apple.S
[261/910] Compiling ghash-x86-linux.S
[263/910] Compiling ghashv8-armv7-linux.S
[264/910] Compiling ghash-x86_64-linux.S
[265/910] Compiling ghashv8-armv8-linux.S
[266/910] Compiling ghash-x86-apple.S
[267/910] Compiling ghash-ssse3-x86_64-linux.S
[268/910] Compiling ghash-ssse3-x86_64-apple.S
[269/910] Compiling ghash-ssse3-x86-linux.S
[270/910] Compiling ghash-neon-armv8-win.S
[271/910] Compiling ghash-neon-armv8-linux.S
[271/910] Compiling ghash-ssse3-x86-apple.S
[273/910] Compiling ghash-armv4-linux.S
[274/910] Compiling ghash-neon-armv8-apple.S
[275/910] Compiling co-586-apple.S
[276/910] Compiling co-586-linux.S
[277/910] Compiling bn-586-linux.S
[278/910] Compiling armv8-mont-win.S
[279/910] Compiling bn-586-apple.S
[280/910] Compiling bn-armv8-win.S
[281/910] Compiling bn-armv8-linux.S
[282/910] Compiling bn-armv8-apple.S
[283/910] Compiling bsaes-armv7-linux.S
[284/910] Compiling armv8-mont-linux.S
[285/910] Compiling aesv8-gcm-armv8-win.S
[285/910] Compiling aesv8-gcm-armv8-apple.S
[287/910] Compiling armv8-mont-apple.S
[288/910] Compiling aesv8-armv8-win.S
[289/910] Compiling armv4-mont-linux.S
[290/910] Compiling aesv8-armv8-linux.S
[291/910] Compiling aesv8-armv7-linux.S
[292/910] Compiling aesv8-gcm-armv8-linux.S
[293/910] Compiling aesv8-armv8-apple.S
[294/910] Compiling aesni-x86_64-apple.S
[295/910] Compiling aesni-x86-linux.S
[296/910] Compiling aesni-x86-apple.S
[297/910] Compiling aesni-x86_64-linux.S
[298/910] Compiling aesni-gcm-x86_64-apple.S
[299/910] Compiling aesni-gcm-x86_64-linux.S
[299/910] Compiling aes-gcm-avx2-x86_64-linux.S
[301/910] Compiling aes-gcm-avx2-x86_64-apple.S
[302/910] Compiling aes-gcm-avx10-x86_64-apple.S
[303/910] Compiling aes-gcm-avx10-x86_64-linux.S
[304/910] Compiling x_pubkey.cc
[305/910] Compiling x_spki.cc
[306/910] Compiling x_sig.cc
[307/910] Compiling x_x509a.cc
[308/910] Compiling x_val.cc
[309/910] Compiling x_req.cc
[310/910] Compiling x_x509.cc
[311/910] Compiling x_name.cc
[312/910] Compiling x509spki.cc
[313/910] Compiling x_algor.cc
[314/910] Compiling x_crl.cc
[315/910] Compiling x509rset.cc
[316/910] Compiling x_exten.cc
[317/910] Compiling x_attrib.cc
[318/910] Compiling x_all.cc
[319/910] Compiling x509name.cc
[320/910] Compiling x509_vpm.cc
[321/910] Compiling x509_txt.cc
[322/910] Compiling x509cset.cc
[323/910] Compiling x509_trs.cc
[324/910] Compiling x509_v3.cc
[325/910] Compiling x509_vfy.cc
[326/910] Compiling x509_set.cc
[327/910] Compiling x509_req.cc
[328/910] Compiling x509_obj.cc
[329/910] Compiling x509_ext.cc
[330/910] Compiling x509_def.cc
[331/910] Compiling x509_lu.cc
[332/910] Compiling x509_d2.cc
[333/910] Compiling x509_cmp.cc
[334/910] Compiling x509_att.cc
[335/910] Compiling x509.cc
[336/910] Compiling v3_skey.cc
[337/910] Compiling v3_purp.cc
[338/910] Compiling v3_prn.cc
[339/910] Compiling v3_pmaps.cc
[340/910] Compiling v3_pcons.cc
[341/910] Compiling v3_utl.cc
[342/910] Compiling v3_ocsp.cc
[343/910] Compiling v3_ncons.cc
[344/910] Compiling v3_int.cc
[345/910] Compiling v3_lib.cc
[346/910] Compiling v3_info.cc
[347/910] Compiling v3_enum.cc
[348/910] Compiling v3_extku.cc
[349/910] Compiling v3_ia5.cc
[350/910] Compiling v3_genn.cc
[351/910] Compiling v3_crld.cc
[352/910] Compiling v3_bitst.cc
[353/910] Compiling v3_conf.cc
[354/910] Compiling v3_cpols.cc
[355/910] Compiling v3_bcons.cc
[356/910] Compiling v3_alt.cc
[357/910] Compiling v3_akeya.cc
[358/910] Compiling v3_akey.cc
[359/910] Compiling t_x509a.cc
[360/910] Compiling t_x509.cc
[361/910] Compiling i2d_pr.cc
[362/910] Compiling t_req.cc
[363/910] Compiling t_crl.cc
[364/910] Compiling rsa_pss.cc
[365/910] Compiling name_print.cc
[366/910] Compiling policy.cc
[367/910] Compiling by_file.cc
[368/910] Compiling by_dir.cc
[369/910] Compiling asn1_gen.cc
[370/910] Compiling a_verify.cc
[371/910] Compiling trust_token.cc
[372/910] Compiling algorithm.cc
[373/910] Compiling voprf.cc
[374/910] Compiling a_digest.cc
[375/910] Compiling a_sign.cc
[376/910] Compiling thread_none.cc
[377/910] Compiling thread_win.cc
[378/910] Compiling thread.cc
[379/910] Compiling thread_pthread.cc
[380/910] Compiling stack.cc
[381/910] Compiling pmbtoken.cc
[382/910] Compiling siphash.cc
[383/910] Compiling rsa_print.cc
[384/910] Compiling slhdsa.cc
[385/910] Compiling sha512.cc
[386/910] Compiling spake2plus.cc
[387/910] Compiling sha256.cc
[388/910] Compiling sha1.cc
[389/910] Compiling windows.cc
[390/910] Compiling rsa_extra.cc
[391/910] Compiling rsa_crypt.cc
[392/910] Compiling refcount.cc
[393/910] Compiling rc4.cc
[394/910] Compiling rsa_asn1.cc
[395/910] Compiling trusty.cc
[396/910] Compiling forkunsafe.cc
[397/910] Compiling urandom.cc
[398/910] Compiling rand.cc
[399/910] Compiling poly1305_arm_asm.S
[400/910] Compiling passive.cc
[401/910] Compiling ios.cc
[402/910] Compiling getentropy.cc
[403/910] Compiling fork_detect.cc
[404/910] Compiling deterministic.cc
[405/910] Compiling poly1305_vec.cc
[406/910] Compiling poly1305_arm.cc
[407/910] Compiling pkcs7.cc
[408/910] Compiling poly1305.cc
[409/910] Compiling pool.cc
[410/910] Compiling pkcs8.cc
[411/910] Compiling pem_pkey.cc
[412/910] Compiling pkcs7_x509.cc
[413/910] Compiling pkcs8_x509.cc
[414/910] Compiling p5_pbev2.cc
[415/910] Compiling pem_xaux.cc
[416/910] Compiling pem_x509.cc
[417/910] Compiling pem_pk8.cc
[418/910] Compiling pem_oth.cc
[419/910] Compiling pem_lib.cc
[420/910] Compiling md5.cc
[421/910] Compiling pem_info.cc
[422/910] Compiling pem_all.cc
[423/910] Compiling mlkem.cc
[424/910] Compiling obj_xref.cc
[425/910] Compiling poly_rq_mul.S
[426/910] Compiling mldsa.cc
[427/910] Compiling fips_shared_support.cc
[428/910] Compiling mem.cc
[429/910] Compiling obj.cc
[430/910] Compiling md4.cc
[431/910] Compiling lhash.cc
[432/910] Compiling kyber.cc
[433/910] Compiling hrss.cc
[434/910] Compiling ex_data.cc
[435/910] Compiling print.cc
[436/910] Compiling sign.cc
[437/910] Compiling hpke.cc
[438/910] Compiling scrypt.cc
[439/910] Compiling pbkdf.cc
[440/910] Compiling p_x25519_asn1.cc
[441/910] Compiling p_x25519.cc
[442/910] Compiling p_ed25519.cc
[443/910] Compiling p_rsa_asn1.cc
[444/910] Compiling p_ed25519_asn1.cc
[445/910] Compiling p_rsa.cc
[446/910] Compiling p_hkdf.cc
[447/910] Compiling p_ec.cc
[448/910] Compiling p_ec_asn1.cc
[449/910] Compiling p_dh_asn1.cc
[450/910] Compiling p_dh.cc
[451/910] Compiling evp_ctx.cc
[452/910] Compiling p_dsa_asn1.cc
[453/910] Compiling evp.cc
[454/910] Compiling evp_asn1.cc
[455/910] Compiling engine.cc
[456/910] Compiling err.cc
[457/910] Compiling ecdh.cc
[458/910] Compiling ec_derive.cc
[459/910] Compiling hash_to_curve.cc
[460/910] Compiling ecdsa_asn1.cc
[461/910] Compiling bcm.cc
[462/910] Compiling dsa.cc
[463/910] Compiling ec_asn1.cc
[464/910] Compiling params.cc
[465/910] Compiling x25519-asm-arm.S
[466/910] Compiling dsa_asn1.cc
[467/910] Compiling digest_extra.cc
[468/910] Compiling des.cc
[469/910] Compiling dh_asn1.cc
[470/910] Compiling spake25519.cc
[471/910] Compiling curve25519_64_adx.cc
[472/910] Compiling cpu_arm_linux.cc
[473/910] Compiling crypto.cc
[474/910] Compiling cpu_intel.cc
[475/910] Compiling cpu_arm_freebsd.cc
[476/910] Compiling curve25519.cc
[477/910] Compiling cpu_aarch64_win.cc
[478/910] Compiling cpu_aarch64_openbsd.cc
[479/910] Compiling cpu_aarch64_sysreg.cc
[480/910] Compiling cpu_aarch64_fuchsia.cc
[481/910] Compiling cpu_aarch64_apple.cc
[482/910] Compiling cpu_aarch64_linux.cc
[483/910] Compiling tls_cbc.cc
[484/910] Compiling conf.cc
[485/910] Compiling get_cipher.cc
[486/910] Compiling e_tls.cc
[487/910] Compiling e_rc4.cc
[488/910] Compiling e_rc2.cc
[489/910] Compiling e_des.cc
[490/910] Compiling e_null.cc
[491/910] Compiling e_aesgcmsiv.cc
[492/910] Compiling e_chacha20poly1305.cc
[493/910] Compiling chacha.cc
[494/910] Compiling derive_key.cc
[495/910] Compiling e_aesctrhmac.cc
[496/910] Compiling unicode.cc
[497/910] Compiling buf.cc
[498/910] Compiling cbs.cc
[499/910] Compiling cbb.cc
[500/910] Compiling asn1_compat.cc
[501/910] Compiling ber.cc
[502/910] Compiling convert.cc
[503/910] Compiling bn_asn1.cc
[504/910] Compiling socket_helper.cc
[505/910] Compiling printf.cc
[506/910] Compiling blake2.cc
[507/910] Compiling socket.cc
[508/910] Compiling hexdump.cc
[509/910] Compiling pair.cc
[510/910] Compiling file.cc
[511/910] Compiling fd.cc
[512/910] Compiling bio_mem.cc
[513/910] Compiling errno.cc
[514/910] Compiling connect.cc
[515/910] Compiling bio.cc
[516/910] Compiling base64.cc
[517/910] Compiling tasn_utl.cc
[518/910] Compiling tasn_enc.cc
[519/910] Compiling tasn_typ.cc
[520/910] Compiling tasn_fre.cc
[521/910] Compiling posix_time.cc
[522/910] Compiling f_string.cc
[523/910] Compiling tasn_new.cc
[524/910] Compiling tasn_dec.cc
[525/910] Compiling asn_pack.cc
[526/910] Compiling f_int.cc
[527/910] Compiling a_utctm.cc
[528/910] Compiling asn1_par.cc
[529/910] Compiling asn1_lib.cc
[530/910] Compiling a_type.cc
[531/910] Compiling a_time.cc
[532/910] Compiling a_strnid.cc
[533/910] Compiling a_octet.cc
[534/910] Compiling a_mbstr.cc
[535/910] Compiling a_object.cc
[536/910] Compiling a_strex.cc
[537/910] Compiling a_dup.cc
[538/910] Compiling a_i2d_fp.cc
[539/910] Compiling a_int.cc
[540/910] Compiling a_d2i_fp.cc
[541/910] Compiling fiat_p256_adx_sqr.S
[542/910] Compiling fiat_curve25519_adx_square.S
[543/910] Compiling fiat_p256_adx_mul.S
[544/910] Compiling md5-x86_64-linux.S
[545/910] Compiling fiat_curve25519_adx_mul.S
[546/910] Compiling md5-586-linux.S
[547/910] Compiling md5-x86_64-apple.S
[548/910] Compiling md5-586-apple.S
[549/910] Compiling a_bitstr.cc
[550/910] Compiling a_gentm.cc
[551/910] Compiling chacha20_poly1305_x86_64-linux.S
[552/910] Compiling CCryptoBoringSSLShims shims.c
[553/910] Compiling chacha20_poly1305_x86_64-apple.S
[554/910] Compiling chacha20_poly1305_armv8-win.S
[555/910] Compiling chacha20_poly1305_armv8-apple.S
[556/910] Compiling chacha-x86_64-apple.S
[557/910] Compiling chacha-x86_64-linux.S
[558/910] Compiling chacha20_poly1305_armv8-linux.S
[559/910] Compiling a_bool.cc
[560/910] Compiling chacha-x86-linux.S
[561/910] Compiling chacha-armv8-win.S
[562/910] Compiling chacha-armv8-apple.S
[563/910] Compiling chacha-x86-apple.S
[564/910] Compiling chacha-armv8-linux.S
[565/910] Compiling chacha-armv4-linux.S
[566/910] Compiling aes128gcmsiv-x86_64-linux.S
[567/910] Compiling aes128gcmsiv-x86_64-apple.S
[568/910] Compiling x86_64-mont5-linux.S
[569/910] Compiling x86_64-mont5-apple.S
[570/910] Compiling x86_64-mont-linux.S
[571/910] Compiling x86_64-mont-apple.S
[572/910] Compiling x86-mont-linux.S
[573/910] Compiling x86-mont-apple.S
[574/910] Compiling vpaes-x86_64-linux.S
[575/910] Compiling vpaes-x86_64-apple.S
[576/910] Compiling vpaes-x86-apple.S
[577/910] Compiling vpaes-armv8-win.S
[578/910] Compiling vpaes-x86-linux.S
[579/910] Compiling vpaes-armv8-linux.S
[580/910] Compiling vpaes-armv7-linux.S
[581/910] Compiling sha512-x86_64-linux.S
[582/910] Compiling sha512-x86_64-apple.S
[583/910] Compiling vpaes-armv8-apple.S
[584/910] Compiling sha512-armv8-win.S
[585/910] Compiling sha512-armv8-linux.S
[586/910] Compiling sha512-armv8-apple.S
[587/910] Compiling sha512-586-linux.S
[588/910] Compiling sha512-armv4-linux.S
[589/910] Compiling sha512-586-apple.S
[590/910] Compiling sha256-armv8-win.S
[591/910] Compiling sha256-x86_64-linux.S
[592/910] Compiling sha256-x86_64-apple.S
[593/910] Compiling sha256-armv8-apple.S
[594/910] Compiling sha256-armv8-linux.S
[595/910] Compiling sha256-armv4-linux.S
[596/910] Compiling sha256-586-apple.S
[597/910] Compiling err_data.cc
[598/910] Compiling sha256-586-linux.S
[599/910] Compiling sha1-x86_64-apple.S
[600/910] Compiling sha1-x86_64-linux.S
[601/910] Compiling sha1-armv8-apple.S
[602/910] Compiling sha1-armv8-linux.S
[603/910] Compiling sha1-armv8-win.S
[603/910] Compiling sha1-armv4-large-linux.S
[605/910] Compiling sha1-586-linux.S
[606/910] Compiling sha1-586-apple.S
[607/910] Compiling rsaz-avx2-linux.S
[608/910] Compiling rdrand-x86_64-linux.S
[609/910] Compiling rsaz-avx2-apple.S
[610/910] Compiling rdrand-x86_64-apple.S
[611/910] Compiling p256_beeu-x86_64-asm-linux.S
[612/910] Compiling p256_beeu-armv8-asm-win.S
[613/910] Compiling p256_beeu-x86_64-asm-apple.S
[614/910] Compiling p256_beeu-armv8-asm-linux.S
[615/910] Compiling p256-x86_64-asm-linux.S
[616/910] Compiling p256_beeu-armv8-asm-apple.S
[617/910] Compiling p256-x86_64-asm-apple.S
[618/910] Compiling p256-armv8-asm-win.S
[619/910] Compiling p256-armv8-asm-apple.S
[620/910] Compiling ghashv8-armv8-win.S
[621/910] Compiling p256-armv8-asm-linux.S
[622/910] Compiling ghashv8-armv8-linux.S
[623/910] Compiling ghashv8-armv8-apple.S
[624/910] Compiling ghash-x86_64-linux.S
[625/910] Compiling ghash-x86_64-apple.S
[626/910] Compiling ghashv8-armv7-linux.S
[627/910] Compiling ghash-x86-linux.S
[628/910] Compiling ghash-ssse3-x86_64-linux.S
[629/910] Compiling ghash-x86-apple.S
[630/910] Compiling ghash-ssse3-x86-linux.S
[631/910] Compiling ghash-ssse3-x86_64-apple.S
[632/910] Compiling ghash-ssse3-x86-apple.S
[633/910] Compiling ghash-neon-armv8-linux.S
[634/910] Compiling ghash-neon-armv8-win.S
[635/910] Compiling ghash-neon-armv8-apple.S
[636/910] Compiling bsaes-armv7-linux.S
[637/910] Compiling co-586-linux.S
[638/910] Compiling ghash-armv4-linux.S
[639/910] Compiling co-586-apple.S
[640/910] Compiling bn-armv8-win.S
[641/910] Compiling bn-armv8-linux.S
[642/910] Compiling bn-armv8-apple.S
[643/910] Compiling bn-586-linux.S
[644/910] Compiling bn-586-apple.S
[645/910] Compiling armv8-mont-win.S
[646/910] Compiling armv8-mont-linux.S
[647/910] Compiling armv4-mont-linux.S
[648/910] Compiling armv8-mont-apple.S
[649/910] Compiling aesv8-gcm-armv8-win.S
[650/910] Compiling aesv8-gcm-armv8-apple.S
[651/910] Compiling aesv8-gcm-armv8-linux.S
[652/910] Compiling aesv8-armv8-win.S
[653/910] Compiling aesv8-armv8-apple.S
[654/910] Compiling aesv8-armv8-linux.S
[655/910] Compiling aesv8-armv7-linux.S
[656/910] Compiling aesni-x86_64-linux.S
[657/910] Compiling aesni-x86_64-apple.S
[658/910] Compiling aesni-x86-linux.S
[659/910] Compiling aesni-gcm-x86_64-apple.S
[660/910] Compiling aesni-x86-apple.S
[661/910] Compiling aes-gcm-avx512-x86_64-apple.S
[662/910] Compiling aesni-gcm-x86_64-linux.S
[663/910] Compiling aes-gcm-avx512-x86_64-linux.S
[664/910] Compiling aes-gcm-avx2-x86_64-linux.S
[665/910] Compiling aes-gcm-avx2-x86_64-apple.S
[666/910] Compiling xwing.cc
[667/910] Compiling x_spki.cc
[668/910] Compiling x_x509a.cc
[669/910] Compiling x_val.cc
[670/910] Compiling x_x509.cc
[671/910] Compiling x_sig.cc
[672/910] Compiling x_req.cc
[673/910] Compiling x_exten.cc
[674/910] Compiling x_name.cc
[675/910] Compiling x_pubkey.cc
[676/910] Compiling x_attrib.cc
[677/910] Compiling x_crl.cc
[678/910] Compiling c-nioatomics.c
[679/910] Compiling x_all.cc
[680/910] Compiling x509spki.cc
[681/910] Compiling x_algor.cc
[682/910] Compiling x509rset.cc
[683/910] Compiling x509name.cc
[684/910] Compiling x509cset.cc
[685/910] Compiling x509_vpm.cc
[686/910] Compiling c-atomics.c
[687/910] Compiling x509_vfy.cc
[688/912] Compiling x509_v3.cc
[689/915] Compiling x509_trs.cc
[690/915] Compiling x509_txt.cc
[691/916] Compiling x509_req.cc
[692/916] Compiling x509_set.cc
[693/916] Compiling x509_obj.cc
[695/916] Compiling NIOConcurrencyHelpers lock.swift
[696/916] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[696/916] Compiling x509_lu.cc
[698/916] Emitting module NIOConcurrencyHelpers
[699/916] Compiling NIOConcurrencyHelpers NIOLock.swift
[700/916] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[701/916] Compiling NIOConcurrencyHelpers atomics.swift
[702/917] Compiling x509_d2.cc
[703/917] Compiling x509_def.cc
[704/917] Compiling x509_ext.cc
[705/917] Compiling x509_cmp.cc
[706/917] Compiling x509.cc
[707/917] Compiling x509_att.cc
[708/917] Compiling v3_utl.cc
[709/917] Compiling v3_skey.cc
[710/917] Compiling v3_pmaps.cc
[711/917] Compiling v3_purp.cc
[712/917] Compiling v3_prn.cc
[713/917] Compiling v3_pcons.cc
[714/917] Compiling v3_ocsp.cc
[715/917] Compiling v3_ncons.cc
[716/917] Compiling v3_int.cc
[717/917] Compiling v3_lib.cc
[718/917] Compiling v3_ia5.cc
[719/917] Compiling v3_info.cc
[720/917] Compiling v3_genn.cc
[721/917] Compiling v3_enum.cc
[722/917] Compiling v3_extku.cc
[723/917] Compiling v3_crld.cc
[724/917] Compiling v3_cpols.cc
[725/917] Compiling v3_conf.cc
[726/917] Compiling v3_bcons.cc
[727/917] Compiling v3_bitst.cc
[728/917] Compiling v3_akey.cc
[729/917] Compiling v3_akeya.cc
[730/917] Compiling v3_alt.cc
[731/917] Compiling t_x509a.cc
[732/917] Compiling rsa_pss.cc
[733/917] Compiling t_x509.cc
[734/917] Compiling t_crl.cc
[735/917] Compiling t_req.cc
[736/917] Compiling i2d_pr.cc
[737/917] Compiling name_print.cc
[738/917] Compiling policy.cc
[739/917] Compiling by_file.cc
[740/917] Compiling by_dir.cc
[741/917] Compiling asn1_gen.cc
[742/917] Compiling a_sign.cc
[743/917] Compiling algorithm.cc
[744/917] Compiling a_verify.cc
[745/917] Compiling a_digest.cc
[746/917] Compiling voprf.cc
[747/917] Compiling trust_token.cc
[748/917] Compiling thread_win.cc
[749/917] Compiling thread_pthread.cc
[750/917] Compiling thread_none.cc
[751/917] Compiling thread.cc
[752/917] Compiling stack.cc
[753/917] Compiling pmbtoken.cc
[754/917] Compiling siphash.cc
[755/917] Compiling sha256.cc
[756/917] Compiling sha512.cc
[757/917] Compiling sha1.cc
[758/917] Compiling spake2plus.cc
[759/917] Compiling slhdsa.cc
[760/917] Compiling rsa_print.cc
[761/917] Compiling rsa_extra.cc
[762/917] Compiling rsa_crypt.cc
[763/917] Compiling rc4.cc
[764/917] Compiling refcount.cc
[765/917] Compiling windows.cc
[766/917] Compiling urandom.cc
[767/917] Compiling trusty.cc
[768/917] Compiling rsa_asn1.cc
[769/917] Compiling rand.cc
[770/917] Compiling passive.cc
[771/917] Compiling getentropy.cc
[772/917] Compiling ios.cc
[773/917] Compiling poly1305_arm_asm.S
[774/917] Compiling forkunsafe.cc
[775/917] Compiling deterministic.cc
[776/917] Compiling fork_detect.cc
[777/917] Compiling poly1305_vec.cc
[778/917] Compiling poly1305_arm.cc
[779/917] Compiling pool.cc
[780/917] Compiling poly1305.cc
[781/917] Compiling pkcs8_x509.cc
[782/917] Compiling pkcs7.cc
[783/917] Compiling p5_pbev2.cc
[784/917] Compiling pkcs8.cc
[785/917] Compiling pkcs7_x509.cc
[786/917] Compiling pem_x509.cc
[787/917] Compiling pem_xaux.cc
[788/917] Compiling pem_pkey.cc
[789/917] Compiling pem_info.cc
[790/917] Compiling pem_pk8.cc
[791/917] Compiling mlkem.cc
[792/917] Compiling pem_oth.cc
[793/917] Compiling pem_lib.cc
[794/917] Compiling pem_all.cc
[795/917] Compiling obj_xref.cc
[796/917] Compiling obj.cc
[797/917] Compiling poly_rq_mul.S
[798/917] Compiling mldsa.cc
[799/917] Compiling mem.cc
[800/917] Compiling fips_shared_support.cc
[801/917] Compiling lhash.cc
[802/917] Compiling md5.cc
[803/917] Compiling md4.cc
[804/917] Compiling fuzzer_mode.cc
[805/917] Compiling kyber.cc
[806/917] Compiling hrss.cc
[807/917] Compiling ex_data.cc
[808/917] Compiling sign.cc
[809/917] Compiling hpke.cc
[810/917] Compiling scrypt.cc
[811/917] Compiling pbkdf.cc
[812/917] Compiling print.cc
[813/917] Compiling p_x25519.cc
[814/917] Compiling p_x25519_asn1.cc
[815/917] Compiling p_rsa_asn1.cc
[816/917] Compiling p_rsa.cc
[817/917] Compiling p_ed25519.cc
[818/917] Compiling p_hkdf.cc
[819/917] Compiling p_ed25519_asn1.cc
[820/917] Compiling p_ec.cc
[821/917] Compiling p_ec_asn1.cc
[822/917] Compiling p_dh_asn1.cc
[823/917] Compiling p_dh.cc
[824/917] Compiling p_dsa_asn1.cc
[825/917] Compiling err.cc
[826/917] Compiling evp.cc
[827/917] Compiling engine.cc
[828/917] Compiling evp_ctx.cc
[829/917] Compiling ecdsa_p1363.cc
[830/917] Compiling evp_asn1.cc
[831/917] Compiling ecdh.cc
[832/917] Compiling hash_to_curve.cc
[833/917] Compiling ec_derive.cc
[834/917] Compiling ecdsa_asn1.cc
[835/917] Compiling dsa.cc
[836/917] Compiling ec_asn1.cc
[837/917] Compiling dsa_asn1.cc
[838/917] Compiling params.cc
[839/917] Compiling bcm.cc
[840/917] Compiling x25519-asm-arm.S
[841/917] Compiling des.cc
[842/917] Compiling digest_extra.cc
[843/917] Compiling curve25519_64_adx.cc
[844/917] Compiling dh_asn1.cc
[845/917] Compiling cpu_intel.cc
[846/917] Compiling spake25519.cc
[847/917] Compiling curve25519.cc
[848/917] Compiling crypto.cc
[849/917] Compiling cpu_arm_linux.cc
[850/917] Compiling cpu_arm_freebsd.cc
[851/917] Compiling cpu_aarch64_win.cc
[852/917] Compiling cpu_aarch64_sysreg.cc
[853/917] Compiling cpu_aarch64_openbsd.cc
[854/917] Compiling cpu_aarch64_linux.cc
[855/917] Compiling cpu_aarch64_apple.cc
[856/917] Compiling cpu_aarch64_fuchsia.cc
[857/917] Compiling conf.cc
[858/917] Compiling tls_cbc.cc
[859/917] Compiling get_cipher.cc
[860/917] Compiling e_tls.cc
[861/917] Compiling e_rc4.cc
[862/917] Compiling e_null.cc
[863/917] Compiling e_rc2.cc
[864/917] Compiling cms.cc
[865/917] Compiling e_des.cc
[866/917] Compiling e_aeseax.cc
[867/917] Compiling e_chacha20poly1305.cc
[868/917] Compiling e_aesgcmsiv.cc
[869/917] Compiling derive_key.cc
[870/917] Compiling e_aesctrhmac.cc
[871/917] Compiling chacha.cc
[872/917] Compiling unicode.cc
[873/917] Compiling buf.cc
[874/917] Compiling sqrt.cc
[875/917] Compiling cbb.cc
[876/917] Compiling ber.cc
[877/917] Compiling asn1_compat.cc
[878/917] Compiling exponentiation.cc
[879/917] Compiling cbs.cc
[880/917] Compiling div.cc
[881/917] Compiling printf.cc
[882/917] Compiling blake2.cc
[883/917] Compiling bn_asn1.cc
[884/917] Compiling hexdump.cc
[885/917] Compiling pair.cc
[886/917] Compiling convert.cc
[887/917] Compiling file.cc
[888/917] Compiling fd.cc
[889/917] Compiling bio_mem.cc
[890/917] Compiling errno.cc
[891/917] Compiling base64.cc
[892/917] Compiling tasn_enc.cc
[893/917] Compiling bio.cc
[894/917] Compiling tasn_typ.cc
[895/917] Compiling tasn_utl.cc
[896/917] Compiling tasn_fre.cc
[897/917] Compiling tasn_new.cc
[898/917] Compiling f_int.cc
[899/917] Compiling f_string.cc
[900/917] Compiling posix_time.cc
[901/917] Compiling asn_pack.cc
[902/917] Compiling asn1_par.cc
[903/917] Compiling tasn_dec.cc
[904/917] Compiling asn1_lib.cc
[905/917] Compiling a_utctm.cc
[906/917] Compiling a_octet.cc
[907/917] Compiling a_time.cc
[908/917] Compiling a_type.cc
[909/917] Write sources
[910/917] Compiling a_strnid.cc
[911/917] Compiling a_strex.cc
[912/935] Compiling a_object.cc
[914/935] Compiling Atomics ManagedAtomic.swift
[915/935] Compiling Atomics ManagedAtomicLazyReference.swift
[916/937] Compiling Atomics UnsafeAtomic.swift
[917/937] Compiling Atomics UnsafeAtomicLazyReference.swift
[917/937] Compiling a_i2d_fp.cc
[919/937] Compiling Atomics AtomicStorage.swift
[920/937] Compiling Atomics AtomicValue.swift
[921/937] Compiling Atomics AtomicMemoryOrderings.swift
[922/937] Compiling Atomics DoubleWord.swift
[922/937] Compiling a_mbstr.cc
[923/937] Compiling a_int.cc
[925/937] Compiling Atomics AtomicInteger.swift
[926/937] Compiling Atomics AtomicOptionalWrappable.swift
[927/937] Compiling Atomics AtomicReference.swift
[928/937] Compiling Atomics IntegerOperations.swift
[929/937] Compiling Atomics Unmanaged extensions.swift
[929/937] Compiling a_gentm.cc
[931/945] Compiling CryptoBoringWrapper RandomBytes.swift
[932/945] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[933/945] Emitting module Atomics
[934/945] Compiling Atomics OptionalRawRepresentable.swift
[935/945] Compiling Atomics RawRepresentable.swift
[936/945] Compiling Atomics AtomicBool.swift
[937/945] Compiling Atomics IntegerConformances.swift
[938/945] Compiling Atomics PointerConformances.swift
[939/945] Compiling Atomics Primitives.native.swift
[941/1007] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[942/1007] Compiling CryptoBoringWrapper EllipticCurve.swift
[943/1007] Emitting module CryptoBoringWrapper
[944/1007] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[945/1007] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[946/1007] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[948/1079] Compiling Crypto HPKE-Modes.swift
[949/1079] Compiling Crypto Insecure.swift
[950/1079] Compiling Crypto Insecure_HashFunctions.swift
[951/1079] Compiling Crypto KEM.swift
[952/1079] Compiling Crypto ECDH_boring.swift
[953/1079] Compiling Crypto DH.swift
[954/1079] Compiling Crypto ECDH.swift
[955/1079] Compiling Crypto HKDF.swift
[956/1087] Compiling Crypto AESWrap.swift
[957/1087] Compiling Crypto AESWrap_boring.swift
[958/1087] Compiling Crypto Ed25519_boring.swift
[959/1087] Compiling Crypto NISTCurvesKeys_boring.swift
[960/1087] Compiling Crypto X25519Keys_boring.swift
[961/1087] Compiling Crypto Curve25519.swift
[962/1087] Compiling Crypto Ed25519Keys.swift
[963/1087] Compiling Crypto NISTCurvesKeys.swift
[964/1087] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[965/1087] Compiling NIOCore SocketAddresses.swift
[966/1087] Compiling NIOCore SocketOptionProvider.swift
[967/1087] Compiling NIOCore SystemCallHelpers.swift
[968/1087] Compiling NIOCore TimeAmount+Duration.swift
[969/1087] Compiling NIOCore TypeAssistedChannelHandler.swift
[970/1087] Compiling NIOCore UniversalBootstrapSupport.swift
[971/1087] Compiling NIOCore Utilities.swift
[972/1087] Compiling Crypto EdDSA_boring.swift
[973/1087] Compiling Crypto ECDSA.swift
[974/1097] Compiling Crypto Digest.swift
[975/1097] Compiling Crypto Digests.swift
[976/1097] Compiling Crypto HashFunctions.swift
[977/1097] Compiling Crypto HashFunctions_SHA2.swift
[978/1097] Compiling Crypto HPKE-Errors.swift
[979/1097] Compiling Crypto HPKE.swift
[980/1097] Compiling Crypto HPKE-Context.swift
[981/1097] Compiling Crypto HPKE-KeySchedule.swift
[982/1097] Emitting module Crypto
[983/1097] Compiling Crypto HPKE-AEAD.swift
[984/1097] Compiling Crypto HPKE-Ciphersuite.swift
[985/1097] Compiling Crypto HPKE-KDF.swift
[986/1097] Compiling Crypto HPKE-KexKeyDerivation.swift
[987/1097] Compiling Crypto HPKE-LabeledExtract.swift
[988/1097] Compiling Crypto HPKE-Utils.swift
[989/1097] Compiling Crypto DHKEM.swift
[990/1097] Compiling Crypto HPKE-KEM-Curve25519.swift
[991/1097] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[992/1097] Compiling Crypto HPKE-KEM.swift
[993/1097] Compiling Crypto AES-GCM.swift
[994/1097] Compiling Crypto AES-GCM_boring.swift
[995/1097] Compiling Crypto ChaChaPoly_boring.swift
[996/1097] Compiling Crypto ChaChaPoly.swift
[997/1097] Compiling Crypto Cipher.swift
[998/1097] Compiling Crypto Nonces.swift
[999/1097] Compiling Crypto ASN1.swift
[1000/1097] Compiling Crypto ASN1Any.swift
[1001/1097] Compiling Crypto ASN1BitString.swift
[1002/1097] Compiling Crypto ASN1Boolean.swift
[1026/1097] Compiling Crypto PKCS8PrivateKey.swift
[1027/1097] Compiling Crypto SEC1PrivateKey.swift
[1028/1097] Compiling Crypto SubjectPublicKeyInfo.swift
[1029/1097] Compiling Crypto CryptoError_boring.swift
[1030/1097] Compiling Crypto CryptoKitErrors.swift
[1031/1097] Compiling Crypto Digest_boring.swift
[1050/1097] Compiling Crypto ASN1Identifier.swift
[1051/1097] Compiling Crypto ASN1Integer.swift
[1052/1097] Compiling Crypto ASN1Null.swift
[1053/1097] Compiling Crypto ASN1OctetString.swift
[1054/1097] Compiling Crypto ASN1Strings.swift
[1055/1097] Compiling Crypto ArraySliceBigint.swift
[1056/1097] Compiling Crypto GeneralizedTime.swift
[1057/1097] Compiling Crypto ObjectIdentifier.swift
[1058/1097] Compiling Crypto ECDSASignature.swift
[1059/1097] Compiling Crypto PEMDocument.swift
[1078/1097] Compiling Crypto Ed25519.swift
[1079/1097] Compiling Crypto Signature.swift
[1080/1097] Compiling Crypto CryptoKitErrors_boring.swift
[1081/1097] Compiling Crypto RNG_boring.swift
[1082/1097] Compiling Crypto SafeCompare_boring.swift
[1083/1097] Compiling Crypto Zeroization_boring.swift
[1084/1097] Compiling Crypto PrettyBytes.swift
[1085/1097] Compiling Crypto SafeCompare.swift
[1086/1097] Compiling Crypto SecureBytes.swift
[1087/1097] Compiling Crypto Zeroization.swift
[1098/1098] Emitting module NIOCore
[1100/1201] Compiling _CryptoExtras BoringSSLHelpers.swift
[1101/1201] Compiling _CryptoExtras CryptoKitErrors_boring.swift
[1102/1201] Compiling _CryptoExtras Data+Extensions.swift
[1103/1201] Compiling _CryptoExtras DigestType.swift
[1104/1201] Compiling _CryptoExtras Error.swift
[1105/1201] Compiling _CryptoExtras I2OSP.swift
[1106/1201] Compiling _CryptoExtras IntegerEncoding.swift
[1107/1208] Emitting module NIOEmbedded
[1108/1208] Compiling NIOEmbedded AsyncTestingChannel.swift
[1109/1208] Compiling _CryptoExtras PKCS8DERRepresentation.swift
[1110/1208] Compiling _CryptoExtras PKCS8PrivateKey.swift
[1111/1208] Compiling _CryptoExtras RFC8410AlgorithmIdentifier.swift
[1112/1208] Compiling _CryptoExtras ECToolbox_boring.swift
[1113/1208] Compiling _CryptoExtras ECToolbox.swift
[1114/1208] Compiling _CryptoExtras HashToField.swift
[1115/1208] Compiling _CryptoExtras KDF.swift
[1116/1208] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[1117/1208] Compiling NIOEmbedded Embedded.swift
[1119/1209] Emitting module _CryptoExtras
[1120/1209] Compiling _CryptoExtras PEMDocument.swift
[1121/1209] Compiling _CryptoExtras PrettyBytes.swift
[1122/1209] Compiling _CryptoExtras SubjectPublicKeyInfo.swift
[1123/1209] Compiling _CryptoExtras DLEQ.swift
[1124/1209] Compiling _CryptoExtras Prover.swift
[1125/1209] Compiling _CryptoExtras Verifier.swift
[1126/1209] Compiling _CryptoExtras ZKPToolbox.swift
[1127/1209] Compiling _CryptoExtras AES_CBC.swift
[1128/1209] Compiling _CryptoExtras AES_CFB.swift
[1129/1209] Compiling _CryptoExtras AES_CTR.swift
[1130/1209] Compiling _CryptoExtras AES_GCM_SIV.swift
[1131/1209] Compiling _CryptoExtras Block Function.swift
[1132/1209] Compiling _CryptoExtras AES_CFB_boring.swift
[1133/1209] Compiling _CryptoExtras AES_CTR_boring.swift
[1134/1209] Emitting module NIOPosix
[1135/1215] Compiling _CryptoExtras AES_GCM_SIV_boring.swift
[1136/1215] Compiling _CryptoExtras CMAC.swift
[1137/1215] Compiling _CryptoExtras ARC+API.swift
[1138/1215] Compiling _CryptoExtras ARC.swift
[1139/1215] Compiling _CryptoExtras ARCCredential.swift
[1140/1215] Compiling _CryptoExtras ARCEncoding.swift
[1141/1215] Compiling _CryptoExtras ARCPrecredential.swift
[1142/1215] Compiling _CryptoExtras ARCPresentation.swift
[1143/1215] Compiling _CryptoExtras ARCRequest.swift
[1144/1215] Compiling _CryptoExtras ARCResponse.swift
[1145/1215] Compiling _CryptoExtras ARCServer.swift
[1146/1215] Compiling _CryptoExtras ChaCha20CTR_boring.swift
[1147/1215] Compiling _CryptoExtras ChaCha20CTR.swift
[1148/1215] Compiling _CryptoExtras ObjectIdentifier.swift
[1149/1215] Compiling _CryptoExtras OPRFServer.swift
[1150/1215] Compiling _CryptoExtras VOPRF+API.swift
[1151/1215] Compiling _CryptoExtras VOPRFClient.swift
[1152/1215] Compiling _CryptoExtras VOPRFServer.swift
[1153/1215] Compiling _CryptoExtras RSA+BlindSigning.swift
[1154/1215] Compiling _CryptoExtras RSA.swift
[1155/1215] Compiling _CryptoExtras RSA_boring.swift
[1156/1215] Compiling _CryptoExtras PBKDF2_boring.swift
[1157/1215] Compiling _CryptoExtras PBKDF2_commoncrypto.swift
[1158/1215] Compiling _CryptoExtras PBKDF2.swift
[1159/1215] Compiling _CryptoExtras Scrypt_boring.swift
[1160/1215] Compiling _CryptoExtras Scrypt.swift
[1161/1215] Compiling _CryptoExtras OPRF.swift
[1162/1215] Compiling _CryptoExtras OPRFClient.swift
[1183/1216] Compiling NIOPosix ThreadPosix.swift
[1184/1216] Compiling NIOPosix ThreadWindows.swift
[1185/1216] Compiling NIOPosix UnsafeTransfer.swift
[1186/1216] Compiling NIOPosix Utilities.swift
[1187/1216] Compiling NIOPosix VsockAddress.swift
[1188/1216] Compiling NIOPosix VsockChannelEvents.swift
[1218/1219] Emitting module NIO
[1219/1219] Compiling NIO Exports.swift
[1221/1226] Compiling NIOTLS TLSEvents.swift
[1222/1226] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[1223/1226] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[1224/1226] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[1225/1226] Emitting module NIOTLS
[1226/1226] Compiling NIOTLS SNIHandler.swift
[1228/1256] Emitting module NIOSSL
[1229/1260] Compiling NIOSSL SubjectAlternativeName.swift
[1230/1260] Compiling NIOSSL NIOSSLSecureBytes.swift
[1231/1260] Compiling NIOSSL RNG.swift
[1232/1260] Compiling NIOSSL SafeCompare.swift
[1233/1260] Compiling NIOSSL NIOSSLServerHandler.swift
[1234/1260] Compiling NIOSSL ObjectIdentifier.swift
[1235/1260] Compiling NIOSSL PosixPort.swift
[1236/1260] Compiling NIOSSL SSLCallbacks.swift
[1237/1260] Compiling NIOSSL SSLPrivateKey.swift
[1238/1260] Compiling NIOSSL SSLPublicKey.swift
[1239/1260] Compiling NIOSSL SecurityFrameworkCertificateVerification.swift
[1240/1260] Compiling NIOSSL String+unsafeUninitializedCapacity.swift
[1241/1260] Compiling NIOSSL SSLCertificate.swift
[1242/1260] Compiling NIOSSL SSLCertificateExtensions.swift
[1243/1260] Compiling NIOSSL SSLCertificateName.swift
[1244/1260] Compiling NIOSSL SSLConnection.swift
[1245/1260] Compiling NIOSSL LinuxCABundle.swift
[1246/1260] Compiling NIOSSL NIOSSLClientHandler.swift
[1247/1260] Compiling NIOSSL NIOSSLHandler+Configuration.swift
[1248/1260] Compiling NIOSSL NIOSSLHandler.swift
[1249/1260] Compiling NIOSSL AndroidCABundle.swift
[1250/1260] Compiling NIOSSL ByteBufferBIO.swift
[1251/1260] Compiling NIOSSL CustomPrivateKey.swift
[1252/1260] Compiling NIOSSL IdentityVerification.swift
[1253/1260] Compiling NIOSSL SSLContext.swift
[1254/1260] Compiling NIOSSL SSLErrors.swift
[1255/1260] Compiling NIOSSL SSLInit.swift
[1256/1260] Compiling NIOSSL SSLPKCS12Bundle.swift
[1257/1260] Compiling NIOSSL Zeroization.swift
[1258/1260] Compiling NIOSSL TLSConfiguration.swift
[1259/1260] Compiling NIOSSL UniversalBootstrapSupport.swift
[1260/1260] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[1262/1297] Compiling MySQLNIO MySQLProtocol+BinaryResultSetRow.swift
[1263/1297] Compiling MySQLNIO MySQLProtocol+COM_QUERY.swift
[1264/1297] Compiling MySQLNIO MySQLProtocol+COM_QUERY_Response.swift
[1265/1297] Compiling MySQLNIO MySQLProtocol+COM_QUIT.swift
[1266/1297] Compiling MySQLNIO MySQLProtocol+COM_STMT_CLOSE.swift
[1267/1297] Compiling MySQLNIO MySQLProtocol+HandshakeResponse41.swift
[1268/1297] Compiling MySQLNIO MySQLProtocol+HandshakeV10.swift
[1269/1297] Compiling MySQLNIO MySQLProtocol+NullBitmap.swift
[1270/1297] Compiling MySQLNIO MySQLProtocol+OK_Packet.swift
[1271/1297] Compiling MySQLNIO MySQLProtocol+SSLRequest.swift
[1272/1302] Emitting module MySQLNIO
[1273/1302] Compiling MySQLNIO MySQLProtocol+StatusFlags.swift
[1274/1302] Compiling MySQLNIO MySQLProtocol+TextResultSetRow.swift
[1275/1302] Compiling MySQLNIO MySQLProtocol.swift
[1276/1302] Compiling MySQLNIO CryptoUtils.swift
[1277/1302] Compiling MySQLNIO NIOUtils.swift
[1278/1302] Compiling MySQLNIO Exports.swift
[1279/1302] Compiling MySQLNIO MySQLConnection.swift
[1280/1302] Compiling MySQLNIO MySQLConnectionHandler.swift
[1281/1302] Compiling MySQLNIO MySQLData.swift
[1282/1302] Compiling MySQLNIO MySQLDataConvertible.swift
[1283/1302] Compiling MySQLNIO MySQLProtocol+COM_STMT_EXECUTE.swift
[1284/1302] Compiling MySQLNIO MySQLProtocol+COM_STMT_PREPARE.swift
[1285/1302] Compiling MySQLNIO MySQLProtocol+COM_STMT_PREPARE_OK.swift
[1286/1302] Compiling MySQLNIO MySQLProtocol+CapabilityFlags.swift
[1287/1302] Compiling MySQLNIO MySQLProtocol+CharacterSet.swift
[1288/1302] Compiling MySQLNIO MySQLDatabase.swift
[1289/1302] Compiling MySQLNIO MySQLError.swift
[1290/1302] Compiling MySQLNIO MySQLQueryCommand.swift
[1291/1302] Compiling MySQLNIO MySQLRow.swift
[1292/1302] Compiling MySQLNIO MySQLSimpleQueryCommand.swift
[1293/1302] Compiling MySQLNIO MySQLTime.swift
[1294/1302] Compiling MySQLNIO MySQLPacket.swift
[1295/1302] Compiling MySQLNIO MySQLPacketDecoder.swift
[1296/1302] Compiling MySQLNIO MySQLPacketEncoder.swift
[1297/1302] Compiling MySQLNIO MySQLPacketSequence.swift
[1298/1302] Compiling MySQLNIO MySQLProtocol+ColumnDefinition41.swift
[1299/1302] Compiling MySQLNIO MySQLProtocol+ColumnFlags.swift
[1300/1302] Compiling MySQLNIO MySQLProtocol+DataType.swift
[1301/1302] Compiling MySQLNIO MySQLProtocol+ERR_Packet.swift
[1302/1302] Compiling MySQLNIO MySQLProtocol+ErrorCode.swift
Build complete! (505.10s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-algorithms.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-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "swift-nio-ssl",
"requirement" : {
"range" : [
{
"lower_bound" : "2.14.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio-ssl.git"
}
],
"manifest_display_name" : "mysql-nio",
"name" : "mysql-nio",
"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" : "MySQLNIO",
"targets" : [
"MySQLNIO"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MySQLNIOTests",
"module_type" : "SwiftTarget",
"name" : "MySQLNIOTests",
"path" : "Tests/MySQLNIOTests",
"sources" : [
"MySQLNIOTests.swift",
"Utilities.swift"
],
"target_dependencies" : [
"MySQLNIO"
],
"type" : "test"
},
{
"c99name" : "MySQLNIO",
"module_type" : "SwiftTarget",
"name" : "MySQLNIO",
"path" : "Sources/MySQLNIO",
"product_dependencies" : [
"Algorithms",
"_CryptoExtras",
"Crypto",
"Logging",
"NIO",
"NIOSSL"
],
"product_memberships" : [
"MySQLNIO"
],
"sources" : [
"Exports.swift",
"MySQLConnection.swift",
"MySQLConnectionHandler.swift",
"MySQLData.swift",
"MySQLDataConvertible.swift",
"MySQLDatabase.swift",
"MySQLError.swift",
"MySQLQueryCommand.swift",
"MySQLRow.swift",
"MySQLSimpleQueryCommand.swift",
"MySQLTime.swift",
"Packet/MySQLPacket.swift",
"Packet/MySQLPacketDecoder.swift",
"Packet/MySQLPacketEncoder.swift",
"Packet/MySQLPacketSequence.swift",
"Protocol/MySQLProtocol+BinaryResultSetRow.swift",
"Protocol/MySQLProtocol+COM_QUERY.swift",
"Protocol/MySQLProtocol+COM_QUERY_Response.swift",
"Protocol/MySQLProtocol+COM_QUIT.swift",
"Protocol/MySQLProtocol+COM_STMT_CLOSE.swift",
"Protocol/MySQLProtocol+COM_STMT_EXECUTE.swift",
"Protocol/MySQLProtocol+COM_STMT_PREPARE.swift",
"Protocol/MySQLProtocol+COM_STMT_PREPARE_OK.swift",
"Protocol/MySQLProtocol+CapabilityFlags.swift",
"Protocol/MySQLProtocol+CharacterSet.swift",
"Protocol/MySQLProtocol+ColumnDefinition41.swift",
"Protocol/MySQLProtocol+ColumnFlags.swift",
"Protocol/MySQLProtocol+DataType.swift",
"Protocol/MySQLProtocol+ERR_Packet.swift",
"Protocol/MySQLProtocol+ErrorCode.swift",
"Protocol/MySQLProtocol+HandshakeResponse41.swift",
"Protocol/MySQLProtocol+HandshakeV10.swift",
"Protocol/MySQLProtocol+NullBitmap.swift",
"Protocol/MySQLProtocol+OK_Packet.swift",
"Protocol/MySQLProtocol+SSLRequest.swift",
"Protocol/MySQLProtocol+StatusFlags.swift",
"Protocol/MySQLProtocol+TextResultSetRow.swift",
"Protocol/MySQLProtocol.swift",
"Utilities/CryptoUtils.swift",
"Utilities/NIOUtils.swift"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8106a39f56f5bb7aad9f0d9a94f1e5362f9a40b692f7bc17efe17b7b91dc65fc
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.