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

Successful build of queues, reference 1.17.2 (f1764d), with Swift 6.0 for Linux on 7 Apr 2025 14:12:57 UTC.

Swift 6 data race errors: 1

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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.60.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vapor/queues.git
Reference: 1.17.2
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/queues
 * tag               1.17.2     -> FETCH_HEAD
HEAD is now at f1764d5 Use String(reflecting: error) for error logging (#141)
Cloned https://github.com/vapor/queues.git
Revision (git rev-parse @):
f1764d5fef7e8ede8f3585deb63ece01ea25c2db
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/vapor/queues.git at 1.17.2
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/vapor/queues.git
https://github.com/vapor/queues.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "vapor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.104.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/vapor.git"
    },
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.81.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swift-metrics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.5.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-metrics.git"
    }
  ],
  "manifest_display_name" : "queues",
  "name" : "queues",
  "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" : "Queues",
      "targets" : [
        "Queues"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "XCTQueues",
      "targets" : [
        "XCTQueues"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XCTQueues",
      "module_type" : "SwiftTarget",
      "name" : "XCTQueues",
      "path" : "Sources/XCTQueues",
      "product_memberships" : [
        "XCTQueues"
      ],
      "sources" : [
        "TestQueueDriver.swift"
      ],
      "target_dependencies" : [
        "Queues"
      ],
      "type" : "library"
    },
    {
      "c99name" : "QueuesTests",
      "module_type" : "SwiftTarget",
      "name" : "QueuesTests",
      "path" : "Tests/QueuesTests",
      "product_dependencies" : [
        "XCTVapor",
        "MetricsTestKit"
      ],
      "sources" : [
        "AsyncQueueTests.swift",
        "MetricsTests.swift",
        "QueueTests.swift",
        "ScheduleBuilderTests.swift",
        "Utilities.swift",
        "Utilities/FailingAsyncJob.swift",
        "Utilities/Failure.swift",
        "Utilities/MyAsyncJob.swift"
      ],
      "target_dependencies" : [
        "Queues",
        "XCTQueues"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Queues",
      "module_type" : "SwiftTarget",
      "name" : "Queues",
      "path" : "Sources/Queues",
      "product_dependencies" : [
        "Vapor",
        "NIOCore",
        "Metrics"
      ],
      "product_memberships" : [
        "Queues",
        "XCTQueues"
      ],
      "sources" : [
        "Application+Queues.swift",
        "AsyncJob.swift",
        "AsyncJobEventDelegate.swift",
        "AsyncQueue.swift",
        "AsyncScheduledJob.swift",
        "Exports.swift",
        "Job.swift",
        "JobData.swift",
        "JobIdentifier.swift",
        "NotificationHook.swift",
        "Queue.swift",
        "QueueContext.swift",
        "QueueName.swift",
        "QueueWorker.swift",
        "QueuesCommand.swift",
        "QueuesConfiguration.swift",
        "QueuesDriver.swift",
        "QueuesEventLoopPreference.swift",
        "RepeatedTask+Cancel.swift",
        "Request+Queues.swift",
        "ScheduleBuilder.swift",
        "ScheduledJob.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:9029076bb687edc160a3d5201c89e92dd9fa7309f33f090c4234365c83366c31
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/apple/swift-metrics.git
Fetching https://github.com/vapor/vapor.git
Fetching https://github.com/apple/swift-nio.git
[1/2171] Fetching swift-metrics
Fetched https://github.com/apple/swift-metrics.git from cache (0.34s)
[1/74231] Fetching vapor
[5198/148945] Fetching vapor, swift-nio
Fetched https://github.com/vapor/vapor.git from cache (4.29s)
Fetched https://github.com/apple/swift-nio.git from cache (4.33s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.81.0 (2.13s)
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-collections.git
[1/4224] Fetching swift-system
[2578/5929] Fetching swift-system, swift-atomics
[4856/21832] Fetching swift-system, swift-atomics, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (0.37s)
[4886/17608] Fetching swift-atomics, swift-collections
Fetched https://github.com/apple/swift-atomics.git from cache (0.99s)
Fetched https://github.com/apple/swift-collections.git from cache (1.01s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (0.49s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.2 (0.49s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.6.1 (0.50s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (0.69s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.114.1 (0.57s)
Fetching https://github.com/apple/swift-service-context.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/vapor/multipart-kit.git
Fetching https://github.com/vapor/websocket-kit.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-distributed-tracing.git
[1/1047] Fetching swift-service-context
[829/3580] Fetching swift-service-context, websocket-kit
[1656/6776] Fetching swift-service-context, websocket-kit, multipart-kit
[5211/11734] Fetching swift-service-context, websocket-kit, multipart-kit, swift-distributed-tracing
[5410/17597] Fetching swift-service-context, websocket-kit, multipart-kit, swift-distributed-tracing, swift-algorithms
[7056/21422] Fetching swift-service-context, websocket-kit, multipart-kit, swift-distributed-tracing, swift-algorithms, swift-log
Fetched https://github.com/vapor/websocket-kit.git from cache (0.27s)
[9424/18889] Fetching swift-service-context, multipart-kit, swift-distributed-tracing, swift-algorithms, swift-log
Fetching https://github.com/apple/swift-nio-extras.git
Fetched https://github.com/apple/swift-log.git from cache (0.46s)
Fetching https://github.com/apple/swift-nio-http2.git
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (0.46s)
Fetching https://github.com/apple/swift-nio-ssl.git
[8541/15742] Fetching swift-service-context, multipart-kit, swift-algorithms, swift-nio-extras
Fetched https://github.com/apple/swift-nio-extras.git from cache (0.37s)
Fetching https://github.com/vapor/routing-kit.git
[8541/21572] Fetching swift-service-context, multipart-kit, swift-algorithms, swift-nio-http2
[11064/42262] Fetching swift-service-context, multipart-kit, swift-algorithms, swift-nio-http2, routing-kit
Fetched https://github.com/apple/swift-service-context.git from cache (1.43s)
Fetched https://github.com/apple/swift-algorithms.git from cache (1.43s)
Fetching https://github.com/apple/swift-crypto.git
Fetched https://github.com/vapor/multipart-kit.git from cache (1.47s)
Fetching https://github.com/vapor/async-kit.git
Fetched https://github.com/vapor/routing-kit.git from cache (0.90s)
Fetching https://github.com/swift-server/async-http-client.git
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.10s)
[1/14475] Fetching swift-nio-ssl
[1883/16845] Fetching swift-nio-ssl, async-kit
Fetched https://github.com/vapor/async-kit.git from cache (0.27s)
[3185/14475] Fetching swift-nio-ssl
[3620/28067] Fetching swift-nio-ssl, swift-crypto
[5160/41809] Fetching swift-nio-ssl, swift-crypto, async-http-client
Fetched https://github.com/swift-server/async-http-client.git from cache (0.77s)
[20312/28067] Fetching swift-nio-ssl, swift-crypto
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.55s)
Fetching https://github.com/vapor/console-kit.git
Fetched https://github.com/apple/swift-crypto.git from cache (1.70s)
[1/5485] Fetching console-kit
Fetched https://github.com/vapor/console-kit.git from cache (0.35s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.1 (0.54s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.15.0 (0.59s)
Fetching https://github.com/apple/swift-nio-transport-services.git
[1/2450] Fetching swift-nio-transport-services
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (0.44s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.0 (0.63s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.25.0 (0.53s)
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-http-structured-headers.git
[1/1120] Fetching swift-http-structured-headers
[1121/2010] Fetching swift-http-structured-headers, swift-http-types
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.25s)
Fetched https://github.com/apple/swift-http-types.git from cache (0.26s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.50s)
Fetching https://github.com/apple/swift-numerics.git
[1/5659] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.35s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.2.1 (0.50s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (0.48s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.53s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.2.0 (0.47s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.62s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.25.2 (0.99s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.29.3 (1.05s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.2 (0.92s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.20.0 (1.83s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.23.1 (3.41s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.35.0 (1.91s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.1 (0.99s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.2 (3.14s)
Fetching https://github.com/apple/swift-asn1.git
[1/1560] Fetching swift-asn1
Fetched https://github.com/apple/swift-asn1.git from cache (0.39s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.1 (0.97s)
Creating working copy for https://github.com/vapor/multipart-kit.git
Working copy of https://github.com/vapor/multipart-kit.git resolved at 4.7.1
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.35.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.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/vapor/console-kit.git
Working copy of https://github.com/vapor/console-kit.git resolved at 4.15.2
Creating working copy for https://github.com/apple/swift-distributed-tracing.git
Working copy of https://github.com/apple/swift-distributed-tracing.git resolved at 1.2.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.4.2
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 4.114.1
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.81.0
Creating working copy for https://github.com/apple/swift-metrics.git
Working copy of https://github.com/apple/swift-metrics.git resolved at 2.6.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.1.4
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.2.0
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.25.2
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.29.3
Creating working copy for https://github.com/vapor/websocket-kit.git
Working copy of https://github.com/vapor/websocket-kit.git resolved at 2.15.0
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.0
Creating working copy for https://github.com/vapor/routing-kit.git
Working copy of https://github.com/vapor/routing-kit.git resolved at 4.9.1
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.25.0
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.23.1
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/vapor/async-kit.git
Working copy of https://github.com/vapor/async-kit.git resolved at 1.20.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.12.2
Building for debugging...
[0/832] Write sources
[40/832] Compiling CNIOWindows shim.c
[40/832] Write sources
[48/832] Compiling CNIOWASI CNIOWASI.c
[49/832] Compiling _NumericsShims _NumericsShims.c
[50/832] Compiling CVaporBcrypt bcrypt.c
[51/832] Compiling CNIOWindows WSAStartup.c
[51/832] Compiling _AtomicsShims.c
[51/832] Compiling CVaporBcrypt blf.c
[54/832] Compiling CNIOLinux liburing_shims.c
[55/832] Compiling CSystem shims.c
[56/832] Compiling CNIOLLHTTP c_nio_http.c
[57/832] Compiling CNIOSHA1 c_nio_sha1.c
[58/832] Compiling CNIOExtrasZlib empty.c
[59/832] Compiling CNIODarwin shim.c
[60/832] Compiling CNIOLinux shim.c
[61/832] Compiling CNIOLLHTTP c_nio_api.c
[62/832] Compiling fiat_p256_adx_sqr.S
[63/832] Compiling fiat_curve25519_adx_square.S
[64/832] Compiling fiat_p256_adx_mul.S
[65/832] Compiling fiat_curve25519_adx_mul.S
[66/832] Compiling CNIOLLHTTP c_nio_llhttp.c
[67/832] Write swift-version-24593BA9C3E375BF.txt
[68/832] Compiling CNIOBoringSSLShims shims.c
[69/836] Compiling tls_method.cc
[70/836] Compiling tls_record.cc
[71/836] Compiling t1_enc.cc
[72/838] Compiling tls13_server.cc
[73/838] Compiling tls13_enc.cc
[74/838] Compiling tls13_client.cc
[75/869] Compiling tls13_both.cc
[77/904] Emitting module InternalCollectionsUtilities
[78/906] Emitting module SystemPackage
[79/909] Compiling ServiceContextModule ServiceContext.swift
[80/909] Emitting module ServiceContextModule
[81/909] Compiling ServiceContextModule ServiceContextKey.swift
[82/909] Compiling RealModule Real.swift
[83/911] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[84/911] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[85/911] Compiling CoreMetrics Metrics.swift
[86/911] Emitting module _NIOBase64
[87/911] Compiling _NIOBase64 Base64.swift
[88/911] Compiling RealModule Float16+Real.swift
[89/911] Compiling RealModule Float80+Real.swift
[90/911] Emitting module RealModule
[91/912] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[92/912] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[93/912] Compiling SystemPackage Util+StringArray.swift
[94/912] Compiling SystemPackage Util.swift
[95/912] Compiling SystemPackage UtilConsumers.swift
[96/912] Compiling InternalCollectionsUtilities Debugging.swift
[97/912] Compiling InternalCollectionsUtilities Descriptions.swift
[98/912] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[99/912] Compiling InternalCollectionsUtilities Specialize.swift
[100/912] Compiling RealModule ElementaryFunctions.swift
[101/912] Compiling RealModule Float+Real.swift
[102/912] Compiling InternalCollectionsUtilities _SortedCollection.swift
[103/912] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[104/912] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[105/912] Compiling InternalCollectionsUtilities UInt+reversed.swift
[106/912] Compiling _NIODataStructures PriorityQueue.swift
[110/912] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[111/912] Compiling InternalCollectionsUtilities Integer rank.swift
[112/912] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[114/912] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[115/912] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[116/912] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[117/912] Compiling _NIODataStructures _TinyArray.swift
[118/912] Compiling SystemPackage MachPort.swift
[119/912] Compiling SystemPackage PlatformString.swift
[120/912] Compiling SystemPackage SystemString.swift
[131/913] Compiling RealModule RealFunctions.swift
[134/920] Compiling Instrumentation NoOpInstrument.swift
[135/978] Compiling Instrumentation MultiplexInstrument.swift
[136/988] Compiling _RopeModule BigString+Debugging.swift
[137/988] Compiling _RopeModule BigString+Index.swift
[138/988] Compiling _RopeModule BigString+Ingester.swift
[139/988] Compiling _RopeModule BigString+Invariants.swift
[140/988] Compiling _RopeModule BigString+Sequence.swift
[141/988] Compiling _RopeModule BigString+TextOutputStream.swift
[142/988] Compiling _RopeModule BigString+Builder.swift
[143/988] Compiling _RopeModule BigString+Contents.swift
[144/988] Compiling _RopeModule BigString+Iterators.swift
[145/988] Compiling _RopeModule BigString+Metrics.swift
[146/988] Compiling _RopeModule BigString+Summary.swift
[147/988] Compiling _RopeModule BigString.swift
[148/988] Emitting module Instrumentation
[149/988] Compiling Instrumentation InstrumentationSystem.swift
[150/988] Compiling Instrumentation Instrument.swift
[151/988] Compiling Instrumentation Locks.swift
[152/989] Emitting module _NIODataStructures
[153/989] Compiling _NIODataStructures Heap.swift
[154/990] Compiling _RopeModule BigString+Chunk+Description.swift
[155/990] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[156/990] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[157/990] Compiling _RopeModule BigString+Chunk+RopeElement.swift
[158/990] Emitting module Logging
[159/990] Compiling Logging Locks.swift
[160/991] Compiling Logging MetadataProvider.swift
[161/991] Compiling Logging LogHandler.swift
[162/991] Compiling Logging Logging.swift
[164/992] Compiling CoreMetrics Locks.swift
[165/992] Emitting module CoreMetrics
[170/1145] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[170/1145] Compiling ssl_versions.cc
[171/1145] Compiling ssl_x509.cc
[173/1145] Compiling HeapModule Heap+Descriptions.swift
[174/1145] Compiling HeapModule Heap.swift
[175/1145] Compiling Tracing TracingTime.swift
[176/1147] Compiling HeapModule _HeapNode.swift
[177/1147] Compiling HeapModule Heap+Invariants.swift
[178/1147] Compiling HeapModule Heap+UnsafeHandle.swift
[179/1162] Compiling Tracing InstrumentationSystem+Tracing.swift
[180/1162] Compiling Tracing TracerProtocol.swift
[181/1162] Emitting module HeapModule
[182/1163] Compiling DequeModule Deque+CustomReflectable.swift
[183/1163] Compiling DequeModule Deque+Descriptions.swift
[185/1165] Compiling Tracing Tracer.swift
[186/1165] Compiling Tracing TracerProtocol+Legacy.swift
[187/1165] Compiling DequeModule _DequeBuffer.swift
[188/1165] Compiling DequeModule _DequeBufferHeader.swift
[189/1165] Compiling HashTreeCollections TreeSet+Hashable.swift
[190/1165] Compiling HashTreeCollections TreeSet+Sendable.swift
[191/1165] Compiling HashTreeCollections TreeSet+Sequence.swift
[192/1165] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[193/1165] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[194/1165] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[195/1165] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[196/1165] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[197/1165] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[198/1165] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[199/1175] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[200/1175] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[201/1175] Compiling HashTreeCollections TreeDictionary+Keys.swift
[202/1175] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[203/1175] Compiling HashTreeCollections TreeDictionary+Merge.swift
[204/1175] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[205/1175] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[206/1175] Compiling HashTreeCollections _HashNode.swift
[207/1175] Compiling HashTreeCollections _HashNodeHeader.swift
[208/1175] Compiling HashTreeCollections _HashSlot.swift
[209/1175] Compiling HashTreeCollections _HashStack.swift
[210/1175] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[211/1175] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[212/1175] Compiling HashTreeCollections TreeDictionary+Filter.swift
[213/1182] Compiling DequeModule Deque+Codable.swift
[214/1182] Compiling DequeModule Deque+Collection.swift
[217/1182] Compiling DequeModule Deque+Equatable.swift
[218/1182] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[219/1182] Compiling DequeModule Deque+Extras.swift
[220/1182] Compiling DequeModule Deque+Hashable.swift
[221/1182] Compiling DequeModule Deque+Testing.swift
[222/1182] Compiling DequeModule Deque._Storage.swift
[229/1191] Compiling Tracing NoOpTracer.swift
[230/1191] Emitting module Tracing
[231/1191] Compiling Tracing SpanProtocol.swift
[235/1192] Compiling DequeModule Deque._UnsafeHandle.swift
[236/1192] Compiling DequeModule Deque.swift
[239/1192] Compiling DequeModule _DequeSlot.swift
[240/1192] Compiling DequeModule _UnsafeWrappedBuffer.swift
[241/1192] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[242/1192] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[243/1192] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[244/1192] Compiling HashTreeCollections _HashNode+Structural union.swift
[245/1192] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[246/1192] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[247/1192] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[248/1192] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[249/1192] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[250/1192] Compiling HashTreeCollections _RawHashNode.swift
[251/1192] Compiling HashTreeCollections _UnmanagedHashNode.swift
[252/1192] Compiling HashTreeCollections _UnsafePath.swift
[253/1192] Compiling HashTreeCollections TreeDictionary+Codable.swift
[254/1192] Compiling HashTreeCollections TreeDictionary+Collection.swift
[255/1192] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[256/1192] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[259/1192] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[260/1192] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[261/1192] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[262/1192] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[263/1192] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[264/1192] Compiling HashTreeCollections _HashNode+Structural merge.swift
[265/1192] Compiling HashTreeCollections _HashTreeIterator.swift
[266/1192] Compiling HashTreeCollections _HashTreeStatistics.swift
[267/1192] Compiling OrderedCollections OrderedSet+SubSequence.swift
[268/1192] Compiling OrderedCollections OrderedSet+Testing.swift
[269/1192] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[270/1192] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[271/1192] Compiling OrderedCollections OrderedSet.swift
[272/1192] Compiling OrderedCollections _UnsafeBitset.swift
[273/1192] Compiling HashTreeCollections TreeSet+Equatable.swift
[274/1192] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[275/1192] Compiling HashTreeCollections TreeSet+Extras.swift
[276/1192] Compiling HashTreeCollections TreeSet+Filter.swift
[289/1192] Compiling _RopeModule _CharacterRecognizer.swift
[290/1192] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[291/1192] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[292/1192] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[293/1192] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[294/1192] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[295/1192] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[296/1192] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[297/1192] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[298/1192] Compiling HashTreeCollections TreeSet.swift
[300/1192] Compiling ssl_transcript.cc
[330/1192] Compiling RoutingKit Router.swift
[339/1192] Emitting module RoutingKit
[340/1192] Compiling RoutingKit AnyRouter.swift
[341/1192] Emitting module Metrics
[363/1192] Compiling OrderedCollections OrderedSet+Sendable.swift
[371/1192] Compiling RoutingKit PathComponent.swift
[372/1192] Compiling RoutingKit TrieRouter.swift
[373/1192] Emitting module DequeModule
[373/1193] Compiling ssl_stat.cc
[376/1193] Compiling _RopeModule Rope+Join.swift
[377/1193] Compiling _RopeModule Rope+MutatingForEach.swift
[378/1193] Compiling _RopeModule Rope+Remove.swift
[379/1193] Compiling _RopeModule Rope+RemoveSubrange.swift
[380/1193] Compiling _RopeModule Rope+Split.swift
[381/1193] Compiling _RopeModule Optional Utilities.swift
[382/1193] Compiling _RopeModule String Utilities.swift
[383/1193] Compiling _RopeModule String.Index+ABI.swift
[384/1193] Compiling ssl_session.cc
[419/1193] Emitting module OrderedCollections
[421/1194] Emitting module _RopeModule
[421/1194] Compiling ssl_privkey.cc
[423/1194] Compiling Metrics Metrics.swift
[443/1196] Compiling ssl_lib.cc
[446/1196] Compiling RoutingKit Parameters.swift
[447/1197] Compiling ssl_key_share.cc
[448/1197] Compiling ssl_credential.cc
[449/1197] Compiling ssl_file.cc
[451/1197] Emitting module HashTreeCollections
[452/1198] Compiling ssl_cipher.cc
[453/1198] Compiling ssl_cert.cc
[454/1198] Compiling ssl_buffer.cc
[455/1198] Compiling ssl_aead_ctx.cc
[456/1198] Compiling ssl_asn1.cc
[457/1198] Compiling s3_pkt.cc
[458/1198] Compiling s3_lib.cc
[459/1198] Compiling handshake_client.cc
[460/1198] Compiling s3_both.cc
[461/1198] Compiling handshake_server.cc
[462/1198] Compiling handshake.cc
[463/1198] Compiling handoff.cc
[464/1198] Compiling dtls_record.cc
[465/1198] Compiling encrypted_client_hello.cc
[466/1198] Compiling md5-x86_64-linux.S
[467/1198] Compiling extensions.cc
[468/1198] Compiling md5-x86_64-apple.S
[469/1198] Compiling md5-586-linux.S
[470/1198] Compiling md5-586-apple.S
[471/1198] Compiling bio_ssl.cc
[472/1198] Compiling chacha20_poly1305_x86_64-apple.S
[473/1198] Compiling chacha20_poly1305_x86_64-linux.S
[474/1198] Compiling chacha20_poly1305_armv8-win.S
[475/1198] Compiling chacha20_poly1305_armv8-linux.S
[476/1198] Compiling chacha20_poly1305_armv8-apple.S
[477/1198] Compiling chacha-x86_64-linux.S
[478/1198] Compiling d1_pkt.cc
[479/1198] Compiling chacha-x86_64-apple.S
[480/1198] Compiling chacha-x86-linux.S
[481/1198] Compiling err_data.cc
[482/1198] Compiling d1_srtp.cc
[483/1198] Compiling chacha-x86-apple.S
[484/1198] Compiling d1_lib.cc
[485/1198] Compiling chacha-armv8-apple.S
[485/1198] Compiling chacha-armv8-win.S
[487/1198] Compiling chacha-armv8-linux.S
[488/1198] Compiling chacha-armv4-linux.S
[489/1198] Compiling dtls_method.cc
[490/1198] Compiling x86_64-mont5-linux.S
[491/1198] Compiling x86_64-mont-apple.S
[492/1198] Compiling aes128gcmsiv-x86_64-linux.S
[493/1198] Compiling aes128gcmsiv-x86_64-apple.S
[494/1198] Compiling x86_64-mont-linux.S
[495/1198] Compiling x86_64-mont5-apple.S
[496/1198] Compiling vpaes-x86_64-linux.S
[497/1198] Compiling x86-mont-linux.S
[498/1198] Compiling vpaes-armv8-win.S
[499/1198] Compiling vpaes-x86_64-apple.S
[500/1198] Compiling x86-mont-apple.S
[501/1198] Compiling vpaes-x86-linux.S
[502/1198] Compiling vpaes-x86-apple.S
[503/1198] Compiling vpaes-armv8-linux.S
[504/1198] Compiling vpaes-armv8-apple.S
[505/1198] Compiling vpaes-armv7-linux.S
[506/1198] Compiling sha512-x86_64-apple.S
[507/1198] Compiling sha512-armv8-win.S
[508/1198] Compiling sha512-armv4-linux.S
[509/1198] Compiling sha512-armv8-linux.S
[510/1198] Compiling sha512-armv8-apple.S
[511/1198] Compiling sha512-586-linux.S
[512/1198] Compiling sha512-586-apple.S
[513/1198] Compiling sha512-x86_64-linux.S
[514/1198] Compiling sha256-x86_64-apple.S
[515/1198] Compiling sha256-armv8-linux.S
[516/1198] Compiling sha256-armv8-apple.S
[517/1198] Compiling sha256-x86_64-linux.S
[518/1198] Compiling sha256-armv8-win.S
[519/1198] Compiling sha256-armv4-linux.S
[520/1198] Compiling sha256-586-apple.S
[521/1198] Compiling sha256-586-linux.S
[522/1198] Compiling sha1-armv8-apple.S
[523/1198] Compiling sha1-x86_64-apple.S
[524/1198] Compiling sha1-armv8-linux.S
[525/1198] Compiling sha1-armv8-win.S
[526/1198] Compiling sha1-586-linux.S
[527/1198] Compiling sha1-armv4-large-linux.S
[528/1198] Compiling sha1-x86_64-linux.S
[529/1198] Compiling rsaz-avx2-linux.S
[530/1198] Compiling sha1-586-apple.S
[531/1198] Compiling rsaz-avx2-apple.S
[532/1198] Compiling rdrand-x86_64-apple.S
[533/1198] Compiling rdrand-x86_64-linux.S
[534/1198] Compiling p256_beeu-x86_64-asm-linux.S
[535/1198] Compiling p256_beeu-x86_64-asm-apple.S
[536/1198] Compiling p256_beeu-armv8-asm-win.S
[537/1198] Compiling p256_beeu-armv8-asm-linux.S
[538/1198] Compiling p256_beeu-armv8-asm-apple.S
[539/1198] Compiling p256-x86_64-asm-linux.S
[540/1198] Compiling p256-armv8-asm-win.S
[541/1198] Compiling p256-x86_64-asm-apple.S
[542/1198] Compiling p256-armv8-asm-linux.S
[543/1198] Compiling p256-armv8-asm-apple.S
[544/1198] Compiling d1_both.cc
[545/1198] Compiling ghash-x86_64-apple.S
[546/1198] Compiling ghashv8-armv8-win.S
[547/1198] Compiling ghashv8-armv7-linux.S
[548/1198] Compiling ghashv8-armv8-apple.S
[548/1198] Compiling ghashv8-armv8-linux.S
[550/1198] Compiling ghash-x86_64-linux.S
[551/1198] Compiling ghash-x86-apple.S
[552/1198] Compiling ghash-x86-linux.S
[553/1198] Compiling ghash-ssse3-x86_64-apple.S
[554/1198] Compiling ghash-ssse3-x86_64-linux.S
[555/1198] Compiling ghash-ssse3-x86-linux.S
[556/1198] Compiling ghash-neon-armv8-win.S
[557/1198] Compiling ghash-ssse3-x86-apple.S
[558/1198] Compiling ghash-armv4-linux.S
[559/1198] Compiling co-586-linux.S
[560/1198] Compiling ghash-neon-armv8-apple.S
[561/1198] Compiling co-586-apple.S
[562/1198] Compiling ghash-neon-armv8-linux.S
[563/1198] Compiling bn-armv8-linux.S
[564/1198] Compiling bsaes-armv7-linux.S
[565/1198] Compiling bn-armv8-win.S
[566/1198] Compiling bn-armv8-apple.S
[567/1198] Compiling armv8-mont-apple.S
[568/1198] Compiling bn-586-linux.S
[569/1198] Compiling armv8-mont-win.S
[570/1198] Compiling bn-586-apple.S
[571/1198] Compiling armv4-mont-linux.S
[572/1198] Compiling aesv8-gcm-armv8-win.S
[573/1198] Compiling armv8-mont-linux.S
[574/1198] Compiling aesv8-armv8-apple.S
[575/1198] Compiling aesv8-gcm-armv8-linux.S
[576/1198] Compiling aesv8-armv8-win.S
[577/1198] Compiling aesv8-gcm-armv8-apple.S
[578/1198] Compiling aesv8-armv7-linux.S
[579/1198] Compiling aesv8-armv8-linux.S
[580/1198] Compiling aesni-x86_64-linux.S
[581/1198] Compiling aesni-x86_64-apple.S
[582/1198] Compiling aesni-x86-linux.S
[583/1198] Compiling aesni-gcm-x86_64-linux.S
[584/1198] Compiling aesni-x86-apple.S
[585/1198] Compiling aesni-gcm-x86_64-apple.S
[586/1198] Compiling x_spki.cc
[587/1198] Compiling x_name.cc
[588/1198] Compiling x_val.cc
[589/1198] Compiling x_x509a.cc
[590/1198] Compiling x_sig.cc
[591/1198] Compiling x_req.cc
[592/1198] Compiling x_x509.cc
[593/1198] Compiling x_pubkey.cc
[594/1198] Compiling x_exten.cc
[595/1198] Compiling x_attrib.cc
[596/1198] Compiling x_crl.cc
[597/1198] Compiling x509spki.cc
[598/1198] Compiling x_algor.cc
[599/1198] Compiling x_all.cc
[600/1198] Compiling x509name.cc
[601/1198] Compiling x509rset.cc
[602/1198] Compiling x509cset.cc
[603/1198] Compiling x509_txt.cc
[604/1198] Compiling x509_set.cc
[605/1198] Compiling x509_v3.cc
[606/1198] Compiling x509_vpm.cc
[607/1198] Compiling x509_vfy.cc
[608/1198] Compiling x509_trs.cc
[609/1198] Compiling x509_req.cc
[610/1198] Compiling x509_obj.cc
[611/1198] Compiling x509_ext.cc
[612/1198] Compiling x509_lu.cc
[613/1198] Compiling x509_def.cc
[614/1198] Compiling x509_cmp.cc
[615/1198] Compiling x509_d2.cc
[616/1198] Compiling x509_att.cc
[617/1198] Compiling x509.cc
[618/1198] Compiling v3_utl.cc
[619/1198] Compiling v3_prn.cc
[620/1198] Compiling v3_skey.cc
[621/1198] Compiling v3_purp.cc
[622/1198] Compiling v3_pcons.cc
[623/1198] Compiling v3_ocsp.cc
[623/1198] Compiling v3_pmaps.cc
[625/1198] Compiling v3_ncons.cc
[626/1198] Compiling v3_lib.cc
[627/1198] Compiling v3_int.cc
[628/1198] Compiling v3_info.cc
[629/1198] Compiling v3_ia5.cc
[630/1198] Compiling v3_extku.cc
[631/1198] Compiling v3_genn.cc
[632/1198] Compiling v3_enum.cc
[633/1198] Compiling v3_crld.cc
[634/1198] Compiling v3_cpols.cc
[635/1198] Compiling v3_conf.cc
[636/1198] Compiling v3_bcons.cc
[637/1198] Compiling v3_bitst.cc
[638/1198] Compiling v3_akeya.cc
[639/1198] Compiling v3_akey.cc
[640/1198] Compiling v3_alt.cc
[641/1198] Compiling t_x509a.cc
[642/1198] Compiling t_x509.cc
[643/1198] Compiling i2d_pr.cc
[644/1198] Compiling t_req.cc
[645/1198] Compiling t_crl.cc
[646/1198] Compiling name_print.cc
[647/1198] Compiling rsa_pss.cc
[648/1198] Compiling policy.cc
[649/1198] Compiling by_file.cc
[650/1198] Compiling by_dir.cc
[651/1198] Compiling algorithm.cc
[652/1198] Compiling asn1_gen.cc
[653/1198] Compiling a_verify.cc
[654/1198] Compiling voprf.cc
[655/1198] Compiling a_sign.cc
[656/1198] Compiling a_digest.cc
[657/1198] Compiling trust_token.cc
[658/1198] Compiling thread_win.cc
[659/1198] Compiling thread_pthread.cc
[660/1198] Compiling pmbtoken.cc
[661/1198] Compiling thread_none.cc
[662/1198] Compiling thread.cc
[663/1198] Compiling wots.cc
[664/1198] Compiling stack.cc
[665/1198] Compiling thash.cc
[666/1198] Compiling slhdsa.cc
[667/1198] Compiling merkle.cc
[668/1198] Compiling fors.cc
[669/1198] Compiling sha512.cc
[670/1198] Compiling siphash.cc
[671/1198] Compiling sha256.cc
[672/1198] Compiling sha1.cc
[673/1198] Compiling rsa_print.cc
[674/1198] Compiling rsa_extra.cc
[675/1198] Compiling rc4.cc
[676/1198] Compiling refcount.cc
[677/1198] Compiling rsa_asn1.cc
[678/1198] Compiling rsa_crypt.cc
[679/1198] Compiling windows.cc
[680/1198] Compiling trusty.cc
[681/1198] Compiling urandom.cc
[682/1198] Compiling rand_extra.cc
[683/1198] Compiling ios.cc
[684/1198] Compiling passive.cc
[685/1198] Compiling poly1305_arm_asm.S
[686/1198] Compiling getentropy.cc
[687/1198] Compiling forkunsafe.cc
[688/1198] Compiling deterministic.cc
[689/1198] Compiling fork_detect.cc
[690/1198] Compiling pool.cc
[691/1198] Compiling poly1305.cc
[692/1198] Compiling poly1305_arm.cc
[693/1198] Compiling poly1305_vec.cc
[694/1198] Compiling pkcs7.cc
[695/1198] Compiling pkcs8.cc
[696/1198] Compiling pkcs8_x509.cc
[697/1198] Compiling p5_pbev2.cc
[698/1198] Compiling pkcs7_x509.cc
[699/1198] Compiling pem_x509.cc
[700/1198] Compiling pem_xaux.cc
[701/1198] Compiling pem_pkey.cc
[702/1198] Compiling obj_xref.cc
[703/1198] Compiling pem_pk8.cc
[704/1198] Compiling pem_oth.cc
[705/1198] Compiling mlkem.cc
[706/1198] Compiling pem_info.cc
[707/1198] Compiling pem_lib.cc
[708/1198] Compiling obj.cc
[709/1198] Compiling mem.cc
[710/1198] Compiling pem_all.cc
[711/1198] Compiling poly_rq_mul.S
[712/1198] Compiling md5.cc
[713/1198] Compiling fips_shared_support.cc
[714/1198] Compiling mldsa.cc
[715/1198] Compiling md4.cc
[716/1198] Compiling lhash.cc
[717/1198] Compiling keccak.cc
[718/1198] Compiling kyber.cc
[719/1198] Compiling sign.cc
[720/1198] Compiling ex_data.cc
[721/1198] Compiling hrss.cc
[722/1198] Compiling scrypt.cc
[723/1198] Compiling hpke.cc
[724/1198] Compiling pbkdf.cc
[725/1198] Compiling print.cc
[726/1198] Compiling p_hkdf.cc
[727/1198] Compiling p_x25519.cc
[728/1198] Compiling p_rsa_asn1.cc
[729/1198] Compiling p_rsa.cc
[730/1198] Compiling p_x25519_asn1.cc
[731/1198] Compiling p_ed25519.cc
[732/1198] Compiling p_ed25519_asn1.cc
[733/1198] Compiling p_ec_asn1.cc
[734/1198] Compiling p_dsa_asn1.cc
[735/1198] Compiling p_ec.cc
[736/1198] Compiling p_dh_asn1.cc
[737/1198] Compiling p_dh.cc
[738/1198] Compiling evp_ctx.cc
[739/1198] Compiling evp_asn1.cc
[740/1198] Compiling err.cc
[741/1198] Compiling ecdh_extra.cc
[742/1198] Compiling evp.cc
[743/1198] Compiling ecdsa_asn1.cc
[744/1198] Compiling engine.cc
[745/1198] Compiling hash_to_curve.cc
[746/1198] Compiling ec_derive.cc
[747/1198] Compiling dsa_asn1.cc
[748/1198] Compiling ec_asn1.cc
[749/1198] Compiling params.cc
[750/1198] Compiling dsa.cc
[751/1198] Compiling digest_extra.cc
[752/1198] Compiling x25519-asm-arm.S
[753/1198] Compiling dh_asn1.cc
[754/1198] Compiling des.cc
[755/1198] Compiling spake25519.cc
[756/1198] Compiling cpu_intel.cc
[757/1198] Compiling crypto.cc
[758/1198] Compiling cpu_arm_linux.cc
[759/1198] Compiling cpu_arm_freebsd.cc
[760/1198] Compiling curve25519.cc
[761/1198] Compiling cpu_aarch64_sysreg.cc
[762/1198] Compiling cpu_aarch64_win.cc
[763/1198] Compiling bcm.cc
[764/1198] Compiling cpu_aarch64_openbsd.cc
[765/1198] Compiling cpu_aarch64_linux.cc
[766/1198] Compiling cpu_aarch64_fuchsia.cc
[767/1198] Compiling curve25519_64_adx.cc
[768/1198] Compiling cpu_aarch64_apple.cc
[769/1198] Compiling e_rc4.cc
[770/1198] Compiling conf.cc
[771/1198] Compiling tls_cbc.cc
[772/1198] Compiling e_tls.cc
[773/1198] Compiling e_null.cc
[774/1198] Compiling e_des.cc
[775/1198] Compiling e_rc2.cc
[776/1198] Compiling e_chacha20poly1305.cc
[777/1198] Compiling derive_key.cc
[778/1198] Compiling e_aesgcmsiv.cc
[779/1198] Compiling e_aesctrhmac.cc
[780/1198] Compiling cipher_extra.cc
[781/1198] Compiling chacha.cc
[782/1198] Compiling unicode.cc
[783/1198] Compiling cbs.cc
[784/1198] Compiling buf.cc
[785/1198] Compiling ber.cc
[786/1198] Compiling asn1_compat.cc
[787/1198] Compiling bn_asn1.cc
[788/1198] Compiling cbb.cc
[789/1198] Compiling blake2.cc
[790/1198] Compiling convert.cc
[791/1198] Compiling socket.cc
[792/1198] Compiling socket_helper.cc
[793/1198] Compiling printf.cc
[794/1198] Compiling errno.cc
[795/1198] Compiling pair.cc
[796/1198] Compiling fd.cc
[797/1198] Compiling hexdump.cc
[798/1198] Compiling file.cc
[799/1198] Compiling bio_mem.cc
[800/1198] Compiling connect.cc
[801/1198] Compiling base64.cc
[802/1198] Compiling bio.cc
[803/1198] Compiling tasn_typ.cc
[804/1198] Compiling tasn_fre.cc
[805/1198] Compiling tasn_utl.cc
[806/1198] Compiling tasn_new.cc
[807/1198] Compiling tasn_enc.cc
[808/1198] Compiling posix_time.cc
[809/1198] Compiling f_string.cc
[810/1198] Compiling asn_pack.cc
[811/1198] Compiling tasn_dec.cc
[812/1198] Compiling f_int.cc
[813/1198] Compiling asn1_par.cc
[814/1198] Compiling asn1_lib.cc
[815/1198] Compiling a_utctm.cc
[816/1198] Compiling a_time.cc
[817/1198] Compiling a_type.cc
[818/1198] Compiling a_octet.cc
[819/1198] Compiling a_strnid.cc
[820/1198] Compiling a_strex.cc
[821/1198] Compiling a_mbstr.cc
[822/1198] Compiling a_i2d_fp.cc
[823/1198] Compiling a_object.cc
[824/1198] Compiling a_gentm.cc
[825/1198] Compiling a_dup.cc
[826/1198] Compiling a_int.cc
[827/1198] Compiling fiat_p256_adx_sqr.S
[828/1198] Compiling fiat_p256_adx_mul.S
[829/1198] Compiling fiat_curve25519_adx_square.S
[830/1198] Compiling a_d2i_fp.cc
[831/1198] Compiling md5-x86_64-linux.S
[832/1198] Compiling fiat_curve25519_adx_mul.S
[833/1198] Compiling md5-x86_64-apple.S
[834/1198] Compiling a_bool.cc
[835/1198] Compiling md5-586-linux.S
[836/1198] Compiling md5-586-apple.S
[837/1198] Compiling chacha20_poly1305_x86_64-apple.S
[838/1198] Compiling a_bitstr.cc
[839/1198] Compiling chacha20_poly1305_armv8-win.S
[840/1198] Compiling chacha20_poly1305_armv8-linux.S
[841/1198] Compiling chacha20_poly1305_armv8-apple.S
[842/1198] Compiling chacha20_poly1305_x86_64-linux.S
[842/1198] Compiling chacha-x86_64-linux.S
[844/1198] Compiling CCryptoBoringSSLShims shims.c
[845/1198] Compiling chacha-x86_64-apple.S
[846/1198] Compiling chacha-x86-linux.S
[847/1198] Compiling chacha-armv8-win.S
[848/1198] Compiling chacha-x86-apple.S
[849/1198] Compiling chacha-armv8-linux.S
[850/1198] Compiling chacha-armv8-apple.S
[851/1198] Compiling chacha-armv4-linux.S
[852/1198] Compiling err_data.cc
[853/1198] Compiling aes128gcmsiv-x86_64-apple.S
[854/1198] Compiling aes128gcmsiv-x86_64-linux.S
[855/1198] Compiling x86_64-mont-linux.S
[856/1198] Compiling x86_64-mont5-apple.S
[857/1198] Compiling x86-mont-linux.S
[858/1198] Compiling x86_64-mont5-linux.S
[859/1198] Compiling x86_64-mont-apple.S
[860/1198] Compiling x86-mont-apple.S
[861/1198] Compiling vpaes-x86_64-apple.S
[862/1198] Compiling vpaes-x86_64-linux.S
[863/1198] Compiling vpaes-x86-linux.S
[864/1198] Compiling vpaes-x86-apple.S
[865/1198] Compiling vpaes-armv8-apple.S
[866/1198] Compiling vpaes-armv8-win.S
[866/1198] Compiling vpaes-armv8-linux.S
[868/1198] Compiling vpaes-armv7-linux.S
[869/1198] Compiling sha512-x86_64-apple.S
[870/1198] Compiling sha512-armv8-win.S
[871/1198] Compiling sha512-armv8-linux.S
[872/1198] Compiling sha512-armv8-apple.S
[873/1198] Compiling sha512-armv4-linux.S
[874/1198] Compiling sha512-586-linux.S
[875/1198] Compiling sha512-x86_64-linux.S
[876/1198] Compiling sha512-586-apple.S
[877/1198] Compiling sha256-armv8-win.S
[878/1198] Compiling sha256-x86_64-apple.S
[879/1198] Compiling sha256-armv8-linux.S
[879/1198] Compiling sha256-armv8-apple.S
[881/1198] Compiling sha256-x86_64-linux.S
[882/1198] Compiling sha256-586-linux.S
[883/1198] Compiling sha256-armv4-linux.S
[884/1198] Compiling sha1-x86_64-apple.S
[885/1198] Compiling sha256-586-apple.S
[886/1198] Compiling sha1-armv8-linux.S
[887/1198] Compiling sha1-armv8-win.S
[888/1198] Compiling sha1-x86_64-linux.S
[889/1198] Compiling sha1-armv8-apple.S
[890/1198] Compiling sha1-armv4-large-linux.S
[891/1198] Compiling sha1-586-linux.S
[892/1198] Compiling rsaz-avx2-apple.S
[893/1198] Compiling rsaz-avx2-linux.S
[894/1198] Compiling sha1-586-apple.S
[895/1198] Compiling rdrand-x86_64-apple.S
[896/1198] Compiling p256_beeu-x86_64-asm-apple.S
[897/1198] Compiling rdrand-x86_64-linux.S
[898/1198] Compiling p256_beeu-x86_64-asm-linux.S
[899/1198] Compiling p256_beeu-armv8-asm-linux.S
[900/1198] Compiling p256_beeu-armv8-asm-win.S
[901/1198] Compiling p256_beeu-armv8-asm-apple.S
[902/1198] Compiling p256-armv8-asm-win.S
[903/1198] Compiling p256-x86_64-asm-apple.S
[904/1198] Compiling p256-x86_64-asm-linux.S
[905/1198] Compiling ghashv8-armv8-win.S
[906/1198] Compiling p256-armv8-asm-linux.S
[907/1198] Compiling p256-armv8-asm-apple.S
[908/1198] Compiling ghashv8-armv8-linux.S
[909/1198] Compiling ghashv8-armv8-apple.S
[910/1198] Compiling ghashv8-armv7-linux.S
[911/1198] Compiling ghash-x86_64-linux.S
[912/1198] Compiling ghash-x86_64-apple.S
[913/1198] Compiling ghash-x86-linux.S
[914/1198] Compiling ghash-x86-apple.S
[915/1198] Compiling ghash-ssse3-x86_64-apple.S
[916/1198] Compiling ghash-ssse3-x86-linux.S
[917/1198] Compiling ghash-ssse3-x86_64-linux.S
[918/1198] Compiling ghash-ssse3-x86-apple.S
[919/1198] Compiling ghash-neon-armv8-apple.S
[920/1198] Compiling ghash-neon-armv8-linux.S
[921/1198] Compiling ghash-neon-armv8-win.S
[921/1198] Compiling ghash-armv4-linux.S
[923/1198] Compiling co-586-apple.S
[924/1198] Compiling co-586-linux.S
[925/1198] Compiling bsaes-armv7-linux.S
[926/1198] Compiling bn-armv8-apple.S
[927/1198] Compiling bn-586-linux.S
[928/1198] Compiling bn-armv8-linux.S
[928/1198] Compiling bn-armv8-win.S
[930/1198] Compiling bn-586-apple.S
[931/1198] Compiling armv8-mont-win.S
[932/1198] Compiling armv8-mont-linux.S
[933/1198] Compiling armv4-mont-linux.S
[934/1198] Compiling armv8-mont-apple.S
[935/1198] Compiling aesv8-gcm-armv8-linux.S
[936/1198] Compiling aesv8-gcm-armv8-apple.S
[937/1198] Compiling aesv8-armv8-win.S
[938/1198] Compiling aesv8-gcm-armv8-win.S
[939/1198] Compiling aesv8-armv8-linux.S
[940/1198] Compiling aesv8-armv7-linux.S
[941/1198] Compiling aesv8-armv8-apple.S
[942/1198] Compiling aesni-x86_64-linux.S
[943/1198] Compiling aesni-x86-linux.S
[944/1198] Compiling aesni-x86-apple.S
[945/1198] Compiling aesni-gcm-x86_64-linux.S
[946/1198] Compiling aesni-x86_64-apple.S
[947/1198] Compiling aesni-gcm-x86_64-apple.S
[948/1198] Compiling aes-gcm-avx10-x86_64-linux.S
[949/1198] Compiling aes-gcm-avx10-x86_64-apple.S
[950/1198] Compiling x_x509a.cc
[951/1198] Compiling x_x509.cc
[952/1198] Compiling x_sig.cc
[953/1198] Compiling x_val.cc
[954/1198] Compiling x_req.cc
[955/1198] Compiling x_spki.cc
[956/1198] Compiling x_pubkey.cc
[957/1198] Compiling x_exten.cc
[958/1198] Compiling x_crl.cc
[959/1198] Compiling x_name.cc
[960/1198] Compiling x_attrib.cc
[961/1198] Compiling x_all.cc
[962/1198] Compiling c-nioatomics.c
[963/1198] Compiling x_algor.cc
[964/1198] Compiling x509spki.cc
[965/1198] Compiling c-atomics.c
[966/1198] Compiling x509_vpm.cc
[967/1198] Compiling x509rset.cc
[968/1198] Compiling x509name.cc
[969/1198] Compiling x509_v3.cc
[970/1198] Compiling x509cset.cc
[971/1198] Compiling x509_vfy.cc
[972/1204] Compiling x509_trs.cc
[973/1204] Compiling x509_txt.cc
[974/1204] Compiling x509_set.cc
[976/1204] Compiling NIOConcurrencyHelpers NIOLock.swift
[977/1204] Compiling NIOConcurrencyHelpers lock.swift
[977/1204] Compiling x509_lu.cc
[978/1204] Compiling x509_obj.cc
[979/1204] Compiling x509_ext.cc
[980/1204] Compiling x509_def.cc
[981/1204] Compiling x509_req.cc
[982/1204] Compiling x509_att.cc
[984/1204] Emitting module NIOConcurrencyHelpers
[985/1204] Compiling NIOConcurrencyHelpers atomics.swift
[986/1204] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[987/1204] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[987/1205] Compiling x509_d2.cc
[989/1205] Compiling x509.cc
[990/1205] Compiling x509_cmp.cc
[991/1205] Compiling v3_prn.cc
[992/1205] Compiling v3_purp.cc
[993/1205] Compiling v3_skey.cc
[994/1205] Compiling v3_utl.cc
[995/1205] Compiling v3_ocsp.cc
[996/1205] Compiling v3_pcons.cc
[997/1205] Compiling v3_pmaps.cc
[998/1205] Compiling v3_int.cc
[999/1231] Compiling v3_ncons.cc
[1001/1231] Compiling ConsoleKitTerminal Console+Wait.swift
[1002/1231] Compiling ConsoleKitTerminal ConsoleColor.swift
[1003/1231] Compiling ConsoleKitTerminal ConsoleStyle.swift
[1003/1234] Compiling v3_info.cc
[1004/1234] Compiling v3_lib.cc
[1005/1234] Compiling v3_ia5.cc
[1006/1234] Compiling v3_enum.cc
[1007/1234] Compiling v3_genn.cc
[1009/1234] Compiling ConsoleKitTerminal Console+Confirm.swift
[1010/1234] Compiling ConsoleKitTerminal Console+Input.swift
[1011/1234] Compiling ConsoleKitTerminal Console+Center.swift
[1012/1234] Compiling ConsoleKitTerminal Console+Output.swift
[1013/1234] Compiling ConsoleKitTerminal Console+Ephemeral.swift
[1014/1234] Compiling ConsoleKitTerminal ConsoleClear.swift
[1015/1234] Compiling ConsoleKitTerminal Console+Ask.swift
[1016/1234] Compiling ConsoleKitTerminal Console+Choose.swift
[1017/1234] Compiling ConsoleKitTerminal CustomActivity.swift
[1018/1234] Compiling ConsoleKitTerminal LoadingBar.swift
[1019/1234] Compiling ConsoleKitTerminal ProgressBar.swift
[1020/1234] Compiling ConsoleKitTerminal Console+Clear.swift
[1021/1234] Compiling ConsoleKitTerminal ActivityBar.swift
[1022/1234] Compiling ConsoleKitTerminal ActivityIndicator.swift
[1023/1234] Compiling ConsoleKitTerminal ActivityIndicatorRenderer.swift
[1024/1234] Compiling ConsoleKitTerminal ActivityIndicatorState.swift
[1025/1234] Emitting module ConsoleKitTerminal
[1025/1234] Compiling v3_extku.cc
[1026/1234] Compiling v3_conf.cc
[1027/1234] Compiling v3_alt.cc
[1029/1234] Compiling ConsoleKitTerminal ConsoleText.swift
[1030/1234] Compiling ConsoleKitTerminal ConsoleTextFragment.swift
[1031/1234] Compiling ConsoleKitTerminal ANSI.swift
[1032/1234] Compiling ConsoleKitTerminal Console.swift
[1033/1234] Compiling ConsoleKitTerminal Terminal.swift
[1034/1234] Compiling ConsoleKitTerminal readpassphrase_linux.swift
[1034/1234] Compiling v3_crld.cc
[1036/1234] Compiling ConsoleKitTerminal AnySendableHashable.swift
[1037/1234] Compiling ConsoleKitTerminal ConsoleLogger.swift
[1038/1234] Compiling ConsoleKitTerminal LoggerFragment.swift
[1038/1234] Compiling v3_bcons.cc
[1039/1235] Compiling v3_bitst.cc
[1040/1235] Compiling v3_cpols.cc
[1042/1235] Compiling v3_akeya.cc
[1043/1235] Compiling v3_akey.cc
[1044/1235] Compiling t_x509.cc
[1045/1235] Compiling t_x509a.cc
[1046/1235] Compiling t_req.cc
[1047/1235] Compiling t_crl.cc
[1048/1235] Compiling rsa_pss.cc
[1049/1235] Compiling i2d_pr.cc
[1050/1235] Compiling policy.cc
[1051/1248] Compiling by_file.cc
[1052/1257] Compiling name_print.cc
[1054/1257] Emitting module ConsoleKitCommands
[1054/1257] Compiling algorithm.cc
[1055/1259] Compiling asn1_gen.cc
[1056/1259] Compiling by_dir.cc
[1057/1259] Compiling a_digest.cc
[1058/1259] Compiling voprf.cc
[1059/1259] Compiling a_sign.cc
[1060/1259] Compiling a_verify.cc
[1062/1259] Compiling ConsoleKitCommands CommandGroup.swift
[1063/1259] Compiling ConsoleKitCommands CommandInput.swift
[1064/1259] Compiling ConsoleKitCommands Commands.swift
[1065/1259] Compiling ConsoleKitCommands CommandSignature.swift
[1066/1259] Compiling ConsoleKitCommands Flag.swift
[1067/1259] Compiling ConsoleKitCommands Option.swift
[1068/1259] Compiling ConsoleKitCommands GenerateAutocompleteCommand.swift
[1069/1259] Compiling ConsoleKitCommands MergedAsyncCommandGroup.swift
[1070/1259] Compiling ConsoleKitCommands Argument.swift
[1071/1259] Compiling ConsoleKitCommands Command.swift
[1072/1259] Compiling ConsoleKitCommands CommandContext.swift
[1073/1259] Compiling ConsoleKitCommands CommandError.swift
[1074/1259] Compiling ConsoleKitCommands AsyncCommands.swift
[1075/1259] Compiling ConsoleKitCommands GenerateAsyncAutocompleteCommand.swift
[1076/1259] Compiling ConsoleKitCommands AnyCommand.swift
[1077/1259] Compiling ConsoleKitCommands AnyAsyncCommand.swift
[1078/1259] Compiling ConsoleKitCommands AsyncCommand.swift
[1079/1259] Compiling ConsoleKitCommands AsyncCommandGroup.swift
[1079/1259] Compiling thread_pthread.cc
[1081/1259] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[1082/1259] Compiling ConsoleKitCommands Utilities.swift
[1082/1259] Compiling thread.cc
[1083/1259] Compiling stack.cc
[1084/1259] Compiling thread_win.cc
[1085/1259] Compiling thread_none.cc
[1086/1259] Compiling trust_token.cc
[1087/1259] Compiling wots.cc
[1088/1259] Compiling pmbtoken.cc
[1089/1259] Compiling merkle.cc
[1090/1259] Compiling fors.cc
[1091/1259] Compiling slhdsa.cc
[1092/1259] Compiling thash.cc
[1093/1259] Compiling siphash.cc
[1094/1259] Compiling sha512.cc
[1095/1259] Compiling sha256.cc
[1096/1259] Compiling sha1.cc
[1097/1259] Compiling rsa_extra.cc
[1097/1259] Compiling rsa_print.cc
[1099/1259] Compiling rc4.cc
[1100/1259] Compiling rsa_crypt.cc
[1101/1259] Compiling refcount.cc
[1102/1259] Compiling rsa_asn1.cc
[1103/1259] Compiling windows.cc
[1104/1259] Compiling trusty.cc
[1106/1259] Compiling ConsoleKitCommands Console+Run.swift
[1107/1259] Compiling ConsoleKitCommands ConsoleError.swift
[1108/1259] Compiling ConsoleKitCommands Completion.swift
[1108/1260] Compiling rand_extra.cc
[1108/1260] Compiling urandom.cc
[1110/1260] Compiling passive.cc
[1112/1260] Compiling ios.cc
[1113/1260] Compiling deterministic.cc
[1114/1260] Compiling fork_detect.cc
[1115/1260] Compiling forkunsafe.cc
[1116/1260] Compiling pool.cc
[1117/1260] Compiling poly1305_arm_asm.S
[1118/1260] Compiling getentropy.cc
[1119/1260] Compiling poly1305_vec.cc
[1120/1260] Compiling poly1305.cc
[1121/1260] Compiling poly1305_arm.cc
[1122/1262] Compiling pkcs7.cc
[1124/1262] Compiling ConsoleKit Exports.swift
[1125/1262] Emitting module ConsoleKit
[1126/1263] Compiling pkcs8.cc
[1127/1263] Compiling pkcs7_x509.cc
[1128/1263] Compiling pkcs8_x509.cc
[1129/1263] Compiling p5_pbev2.cc
[1130/1263] Compiling pem_xaux.cc
[1131/1263] Compiling pem_x509.cc
[1132/1263] Compiling pem_pkey.cc
[1133/1263] Compiling obj_xref.cc
[1134/1263] Compiling pem_pk8.cc
[1135/1263] Compiling pem_oth.cc
[1136/1263] Compiling pem_info.cc
[1137/1263] Compiling pem_lib.cc
[1138/1263] Compiling obj.cc
[1139/1263] Compiling pem_all.cc
[1140/1263] Compiling mldsa.cc
[1141/1263] Compiling mem.cc
[1142/1263] Compiling mlkem.cc
[1143/1263] Compiling md5.cc
[1144/1263] Compiling kyber.cc
[1145/1263] Compiling lhash.cc
[1146/1263] Compiling hrss.cc
[1147/1263] Compiling fips_shared_support.cc
[1148/1263] Compiling poly_rq_mul.S
[1149/1263] Compiling md4.cc
[1150/1263] Compiling hpke.cc
[1151/1263] Compiling ex_data.cc
[1152/1263] Compiling scrypt.cc
[1153/1263] Compiling sign.cc
[1154/1263] Compiling pbkdf.cc
[1155/1263] Compiling print.cc
[1156/1263] Compiling p_x25519_asn1.cc
[1157/1263] Compiling p_x25519.cc
[1158/1263] Compiling p_rsa_asn1.cc
[1159/1263] Compiling p_ed25519.cc
[1160/1263] Compiling p_ed25519_asn1.cc
[1161/1263] Compiling p_hkdf.cc
[1162/1263] Compiling p_rsa.cc
[1163/1263] Compiling p_ec_asn1.cc
[1164/1263] Compiling p_ec.cc
[1165/1263] Compiling p_dsa_asn1.cc
[1166/1263] Compiling p_dh.cc
[1167/1263] Compiling evp_ctx.cc
[1167/1263] Compiling p_dh_asn1.cc
[1169/1263] Compiling err.cc
[1170/1263] Compiling evp.cc
[1171/1263] Compiling evp_asn1.cc
[1172/1263] Compiling engine.cc
[1173/1263] Compiling ecdh_extra.cc
[1174/1263] Compiling ecdsa_asn1.cc
[1174/1263] Compiling hash_to_curve.cc
[1176/1263] Compiling ec_derive.cc
[1177/1263] Compiling ec_asn1.cc
[1178/1263] Compiling dsa_asn1.cc
[1179/1263] Compiling dsa.cc
[1180/1263] Compiling params.cc
[1181/1263] Compiling dh_asn1.cc
[1182/1263] Compiling x25519-asm-arm.S
[1182/1263] Compiling digest_extra.cc
[1184/1263] Compiling des.cc
[1185/1263] Compiling spake25519.cc
[1186/1263] Compiling cpu_arm_freebsd.cc
[1187/1263] Compiling crypto.cc
[1188/1263] Compiling cpu_arm_linux.cc
[1189/1263] Compiling cpu_intel.cc
[1190/1263] Compiling cpu_aarch64_win.cc
[1191/1263] Compiling curve25519.cc
[1192/1263] Compiling curve25519_64_adx.cc
[1193/1263] Compiling cpu_aarch64_openbsd.cc
[1194/1263] Compiling cpu_aarch64_linux.cc
[1194/1263] Compiling cpu_aarch64_sysreg.cc
[1196/1263] Compiling cpu_aarch64_fuchsia.cc
[1197/1263] Compiling conf.cc
[1198/1263] Compiling cpu_aarch64_apple.cc
[1199/1263] Compiling tls_cbc.cc
[1200/1263] Compiling e_tls.cc
[1201/1263] Compiling e_null.cc
[1202/1263] Compiling e_rc4.cc
[1203/1263] Compiling e_rc2.cc
[1204/1263] Compiling e_des.cc
[1205/1263] Compiling e_chacha20poly1305.cc
[1206/1263] Compiling bcm.cc
[1207/1263] Compiling derive_key.cc
[1208/1263] Compiling e_aesgcmsiv.cc
[1209/1263] Compiling e_aesctrhmac.cc
[1210/1263] Compiling chacha.cc
[1211/1263] Compiling cipher_extra.cc
[1212/1263] Compiling unicode.cc
[1213/1263] Compiling cbs.cc
[1214/1263] Compiling cbb.cc
[1215/1263] Compiling ber.cc
[1216/1263] Compiling asn1_compat.cc
[1217/1263] Compiling buf.cc
[1218/1263] Compiling bn_asn1.cc
[1219/1263] Compiling blake2.cc
[1220/1263] Compiling convert.cc
[1221/1263] Compiling printf.cc
[1222/1263] Compiling pair.cc
[1222/1263] Compiling hexdump.cc
[1224/1263] Compiling errno.cc
[1225/1263] Compiling fd.cc
[1225/1263] Compiling base64.cc
[1225/1263] Compiling file.cc
[1228/1263] Compiling bio.cc
[1229/1263] Compiling tasn_typ.cc
[1230/1263] Compiling bio_mem.cc
[1231/1263] Compiling tasn_utl.cc
[1232/1263] Compiling f_int.cc
[1233/1263] Compiling f_string.cc
[1234/1263] Compiling tasn_fre.cc
[1235/1263] Compiling asn_pack.cc
[1236/1263] Compiling posix_time.cc
[1237/1263] Compiling tasn_enc.cc
[1238/1263] Compiling tasn_new.cc
[1239/1263] Compiling tasn_dec.cc
[1240/1263] Compiling asn1_par.cc
[1240/1263] Compiling a_type.cc
[1242/1263] Compiling a_utctm.cc
[1243/1263] Compiling a_time.cc
[1244/1263] Compiling a_octet.cc
[1245/1263] Compiling asn1_lib.cc
[1246/1263] Compiling a_strnid.cc
[1247/1263] Compiling a_strex.cc
[1248/1263] Compiling a_i2d_fp.cc
[1249/1263] Compiling a_mbstr.cc
[1250/1263] Compiling a_dup.cc
[1251/1263] Compiling a_object.cc
[1252/1263] Compiling a_d2i_fp.cc
[1253/1263] Compiling a_bool.cc
[1254/1263] Compiling a_gentm.cc
[1255/1263] Write sources
[1260/1263] Compiling CAsyncHTTPClient CAsyncHTTPClient.c
[1261/1263] Compiling a_int.cc
[1262/1263] Compiling a_bitstr.cc
[1264/1368] Compiling BitCollections BitArray+Codable.swift
[1265/1368] Compiling BitCollections BitArray+Collection.swift
[1266/1368] Compiling BitCollections BitArray+Copy.swift
[1267/1368] Compiling BitCollections BitArray+Extras.swift
[1268/1368] Compiling BitCollections BitArray+Fill.swift
[1269/1370] Compiling Atomics IntegerOperations.swift
[1270/1370] Compiling Atomics Unmanaged extensions.swift
[1271/1370] Compiling BitCollections BitArray+Equatable.swift
[1272/1370] Compiling BitCollections BitArray+RandomBits.swift
[1273/1370] Compiling BitCollections BitArray+RangeReplaceableCollection.swift
[1274/1370] Compiling BitCollections BitArray+CustomReflectable.swift
[1275/1370] Compiling BitCollections BitArray+Descriptions.swift
[1276/1370] Compiling BitCollections BitSet+Initializers.swift
[1277/1370] Compiling BitCollections BitSet+Invariants.swift
[1278/1370] Compiling BitCollections BitSet+Random.swift
[1279/1370] Compiling BitCollections BitSet+SetAlgebra basics.swift
[1280/1370] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[1281/1370] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[1282/1370] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[1283/1370] Compiling BitCollections BitSet+CustomDebugStringConvertible.swift
[1284/1370] Compiling BitCollections BitSet+CustomReflectable.swift
[1285/1370] Compiling BitCollections BitSet+CustomStringConvertible.swift
[1286/1370] Compiling BitCollections BitSet+Equatable.swift
[1287/1370] Compiling BitCollections BitSet+ExpressibleByArrayLiteral.swift
[1288/1370] Compiling BitCollections BitSet+Extras.swift
[1289/1370] Compiling BitCollections BitSet+Hashable.swift
[1290/1370] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[1291/1370] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[1292/1370] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[1293/1370] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[1294/1370] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[1295/1370] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[1296/1370] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[1297/1377] Compiling CryptoBoringWrapper RandomBytes.swift
[1298/1377] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[1299/1377] Emitting module BitCollections
[1300/1377] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[1301/1377] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[1302/1377] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[1303/1377] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[1304/1377] Compiling BitCollections BitSet+SetAlgebra union.swift
[1305/1377] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[1306/1377] Compiling BitCollections BitSet.Counted.swift
[1307/1377] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[1308/1377] Emitting module CryptoBoringWrapper
[1309/1377] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[1310/1377] Compiling BitCollections BitArray+ExpressibleByArrayLiteral.swift
[1311/1377] Compiling BitCollections BitArray+ExpressibleByStringLiteral.swift
[1314/1377] Compiling BitCollections BitArray+Hashable.swift
[1315/1377] Compiling BitCollections BitArray+Initializers.swift
[1316/1377] Compiling BitCollections BitArray+Invariants.swift
[1317/1377] Compiling BitCollections BitArray+LosslessStringConvertible.swift
[1318/1377] Compiling BitCollections BitArray+BitwiseOperations.swift
[1319/1377] Compiling BitCollections BitArray+ChunkedBitsIterators.swift
[1330/1377] Compiling BitCollections BitArray._UnsafeHandle.swift
[1331/1377] Compiling BitCollections BitArray.swift
[1332/1377] Compiling BitCollections BitSet+BidirectionalCollection.swift
[1333/1377] Compiling BitCollections BitSet+Codable.swift
[1340/1377] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[1341/1377] Compiling CryptoBoringWrapper EllipticCurve.swift
[1342/1380] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[1343/1381] Compiling BitCollections BitSet.Index.swift
[1344/1381] Compiling BitCollections BitSet._UnsafeHandle.swift
[1345/1381] Compiling BitCollections BitSet.swift
[1346/1381] Compiling BitCollections Range+Utilities.swift
[1347/1381] Compiling BitCollections Slice+Utilities.swift
[1348/1381] Compiling BitCollections UInt+Tricks.swift
[1349/1381] Compiling BitCollections _Word.swift
[1352/1453] Emitting module Collections
[1353/1453] Compiling Collections Collections.swift
[1354/1456] Compiling Crypto HPKE-Utils.swift
[1355/1456] Compiling Crypto DHKEM.swift
[1356/1456] Compiling Crypto HPKE-KEM-Curve25519.swift
[1358/1456] Compiling Crypto HPKE-Ciphersuite.swift
[1359/1456] Compiling Crypto HPKE-KDF.swift
[1360/1456] Compiling Crypto HPKE-KexKeyDerivation.swift
[1361/1456] Compiling Crypto HPKE-LabeledExtract.swift
[1362/1456] Compiling Crypto Cipher.swift
[1363/1456] Compiling Crypto Nonces.swift
[1364/1456] Compiling Crypto ASN1.swift
[1365/1456] Compiling Crypto ASN1Strings.swift
[1366/1456] Compiling Crypto ArraySliceBigint.swift
[1367/1456] Compiling Crypto GeneralizedTime.swift
[1368/1456] Compiling Crypto ASN1Any.swift
[1369/1456] Compiling Crypto ASN1BitString.swift
[1370/1456] Compiling Crypto ASN1Boolean.swift
[1371/1456] Compiling Crypto ASN1Identifier.swift
[1372/1456] Emitting module Atomics
[1373/1456] Compiling Crypto AES-GCM.swift
[1374/1456] Compiling Crypto AES-GCM_boring.swift
[1382/1458] Compiling Crypto SymmetricKeys.swift
[1383/1458] Compiling Crypto HMAC.swift
[1384/1458] Compiling Crypto MACFunctions.swift
[1385/1458] Compiling Crypto MessageAuthenticationCode.swift
[1386/1458] Compiling Crypto AES.swift
[1387/1458] Compiling Crypto ECDSASignature_boring.swift
[1388/1458] Compiling Crypto ECDSA_boring.swift
[1389/1458] Compiling Crypto EdDSA_boring.swift
[1390/1458] Compiling Crypto ECDSA.swift
[1391/1458] Compiling Crypto Ed25519.swift
[1392/1525] Compiling NIOCore MarkedCircularBuffer.swift
[1393/1525] Compiling NIOCore MulticastChannel.swift
[1394/1525] Compiling NIOCore NIOAny.swift
[1395/1525] Compiling NIOCore NIOCloseOnErrorHandler.swift
[1396/1525] Compiling NIOCore NIOLoopBound.swift
[1397/1525] Compiling NIOCore NIOScheduledCallback.swift
[1398/1525] Compiling NIOCore NIOSendable.swift
[1399/1525] Compiling NIOCore RecvByteBufferAllocator.swift
[1400/1525] Compiling Crypto NISTCurvesKeys.swift
[1401/1525] Compiling Crypto X25519Keys.swift
[1402/1525] Compiling NIOCore AddressedEnvelope.swift
[1403/1525] Compiling NIOCore AsyncAwaitSupport.swift
[1404/1525] Compiling NIOCore AsyncChannel.swift
[1405/1525] Compiling NIOCore AsyncChannelHandler.swift
[1406/1525] Emitting module Algorithms
[1408/1526] Compiling NIOCore DeadChannel.swift
[1409/1526] Compiling NIOCore DispatchQueue+WithFuture.swift
[1410/1526] Compiling NIOCore EventLoop+Deprecated.swift
[1411/1526] Compiling NIOCore EventLoop+SerialExecutor.swift
[1412/1526] Compiling NIOCore EventLoop.swift
[1413/1526] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[1414/1526] Compiling NIOCore EventLoopFuture+Deprecated.swift
[1415/1526] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[1416/1526] Compiling NIOCore EventLoopFuture.swift
[1417/1526] Compiling NIOCore FileDescriptor.swift
[1418/1526] Compiling NIOCore ByteBuffer-views.swift
[1419/1526] Compiling NIOCore Channel.swift
[1420/1526] Compiling NIOCore ChannelHandler.swift
[1421/1526] Compiling NIOCore ChannelHandlers.swift
[1422/1526] Compiling NIOCore ChannelInvoker.swift
[1423/1526] Compiling NIOCore ChannelOption.swift
[1424/1526] Compiling NIOCore ChannelPipeline.swift
[1425/1526] Compiling NIOCore CircularBuffer.swift
[1426/1526] Compiling NIOCore Codec.swift
[1427/1526] Compiling NIOCore ConvenienceOptionSupport.swift
[1428/1526] Compiling NIOCore FileHandle.swift
[1429/1526] Compiling NIOCore FileRegion.swift
[1430/1526] Compiling NIOCore GlobalSingletons.swift
[1431/1526] Compiling NIOCore IO.swift
[1432/1526] Compiling NIOCore IOData.swift
[1433/1526] Compiling NIOCore IPProtocol.swift
[1434/1526] Compiling NIOCore IntegerBitPacking.swift
[1435/1526] Compiling NIOCore IntegerTypes.swift
[1436/1526] Compiling NIOCore Interfaces.swift
[1437/1526] Compiling NIOCore Linux.swift
[1438/1526] Emitting module Crypto
[1443/1526] Compiling NIOCore AsyncChannelInboundStream.swift
[1444/1526] Compiling NIOCore AsyncChannelOutboundWriter.swift
[1445/1526] Compiling NIOCore NIOAsyncSequenceProducer.swift
[1446/1526] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[1447/1526] Compiling NIOCore NIOAsyncWriter.swift
[1448/1526] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[1449/1526] Compiling NIOCore BSDSocketAPI.swift
[1450/1526] Compiling NIOCore ByteBuffer-aux.swift
[1451/1526] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[1452/1526] Compiling NIOCore ByteBuffer-conversions.swift
[1453/1526] Compiling NIOCore ByteBuffer-core.swift
[1454/1526] Compiling NIOCore ByteBuffer-hex.swift
[1455/1526] Compiling NIOCore ByteBuffer-int.swift
[1456/1526] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[1457/1526] Compiling NIOCore ByteBuffer-multi-int.swift
[1458/1526] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[1459/1526] Compiling Crypto Signature.swift
[1460/1526] Compiling Crypto CryptoKitErrors_boring.swift
[1461/1526] Compiling Crypto RNG_boring.swift
[1462/1526] Compiling Crypto SafeCompare_boring.swift
[1463/1526] Compiling Crypto Zeroization_boring.swift
[1464/1526] Compiling Crypto PrettyBytes.swift
[1465/1526] Compiling Crypto SafeCompare.swift
[1466/1526] Compiling Crypto SecureBytes.swift
[1467/1526] Compiling Crypto Zeroization.swift
[1493/1535] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[1494/1535] Compiling NIOCore SocketAddresses.swift
[1495/1535] Compiling NIOCore SocketOptionProvider.swift
[1496/1535] Compiling NIOCore SystemCallHelpers.swift
[1497/1535] Compiling NIOCore TimeAmount+Duration.swift
[1498/1535] Compiling NIOCore TypeAssistedChannelHandler.swift
[1499/1535] Compiling NIOCore UniversalBootstrapSupport.swift
[1500/1535] Compiling NIOCore Utilities.swift
[1535/1535] Emitting module NIOCore
[1537/1587] Compiling NIOPosix PooledRecvBufferAllocator.swift
[1538/1587] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[1539/1587] Compiling NIOPosix PosixSingletons.swift
[1540/1587] Compiling NIOPosix RawSocketBootstrap.swift
[1541/1587] Compiling NIOPosix Resolver.swift
[1542/1587] Compiling NIOPosix Selectable.swift
[1543/1593] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[1544/1593] Compiling NIOEmbedded AsyncTestingChannel.swift
[1545/1593] Compiling NIOEmbedded Embedded.swift
[1546/1593] Emitting module NIOEmbedded
[1548/1594] Compiling NIOPosix ThreadPosix.swift
[1549/1594] Compiling NIOPosix ThreadWindows.swift
[1550/1594] Compiling NIOPosix UnsafeTransfer.swift
[1551/1594] Compiling NIOPosix Utilities.swift
[1552/1594] Compiling NIOPosix VsockAddress.swift
[1553/1594] Compiling NIOPosix VsockChannelEvents.swift
[1554/1594] Emitting module NIOPosix
[1555/1594] Compiling NIOPosix IO.swift
[1556/1594] Compiling NIOPosix IntegerBitPacking.swift
[1557/1594] Compiling NIOPosix IntegerTypes.swift
[1558/1594] Compiling NIOPosix Linux.swift
[1559/1594] Compiling NIOPosix LinuxCPUSet.swift
[1560/1594] Compiling NIOPosix LinuxUring.swift
[1561/1594] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[1562/1594] Compiling NIOPosix BSDSocketAPICommon.swift
[1563/1594] Compiling NIOPosix BSDSocketAPIPosix.swift
[1564/1594] Compiling NIOPosix BSDSocketAPIWindows.swift
[1565/1594] Compiling NIOPosix BaseSocket.swift
[1566/1594] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[1567/1594] Compiling NIOPosix BaseSocketChannel.swift
[1568/1594] Compiling NIOPosix BaseStreamSocketChannel.swift
[1569/1594] Compiling NIOPosix SelectableChannel.swift
[1570/1594] Compiling NIOPosix SelectableEventLoop.swift
[1571/1594] Compiling NIOPosix SelectorEpoll.swift
[1572/1594] Compiling NIOPosix SelectorGeneric.swift
[1573/1594] Compiling NIOPosix SelectorKqueue.swift
[1574/1594] Compiling NIOPosix SelectorUring.swift
[1575/1594] Compiling NIOPosix ServerSocket.swift
[1576/1594] Compiling NIOPosix Socket.swift
[1577/1594] Compiling NIOPosix SocketChannel.swift
[1578/1594] Compiling NIOPosix SocketProtocols.swift
[1579/1594] Compiling NIOPosix System.swift
[1580/1594] Compiling NIOPosix Thread.swift
[1581/1594] Compiling NIOPosix Bootstrap.swift
[1582/1594] Compiling NIOPosix ControlMessage.swift
[1583/1594] Compiling NIOPosix DatagramVectorReadManager.swift
[1584/1594] Compiling NIOPosix Errors+Any.swift
[1585/1594] Compiling NIOPosix FileDescriptor.swift
[1586/1594] Compiling NIOPosix GetaddrinfoResolver.swift
[1587/1594] Compiling NIOPosix HappyEyeballs.swift
[1588/1594] Compiling NIOPosix NIOThreadPool.swift
[1589/1594] Compiling NIOPosix NonBlockingFileIO.swift
[1590/1594] Compiling NIOPosix PendingDatagramWritesManager.swift
[1591/1594] Compiling NIOPosix PendingWritesManager.swift
[1592/1594] Compiling NIOPosix PipeChannel.swift
[1593/1594] Compiling NIOPosix PipePair.swift
[1594/1594] Compiling NIOPosix Pool.swift
[1596/1654] Compiling NIO Exports.swift
[1597/1654] Emitting module NIO
[1598/1655] Compiling _NIOFileSystem FileType.swift
[1599/1655] Compiling _NIOFileSystem IOStrategy.swift
[1600/1655] Compiling _NIOFileSystem ByteCount.swift
[1602/1696] Compiling NIOHTTP1 ByteCollectionUtils.swift
[1603/1696] Compiling NIOHTTP1 HTTPDecoder.swift
[1604/1696] Compiling NIOSOCKS AuthenticationMethod.swift
[1605/1696] Compiling NIOSOCKS Messages.swift
[1606/1696] Compiling NIOSOCKS SOCKSRequest.swift
[1607/1696] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[1608/1696] Compiling NIOTLS TLSEvents.swift
[1609/1696] Compiling AsyncKit Optional+StrictMap.swift
[1610/1696] Compiling AsyncKit Exports.swift
[1611/1696] Emitting module NIOTLS
[1612/1696] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[1613/1696] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[1614/1696] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[1615/1696] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[1616/1696] Compiling NIOSOCKS ClientStateMachine.swift
[1617/1696] Compiling NIOSOCKS SOCKSResponse.swift
[1618/1697] Emitting module NIOFoundationCompat
[1619/1697] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[1620/1698] Compiling _NIOFileSystem FileDescriptor+Syscalls.swift
[1621/1698] Compiling _NIOFileSystem Mocking.swift
[1622/1698] Compiling _NIOFileSystem Syscall.swift
[1623/1698] Compiling _NIOFileSystem Syscalls.swift
[1624/1698] Compiling _NIOFileSystem ParallelDirCopy.swift
[1625/1698] Compiling _NIOFileSystem ParallelRemoval.swift
[1626/1698] Compiling _NIOFileSystem String+UnsafeUnititializedCapacity.swift
[1627/1698] Compiling _NIOFileSystem CInterop.swift
[1628/1698] Compiling _NIOFileSystem Errno.swift
[1630/1702] Compiling NIOSOCKS Errors.swift
[1631/1702] Compiling NIOSOCKS Helpers.swift
[1633/1702] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[1636/1702] Emitting module NIOSOCKS
[1639/1702] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[1640/1702] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[1641/1702] Compiling NIOTLS SNIHandler.swift
[1642/1702] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[1644/1703] Compiling NIOSOCKS ServerStateMachine.swift
[1648/1706] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[1649/1706] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[1650/1757] Compiling NIOSSL SSLInit.swift
[1651/1757] Compiling NIOSSL SSLPKCS12Bundle.swift
[1652/1757] Compiling NIOSSL IdentityVerification.swift
[1653/1757] Compiling NIOSSL LinuxCABundle.swift
[1654/1757] Compiling NIOSSL NIOSSLClientHandler.swift
[1655/1757] Compiling NIOSSL NIOSSLHandler+Configuration.swift
[1656/1757] Compiling NIOSSL SSLPrivateKey.swift
[1657/1757] Compiling NIOSSL NIOSSLServerHandler.swift
[1662/1757] Compiling NIOSSL NIOSSLHandler.swift
[1663/1757] Compiling NIOSSL SSLErrors.swift
[1665/1757] Compiling NIOSSL ObjectIdentifier.swift
[1666/1757] Compiling NIOSSL PosixPort.swift
[1667/1759] Emitting module NIOTransportServices
[1668/1759] Compiling NIOSSL SSLConnection.swift
[1669/1759] Compiling NIOSSL SSLContext.swift
[1670/1759] Compiling NIOSSL SSLPublicKey.swift
[1671/1759] Compiling NIOSSL SSLCallbacks.swift
[1672/1759] Compiling NIOSSL SSLCertificate.swift
[1673/1759] Compiling NIOSSL SSLCertificateExtensions.swift
[1677/1759] Compiling NIOSSL AndroidCABundle.swift
[1678/1759] Compiling NIOSSL ByteBufferBIO.swift
[1679/1759] Compiling NIOSSL CustomPrivateKey.swift
[1685/1759] Compiling _NIOFileSystem BufferedOrAnyStream.swift
[1686/1759] Compiling _NIOFileSystem BufferedStream.swift
[1687/1759] Compiling _NIOFileSystem Cancellation.swift
[1688/1759] Compiling _NIOFileSystem TokenBucket.swift
[1689/1759] Compiling _NIOFileSystem UnsafeTransfer.swift
[1690/1759] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1691/1759] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1695/1760] Emitting module NIOHTTP1
[1703/1761] Compiling NIOSSL SubjectAlternativeName.swift
[1704/1761] Compiling NIOSSL NIOSSLSecureBytes.swift
[1705/1761] Compiling NIOSSL RNG.swift
[1706/1761] Compiling NIOSSL SafeCompare.swift
[1707/1761] Compiling NIOSSL Zeroization.swift
[1708/1809] Compiling NIOExtras NIOExtrasError.swift
[1709/1809] Compiling NIOExtras NIOLengthFieldBitLength.swift
[1710/1809] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
[1711/1809] Compiling NIOExtras LengthFieldPrepender.swift
[1712/1810] Compiling NIOExtras DebugInboundEventsHandler.swift
[1713/1810] Compiling NIOExtras DebugOutboundEventsHandler.swift
[1714/1810] Compiling NIOExtras FixedLengthFrameDecoder.swift
[1715/1810] Compiling NIOExtras LineBasedFrameDecoder.swift
[1716/1828] Emitting module NIOSSL
[1717/1828] Compiling _NIOFileSystem SystemFileHandle.swift
[1718/1828] Compiling _NIOFileSystem Utilities.swift
[1719/1828] Compiling _NIOFileSystem OpenOptions.swift
[1720/1828] Compiling _NIOFileSystem String+FileSystem.swift
[1721/1828] Compiling MultipartKit MultipartPart.swift
[1722/1828] Compiling MultipartKit MultipartPartConvertible.swift
[1723/1830] Compiling NIOWebSocket WebSocketOpcode.swift
[1724/1831] Compiling NIOHPACK IndexedHeaderTable.swift
[1725/1831] Compiling NIOHPACK IntegerCoding.swift
[1726/1832] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[1727/1832] Compiling NIOHPACK StaticHeaderTable.swift
[1728/1832] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1729/1832] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[1730/1832] Compiling NIOHTTPCompression HTTPDecompression.swift
[1731/1832] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1732/1832] Emitting module NIOHTTPCompression
[1733/1832] Compiling MultipartKit BasicCodingKey.swift
[1734/1832] Compiling MultipartKit MultipartError.swift
[1735/1832] Compiling MultipartKit MultipartFormData.swift
[1736/1832] Compiling MultipartKit MultipartParser.swift
[1739/1834] Compiling NIOExtras RequestResponseWithIDHandler.swift
[1740/1834] Compiling NIOExtras WritePCAPHandler.swift
[1743/1834] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[1744/1834] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[1745/1834] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[1746/1834] Emitting module NIOExtras
[1747/1834] Compiling MultipartKit MultipartSerializer.swift
[1748/1834] Compiling MultipartKit Utilities.swift
[1749/1834] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[1750/1834] Compiling NIOHPACK HuffmanTables.swift
[1751/1834] Compiling MultipartKit FormDataEncoder.Encoder.swift
[1753/1834] Emitting module NIOWebSocket
[1754/1834] Emitting module _NIOFileSystem
[1760/1834] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[1761/1834] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[1762/1834] Compiling MultipartKit FormDataDecoder.swift
[1772/1835] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1773/1835] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1774/1835] Compiling NIOHTTPCompression HTTPCompression.swift
[1781/1836] Compiling MultipartKit Exports.swift
[1782/1836] Emitting module MultipartKit
[1783/1836] Compiling MultipartKit FormDataDecoder.Decoder.swift
[1784/1836] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[1786/1837] Compiling NIOHPACK HuffmanCoding.swift
[1789/1837] Emitting module NIOHPACK
[1800/1837] Compiling NIOWebSocket WebSocketFrame.swift
[1801/1837] Compiling NIOWebSocket WebSocketErrorCodes.swift
[1821/1839] Compiling NIOSSL TLSConfiguration.swift
[1822/1839] Compiling NIOSSL UniversalBootstrapSupport.swift
[1823/1839] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[1826/1845] Emitting module NIOFileSystem
[1827/1845] Compiling NIOFileSystem Exports.swift
[1828/1845] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[1829/1845] Emitting module _NIOFileSystemFoundationCompat
[1830/1846] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[1836/1914] Compiling WebSocketKit WebSocket+Connect.swift
[1837/1914] Compiling WebSocketKit WebSocketHandler.swift
[1838/1914] Compiling WebSocketKit Exports.swift
[1839/1914] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[1840/1914] Emitting module WebSocketKit
[1841/1914] Compiling WebSocketKit WebSocket+Concurrency.swift
[1842/1914] Compiling WebSocketKit WebSocket.swift
[1843/1914] Compiling WebSocketKit WebSocketClient.swift
[1844/1915] Emitting module AsyncKit
[1846/1915] Compiling NIOHTTP2 MaySendFrames.swift
[1847/1915] Compiling NIOHTTP2 SendingDataState.swift
[1848/1915] Compiling NIOHTTP2 SendingGoawayState.swift
[1849/1915] Compiling NIOHTTP2 SendingHeadersState.swift
[1850/1915] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1851/1915] Compiling NIOHTTP2 SendingRstStreamState.swift
[1852/1915] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1853/1915] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1854/1915] Compiling NIOHTTP2 StateMachineResult.swift
[1855/1915] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1856/1915] Compiling NIOHTTP2 DOSHeuristics.swift
[1857/1915] Compiling NIOHTTP2 Error+Any.swift
[1858/1915] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1859/1915] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1860/1915] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1861/1915] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1862/1923] Emitting module NIOHTTP2
[1863/1923] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1864/1923] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1865/1923] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1866/1923] Compiling NIOHTTP2 HTTP2StreamID.swift
[1867/1923] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1868/1923] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1869/1923] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1870/1923] Compiling NIOHTTP2 InboundEventBuffer.swift
[1871/1923] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1872/1923] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1873/1923] Compiling NIOHTTP2 MayReceiveFrames.swift
[1874/1923] Compiling NIOHTTP2 ReceivingDataState.swift
[1875/1923] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1876/1923] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1877/1923] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1878/1923] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1879/1923] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1880/1923] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[1881/1923] Compiling NIOHTTP2 HTTP2Frame.swift
[1882/1923] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[1883/1923] Compiling NIOHTTP2 HTTP2FrameParser.swift
[1884/1923] Compiling NIOHTTP2 HTTP2PingData.swift
[1885/1923] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[1886/1923] Compiling NIOHTTP2 HTTP2Settings.swift
[1887/1923] Compiling NIOHTTP2 HTTP2Stream.swift
[1888/1923] Compiling NIOHTTP2 InboundWindowManager.swift
[1889/1923] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1890/1923] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1891/1923] Compiling NIOHTTP2 StreamChannelList.swift
[1892/1923] Compiling NIOHTTP2 StreamMap.swift
[1893/1923] Compiling NIOHTTP2 StreamStateMachine.swift
[1894/1923] Compiling NIOHTTP2 UnsafeTransfer.swift
[1895/1923] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1896/1923] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1897/1923] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1898/1923] Compiling NIOHTTP2 HasLocalSettings.swift
[1899/1923] Compiling NIOHTTP2 HasRemoteSettings.swift
[1900/1923] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1901/1923] Compiling NIOHTTP2 QuiescingState.swift
[1902/1923] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1903/1923] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1904/1923] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[1905/1923] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[1906/1923] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[1907/1923] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[1908/1923] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[1909/1923] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[1910/1923] Compiling NIOHTTP2 HTTP2Error.swift
[1911/1923] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1913/1983] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[1914/1983] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[1915/1983] Compiling AsyncHTTPClient AsyncLazySequence.swift
[1916/1983] Compiling AsyncHTTPClient HTTPClient+execute.swift
[1917/1983] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[1918/1983] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[1919/1983] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[1920/1983] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1921/1983] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1922/1991] Emitting module AsyncHTTPClient
[1923/1991] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1924/1991] Compiling AsyncHTTPClient RequestOptions.swift
[1925/1991] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1926/1991] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1927/1991] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1928/1991] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1929/1991] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1930/1991] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1931/1991] Compiling AsyncHTTPClient RequestBag.swift
[1932/1991] Compiling AsyncHTTPClient RequestValidation.swift
[1933/1991] Compiling AsyncHTTPClient SSLContextCache.swift
[1934/1991] Compiling AsyncHTTPClient Scheme.swift
[1935/1991] Compiling AsyncHTTPClient Singleton.swift
[1936/1991] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1937/1991] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[1938/1991] Compiling AsyncHTTPClient Utils.swift
[1939/1991] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1940/1991] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1941/1991] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1942/1991] Compiling AsyncHTTPClient HTTP1Connection.swift
[1943/1991] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1944/1991] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1945/1991] Compiling AsyncHTTPClient HTTP2Connection.swift
[1946/1991] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1947/1991] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1948/1991] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1949/1991] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1950/1991] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1951/1991] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1952/1991] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1953/1991] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1954/1991] Compiling AsyncHTTPClient RequestBodyLength.swift
[1955/1991] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1956/1991] Compiling AsyncHTTPClient ConnectionTarget.swift
[1957/1991] Compiling AsyncHTTPClient DeconstructedURL.swift
[1958/1991] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1959/1991] Compiling AsyncHTTPClient FoundationExtensions.swift
[1960/1991] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1961/1991] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1962/1991] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[1963/1991] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1964/1991] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1965/1991] Compiling AsyncHTTPClient Transaction.swift
[1966/1991] Compiling AsyncHTTPClient Base64.swift
[1967/1991] Compiling AsyncHTTPClient BasicAuth.swift
[1968/1991] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1969/1991] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1970/1991] Compiling AsyncHTTPClient ConnectionPool.swift
[1971/1991] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1972/1991] Compiling AsyncHTTPClient HTTPClient.swift
[1973/1991] Compiling AsyncHTTPClient HTTPHandler.swift
[1974/1991] Compiling AsyncHTTPClient LRUCache.swift
[1975/1991] Compiling AsyncHTTPClient NWErrorHandler.swift
[1976/1991] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1977/1991] Compiling AsyncHTTPClient TLSConfiguration.swift
[1978/1991] Compiling AsyncHTTPClient RedirectState.swift
[1979/1991] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1994/2162] Compiling Vapor Core.swift
[1995/2162] Compiling Vapor Running.swift
[1996/2162] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[1997/2162] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[1998/2162] Compiling Vapor DotEnvFile+load.swift
[1999/2162] Compiling Vapor Routes+caseInsenstive.swift
[2000/2162] Compiling Vapor Validatable+validate.swift
[2001/2162] Compiling Vapor Environment+Process.swift
[2002/2162] Compiling Vapor Environment+Secret.swift
[2003/2162] Compiling Vapor Environment.swift
[2004/2162] Compiling Vapor Abort.swift
[2005/2162] Compiling Vapor AbortError.swift
[2006/2162] Compiling Vapor DebuggableError.swift
[2007/2162] Compiling Vapor Demangler.swift
[2008/2162] Compiling Vapor ErrorSource.swift
[2009/2162] Compiling Vapor StackTrace.swift
[2010/2162] Compiling Vapor Exports.swift
[2011/2162] Compiling Vapor Application+HTTP.swift
[2012/2162] Compiling Vapor BasicResponder.swift
[2013/2162] Compiling Vapor BodyStream.swift
[2014/2162] Compiling Vapor Application+HTTP+Client.swift
[2015/2162] Compiling Vapor EventLoopHTTPClient.swift
[2016/2162] Compiling Vapor EndpointCache.swift
[2017/2162] Compiling Vapor HTTPMethod+String.swift
[2018/2186] Compiling Vapor AsyncBasicResponder.swift
[2019/2186] Compiling Vapor AsyncMiddleware.swift
[2020/2186] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[2021/2186] Compiling Vapor AsyncSessionDriver.swift
[2022/2186] Compiling Vapor Authentication+Concurrency.swift
[2023/2186] Compiling Vapor Cache+Concurrency.swift
[2024/2186] Compiling Vapor Client+Concurrency.swift
[2025/2186] Compiling Vapor RequestBody+Concurrency.swift
[2026/2186] Compiling Vapor Responder+Concurrency.swift
[2027/2186] Compiling Vapor ResponseCodable+Concurrency.swift
[2028/2186] Compiling Vapor RoutesBuilder+Concurrency.swift
[2029/2186] Compiling Vapor ViewRenderer+Concurrency.swift
[2030/2186] Compiling Vapor WebSocket+Concurrency.swift
[2031/2186] Compiling Vapor ContainerGetPathExecutor.swift
[2032/2186] Compiling Vapor Content.swift
[2033/2186] Compiling Vapor ContentCoders.swift
[2034/2186] Compiling Vapor ContentConfiguration.swift
[2035/2186] Compiling Vapor ContentContainer.swift
[2036/2186] Compiling Vapor JSONCoder+Custom.swift
[2037/2186] Compiling Vapor JSONCoders+Content.swift
[2038/2186] Compiling Vapor PlaintextDecoder.swift
[2039/2186] Compiling Vapor PlaintextEncoder.swift
[2040/2186] Compiling Vapor URLQueryCoders.swift
[2041/2186] Compiling Vapor URLQueryContainer.swift
[2042/2210] Compiling Vapor Validator.swift
[2043/2210] Compiling Vapor ValidatorResult.swift
[2044/2210] Compiling Vapor And.swift
[2045/2210] Compiling Vapor Case.swift
[2046/2210] Compiling Vapor CharacterSet.swift
[2047/2210] Compiling Vapor Count.swift
[2048/2210] Compiling Vapor Custom.swift
[2049/2210] Compiling Vapor Email.swift
[2050/2210] Compiling Vapor Empty.swift
[2051/2210] Compiling Vapor In.swift
[2052/2210] Compiling Vapor Nil.swift
[2053/2210] Compiling Vapor NilIgnoring.swift
[2054/2210] Compiling Vapor Not.swift
[2055/2210] Compiling Vapor Or.swift
[2056/2210] Compiling Vapor Pattern.swift
[2057/2210] Compiling Vapor Range.swift
[2058/2210] Compiling Vapor URL.swift
[2059/2210] Compiling Vapor Valid.swift
[2060/2210] Compiling Vapor Application+Views.swift
[2061/2210] Compiling Vapor PlaintextRenderer.swift
[2062/2210] Compiling Vapor Request+View.swift
[2063/2210] Compiling Vapor View.swift
[2064/2210] Compiling Vapor ViewRenderer.swift
[2065/2210] Compiling Vapor _Deprecations.swift
[2066/2210] Compiling Vapor Bytes+Hex.swift
[2067/2210] Compiling Vapor Bytes+SecureCompare.swift
[2068/2210] Compiling Vapor Collection+Safe.swift
[2069/2210] Compiling Vapor DataProtocol+Copy.swift
[2070/2210] Compiling Vapor DecoderUnwrapper.swift
[2071/2210] Compiling Vapor DirectoryConfiguration.swift
[2072/2210] Compiling Vapor DotEnv.swift
[2073/2210] Compiling Vapor Extendable.swift
[2074/2210] Compiling Vapor File.swift
[2075/2210] Compiling Vapor FileIO.swift
[2076/2210] Compiling Vapor LifecycleHandler.swift
[2077/2210] Compiling Vapor OptionalType.swift
[2078/2210] Compiling Vapor RFC1123.swift
[2079/2210] Compiling Vapor SocketAddress+Hostname.swift
[2080/2210] Compiling Vapor Storage.swift
[2081/2210] Compiling Vapor String+IsIPAddress.swift
[2082/2210] Compiling Vapor Thread.swift
[2083/2210] Compiling Vapor URI.swift
[2084/2210] Compiling Vapor RangeResult.swift
[2085/2210] Compiling Vapor Validatable.swift
[2086/2210] Compiling Vapor Validation.swift
[2087/2210] Compiling Vapor ValidationKey.swift
[2088/2210] Compiling Vapor Validations.swift
[2089/2210] Compiling Vapor ValidationsError.swift
[2090/2210] Compiling Vapor Service.swift
[2091/2210] Compiling Vapor Application+Sessions.swift
[2092/2210] Compiling Vapor MemorySessions.swift
[2093/2210] Compiling Vapor Request+Session.swift
[2094/2210] Compiling Vapor Session.swift
[2095/2210] Compiling Vapor SessionCache.swift
[2096/2210] Compiling Vapor SessionData.swift
[2097/2210] Compiling Vapor SessionDriver.swift
[2098/2210] Compiling Vapor SessionsConfiguration.swift
[2099/2210] Compiling Vapor SessionsMiddleware.swift
[2100/2210] Compiling Vapor URLEncodedFormData.swift
[2101/2210] Compiling Vapor URLEncodedFormDecoder.swift
[2102/2210] Compiling Vapor URLEncodedFormEncoder.swift
[2103/2210] Compiling Vapor URLEncodedFormError.swift
[2104/2210] Compiling Vapor URLEncodedFormParser.swift
[2105/2210] Compiling Vapor URLEncodedFormSerializer.swift
[2106/2210] Compiling Vapor URLQueryFragmentConvertible.swift
[2107/2210] Compiling Vapor AnyResponse.swift
[2108/2210] Compiling Vapor Array+Random.swift
[2109/2210] Compiling Vapor Base32.swift
[2110/2210] Compiling Vapor Base64.swift
[2111/2210] Compiling Vapor BaseN.swift
[2112/2210] Compiling Vapor BasicCodingKey.swift
[2113/2210] Compiling Vapor ByteCount.swift
[2114/2210] Compiling Vapor Request+Body.swift
[2115/2210] Compiling Vapor Request+BodyStream.swift
[2116/2210] Compiling Vapor Request.swift
[2117/2210] Compiling Vapor Application+Responder.swift
[2118/2210] Compiling Vapor DefaultResponder.swift
[2119/2210] Compiling Vapor Response+Body.swift
[2120/2210] Compiling Vapor Response.swift
[2121/2210] Compiling Vapor ResponseCodable.swift
[2122/2210] Compiling Vapor Application+Routes.swift
[2123/2210] Compiling Vapor Parameters+Require.swift
[2124/2210] Compiling Vapor Request+WebSocket.swift
[2125/2210] Compiling Vapor Route.swift
[2126/2210] Compiling Vapor RouteCollection.swift
[2127/2210] Compiling Vapor Routes.swift
[2128/2210] Compiling Vapor RoutesBuilder+Group.swift
[2129/2210] Compiling Vapor RoutesBuilder+Method.swift
[2130/2210] Compiling Vapor RoutesBuilder+Middleware.swift
[2131/2210] Compiling Vapor RoutesBuilder+WebSocket.swift
[2132/2210] Compiling Vapor RoutesBuilder.swift
[2133/2210] Compiling Vapor OTP.swift
[2134/2210] Compiling Vapor Application+Servers.swift
[2135/2210] Compiling Vapor Server.swift
[2136/2210] Compiling Vapor App+Service.swift
[2137/2210] Compiling Vapor Req+Service.swift
[2138/2210] Emitting module Vapor
[2139/2210] Compiling Vapor HTTPServerResponseEncoder.swift
[2140/2210] Compiling Vapor HTTPServerUpgradeHandler.swift
[2141/2210] Compiling Vapor Logger+Report.swift
[2142/2210] Compiling Vapor LoggingSystem+Environment.swift
[2143/2210] Compiling Vapor Application+Middleware.swift
[2144/2210] Compiling Vapor CORSMiddleware.swift
[2145/2210] Compiling Vapor ErrorMiddleware.swift
[2146/2210] Compiling Vapor FileMiddleware.swift
[2147/2210] Compiling Vapor Middleware.swift
[2148/2210] Compiling Vapor MiddlewareConfiguration.swift
[2149/2210] Compiling Vapor ResponseCompressionMiddleware.swift
[2150/2210] Compiling Vapor RouteLoggingMiddleware.swift
[2151/2210] Compiling Vapor TracingMiddleware.swift
[2152/2210] Compiling Vapor File+Multipart.swift
[2153/2210] Compiling Vapor FormDataDecoder+Content.swift
[2154/2210] Compiling Vapor FormDataEncoder+Content.swift
[2155/2210] Compiling Vapor Application+Password.swift
[2156/2210] Compiling Vapor Application+Passwords.swift
[2157/2210] Compiling Vapor AsyncPasswordHasher.swift
[2158/2210] Compiling Vapor BcryptHasher.swift
[2159/2210] Compiling Vapor PasswordHasher.swift
[2160/2210] Compiling Vapor PlaintextHasher.swift
[2161/2210] Compiling Vapor Request+Password.swift
[2162/2210] Compiling Vapor Redirect.swift
[2163/2210] Compiling Vapor Application.swift
[2164/2210] Compiling Vapor AuthenticationCache.swift
[2165/2210] Compiling Vapor Authenticator.swift
[2166/2210] Compiling Vapor BasicAuthorization.swift
[2167/2210] Compiling Vapor BearerAuthorization.swift
[2168/2210] Compiling Vapor GuardMiddleware.swift
[2169/2210] Compiling Vapor RedirectMiddleware.swift
[2170/2210] Compiling Vapor SessionAuthenticatable.swift
[2171/2210] Compiling Vapor Bcrypt.swift
[2172/2210] Compiling Vapor Application+Cache.swift
[2173/2210] Compiling Vapor Cache.swift
[2174/2210] Compiling Vapor CacheExpirationTime.swift
[2175/2210] Compiling Vapor MemoryCache.swift
[2176/2210] Compiling Vapor Request+Cache.swift
[2177/2210] Compiling Vapor Application+Clients.swift
[2178/2210] Compiling Vapor Client.swift
[2179/2210] Compiling Vapor ClientRequest.swift
[2180/2210] Compiling Vapor ClientResponse.swift
[2181/2210] Compiling Vapor Request+Client.swift
[2182/2210] Compiling Vapor BootCommand.swift
[2183/2210] Compiling Vapor CommandContext+Application.swift
[2184/2210] Compiling Vapor RoutesCommand.swift
[2185/2210] Compiling Vapor ServeCommand.swift
[2186/2210] Compiling Vapor AnyResponse+Concurrency.swift
[2187/2210] Compiling Vapor HTTPStatus.swift
[2188/2210] Compiling Vapor HTTPCookies.swift
[2189/2210] Compiling Vapor HTTPHeaderCacheControl.swift
[2190/2210] Compiling Vapor HTTPHeaderExpires.swift
[2191/2210] Compiling Vapor HTTPHeaderLastModified.swift
[2192/2210] Compiling Vapor HTTPHeaders+Cache.swift
[2193/2210] Compiling Vapor HTTPHeaders+Connection.swift
[2194/2210] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[2195/2210] Compiling Vapor HTTPHeaders+ContentRange.swift
[2196/2210] Compiling Vapor HTTPHeaders+Directive.swift
[2197/2210] Compiling Vapor HTTPHeaders+Forwarded.swift
[2198/2210] Compiling Vapor HTTPHeaders+Link.swift
[2199/2210] Compiling Vapor HTTPHeaders+Name.swift
[2200/2210] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[2201/2210] Compiling Vapor HTTPHeaders.swift
[2202/2210] Compiling Vapor HTTPMediaType.swift
[2203/2210] Compiling Vapor HTTPMediaTypePreference.swift
[2204/2210] Compiling Vapor Responder.swift
[2205/2210] Compiling Vapor Application+HTTP+Server.swift
[2206/2210] Compiling Vapor HTTPServer.swift
[2207/2210] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[2208/2210] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[2209/2210] Compiling Vapor HTTPServerHandler.swift
[2210/2210] Compiling Vapor HTTPServerRequestDecoder.swift
[2212/2232] Compiling Queues QueuesConfiguration.swift
[2213/2232] Compiling Queues QueuesDriver.swift
[2214/2232] Compiling Queues QueuesEventLoopPreference.swift
[2215/2234] Emitting module Queues
[2216/2234] Compiling Queues RepeatedTask+Cancel.swift
[2217/2234] Compiling Queues Request+Queues.swift
[2218/2234] Compiling Queues NotificationHook.swift
[2219/2234] Compiling Queues Queue.swift
[2220/2234] Compiling Queues QueueContext.swift
[2221/2234] Compiling Queues Application+Queues.swift
[2222/2234] Compiling Queues AsyncJob.swift
[2223/2234] Compiling Queues AsyncJobEventDelegate.swift
[2224/2234] Compiling Queues AsyncQueue.swift
[2225/2234] Compiling Queues AsyncScheduledJob.swift
[2226/2234] Compiling Queues Exports.swift
[2227/2234] Compiling Queues Job.swift
[2228/2234] Compiling Queues JobData.swift
[2229/2234] Compiling Queues JobIdentifier.swift
[2230/2234] Compiling Queues QueueName.swift
[2231/2234] Compiling Queues QueueWorker.swift
[2232/2234] Compiling Queues QueuesCommand.swift
[2233/2234] Compiling Queues ScheduleBuilder.swift
[2234/2234] Compiling Queues ScheduledJob.swift
[2236/2237] Compiling XCTQueues TestQueueDriver.swift
[2237/2237] Emitting module XCTQueues
Build complete! (310.23s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "vapor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.104.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/vapor.git"
    },
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.81.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swift-metrics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.5.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-metrics.git"
    }
  ],
  "manifest_display_name" : "queues",
  "name" : "queues",
  "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" : "Queues",
      "targets" : [
        "Queues"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "XCTQueues",
      "targets" : [
        "XCTQueues"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XCTQueues",
      "module_type" : "SwiftTarget",
      "name" : "XCTQueues",
      "path" : "Sources/XCTQueues",
      "product_memberships" : [
        "XCTQueues"
      ],
      "sources" : [
        "TestQueueDriver.swift"
      ],
      "target_dependencies" : [
        "Queues"
      ],
      "type" : "library"
    },
    {
      "c99name" : "QueuesTests",
      "module_type" : "SwiftTarget",
      "name" : "QueuesTests",
      "path" : "Tests/QueuesTests",
      "product_dependencies" : [
        "XCTVapor",
        "MetricsTestKit"
      ],
      "sources" : [
        "AsyncQueueTests.swift",
        "MetricsTests.swift",
        "QueueTests.swift",
        "ScheduleBuilderTests.swift",
        "Utilities.swift",
        "Utilities/FailingAsyncJob.swift",
        "Utilities/Failure.swift",
        "Utilities/MyAsyncJob.swift"
      ],
      "target_dependencies" : [
        "Queues",
        "XCTQueues"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Queues",
      "module_type" : "SwiftTarget",
      "name" : "Queues",
      "path" : "Sources/Queues",
      "product_dependencies" : [
        "Vapor",
        "NIOCore",
        "Metrics"
      ],
      "product_memberships" : [
        "Queues",
        "XCTQueues"
      ],
      "sources" : [
        "Application+Queues.swift",
        "AsyncJob.swift",
        "AsyncJobEventDelegate.swift",
        "AsyncQueue.swift",
        "AsyncScheduledJob.swift",
        "Exports.swift",
        "Job.swift",
        "JobData.swift",
        "JobIdentifier.swift",
        "NotificationHook.swift",
        "Queue.swift",
        "QueueContext.swift",
        "QueueName.swift",
        "QueueWorker.swift",
        "QueuesCommand.swift",
        "QueuesConfiguration.swift",
        "QueuesDriver.swift",
        "QueuesEventLoopPreference.swift",
        "RepeatedTask+Cancel.swift",
        "Request+Queues.swift",
        "ScheduleBuilder.swift",
        "ScheduledJob.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:9029076bb687edc160a3d5201c89e92dd9fa7309f33f090c4234365c83366c31
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.