The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Threading, reference 2.3.1 (caa15e), with Swift 6.1 for macOS (SPM) on 16 Apr 2026 19:39:40 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/NikSativa/Threading.git
Reference: 2.3.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/NikSativa/Threading
 * tag               2.3.1      -> FETCH_HEAD
HEAD is now at caa15e9 Fix Swift 6.0 compiler crash: gate SyncMutex on compiler(>=6.0), fix supportsVisionOS platform guard
Cloned https://github.com/NikSativa/Threading.git
Revision (git rev-parse @):
caa15e9fd87afa34d3b13ed9f0639847ce5a0abf
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/NikSativa/Threading.git at 2.3.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/NikSativa/Threading.git
https://github.com/NikSativa/Threading.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Threading",
  "name" : "Threading",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Threading",
      "targets" : [
        "Threading"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ThreadingStatic",
      "targets" : [
        "Threading"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "ThreadingDynamic",
      "targets" : [
        "Threading"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ThreadingTests",
      "module_type" : "SwiftTarget",
      "name" : "ThreadingTests",
      "path" : "Tests",
      "sources" : [
        "AtomicTests.swift",
        "AtomicUncheckedTests.swift",
        "DelayedQueueTests.swift",
        "DispatchTime_QueueTests.swift",
        "IsolatedMainTests.swift",
        "QueueTests.swift",
        "READMEExamplesTests.swift",
        "TestHelpers/DelayedQueue+TestHelper.swift",
        "TestHelpers/FakeQueueable.swift",
        "TestHelpers/Queue+TestHelper.swift"
      ],
      "target_dependencies" : [
        "Threading"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Threading",
      "module_type" : "SwiftTarget",
      "name" : "Threading",
      "path" : "Source",
      "product_memberships" : [
        "Threading",
        "ThreadingStatic",
        "ThreadingDynamic"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Source/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "AnyLock.swift",
        "AnyMutex.swift",
        "AtomicValue.swift",
        "IsolatedMain.swift",
        "Lockers/NSLock.swift",
        "Lockers/NSRecursiveLock.swift",
        "Lockers/OSAllocatedUnfairLock.swift",
        "Lockers/PThread.swift",
        "Lockers/Semaphore.swift",
        "Lockers/UnfairLock.swift",
        "Locking.swift",
        "MutexInitializable.swift",
        "Mutexes/LockedValue.swift",
        "Mutexes/OSAllocatedUnfairMutex.swift",
        "Mutexes/QueueBarrier.swift",
        "Mutexes/SyncMutex.swift",
        "Mutexing.swift",
        "Queue/DelayedQueue.swift",
        "Queue/DispatchTime+Queue.swift",
        "Queue/Queue+Queueable.swift",
        "Queue/Queue.swift",
        "Queue/Queueable.swift",
        "USendable.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/7] Write sources
[1/7] Copying PrivacyInfo.xcprivacy
[2/7] Write swift-version-2F0A5646E1D333AE.txt
[4/30] Emitting module Threading
[5/32] Compiling Threading USendable.swift
[6/32] Compiling Threading resource_bundle_accessor.swift
[7/32] Compiling Threading IsolatedMain.swift
[8/32] Compiling Threading NSLock.swift
[9/32] Compiling Threading NSRecursiveLock.swift
[10/32] Compiling Threading Mutexing.swift
[11/32] Compiling Threading DelayedQueue.swift
[12/32] Compiling Threading LockedValue.swift
[13/32] Compiling Threading OSAllocatedUnfairMutex.swift
[14/32] Compiling Threading AnyLock.swift
[15/32] Compiling Threading AnyMutex.swift
[16/32] Compiling Threading AtomicValue.swift
[17/32] Compiling Threading Queue.swift
[18/32] Compiling Threading Queueable.swift
[19/32] Compiling Threading DispatchTime+Queue.swift
[20/32] Compiling Threading Queue+Queueable.swift
[21/32] Compiling Threading QueueBarrier.swift
[22/32] Compiling Threading SyncMutex.swift
[23/32] Compiling Threading UnfairLock.swift
[24/32] Compiling Threading Locking.swift
[25/32] Compiling Threading MutexInitializable.swift
[26/32] Compiling Threading OSAllocatedUnfairLock.swift
[27/32] Compiling Threading PThread.swift
[28/32] Compiling Threading Semaphore.swift
[28/32] Write Objects.LinkFileList
[30/32] Archiving libThreadingStatic.a
[31/32] Linking libThreadingDynamic.dylib
Build complete! (6.83s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Threading",
  "name" : "Threading",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Threading",
      "targets" : [
        "Threading"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ThreadingStatic",
      "targets" : [
        "Threading"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "ThreadingDynamic",
      "targets" : [
        "Threading"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ThreadingTests",
      "module_type" : "SwiftTarget",
      "name" : "ThreadingTests",
      "path" : "Tests",
      "sources" : [
        "AtomicTests.swift",
        "AtomicUncheckedTests.swift",
        "DelayedQueueTests.swift",
        "DispatchTime_QueueTests.swift",
        "IsolatedMainTests.swift",
        "QueueTests.swift",
        "READMEExamplesTests.swift",
        "TestHelpers/DelayedQueue+TestHelper.swift",
        "TestHelpers/FakeQueueable.swift",
        "TestHelpers/Queue+TestHelper.swift"
      ],
      "target_dependencies" : [
        "Threading"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Threading",
      "module_type" : "SwiftTarget",
      "name" : "Threading",
      "path" : "Source",
      "product_memberships" : [
        "Threading",
        "ThreadingStatic",
        "ThreadingDynamic"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Source/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "AnyLock.swift",
        "AnyMutex.swift",
        "AtomicValue.swift",
        "IsolatedMain.swift",
        "Lockers/NSLock.swift",
        "Lockers/NSRecursiveLock.swift",
        "Lockers/OSAllocatedUnfairLock.swift",
        "Lockers/PThread.swift",
        "Lockers/Semaphore.swift",
        "Lockers/UnfairLock.swift",
        "Locking.swift",
        "MutexInitializable.swift",
        "Mutexes/LockedValue.swift",
        "Mutexes/OSAllocatedUnfairMutex.swift",
        "Mutexes/QueueBarrier.swift",
        "Mutexes/SyncMutex.swift",
        "Mutexing.swift",
        "Queue/DelayedQueue.swift",
        "Queue/DispatchTime+Queue.swift",
        "Queue/Queue+Queueable.swift",
        "Queue/Queue.swift",
        "Queue/Queueable.swift",
        "USendable.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.