Build Information
Successful build of SIMDson, reference v0.0.1 (42292a), with Swift 6.2 for macOS (SPM) on 21 Jun 2025 21:33:18 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Catterwaul/SIMDson.git
Reference: v0.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Catterwaul/SIMDson
* tag v0.0.1 -> FETCH_HEAD
HEAD is now at 42292a4 Add matrix requirements
Cloned https://github.com/Catterwaul/SIMDson.git
Revision (git rev-parse @):
42292a4b3a27ccdcbbef3bea1dd4c5753c4501a1
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Catterwaul/SIMDson.git at v0.0.1
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/Catterwaul/SIMDson.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/9] Write sources
[7/9] Write swift-version-1EA4D86E10B52AF.txt
[8/9] Compiling _NumericsShims _NumericsShims.c
[10/24] Emitting module RealModule
[11/25] Compiling Thrappture ThrowingPropertyWrapper.swift
[12/25] Compiling RealModule Float80+Real.swift
[13/25] Compiling Thrappture Result.swift
[14/25] Compiling Thrappture Optional.swift
[15/25] Compiling Thrappture Optional.Nil.swift
[16/25] Emitting module Thrappture
[17/25] Compiling RealModule AlgebraicField.swift
[18/25] Compiling RealModule Float16+Real.swift
[19/25] Compiling RealModule Double+Real.swift
[20/25] Compiling RealModule Real.swift
[21/25] Compiling RealModule ApproximateEquality.swift
[22/25] Compiling RealModule Float+Real.swift
[23/25] Compiling RealModule AugmentedArithmetic.swift
[24/25] Compiling RealModule ElementaryFunctions.swift
[25/25] Compiling RealModule RealFunctions.swift
[26/71] Compiling Algorithms EndsWith.swift
[27/71] Compiling Algorithms FirstNonNil.swift
[28/72] Compiling Algorithms Cycle.swift
[29/72] Compiling Algorithms FlattenCollection.swift
[30/72] Compiling Algorithms Chunked.swift
[31/72] Compiling Algorithms EitherSequence.swift
[32/72] Compiling Algorithms Partition.swift
[33/72] Compiling Algorithms Permutations.swift
[34/72] Compiling Algorithms Keyed.swift
[35/72] Compiling Algorithms MinMax.swift
[36/72] Compiling Algorithms AdjacentPairs.swift
[37/72] Compiling Algorithms Chain.swift
[38/72] Emitting module Tuplé
[39/72] Compiling Algorithms Grouped.swift
[40/72] Compiling Algorithms Indexed.swift
[41/72] Compiling Algorithms Combinations.swift
[42/72] Compiling Algorithms Compacted.swift
[43/72] Compiling Algorithms Intersperse.swift
[44/72] Compiling Algorithms Joined.swift
[45/72] Compiling Tuplé Type Aliases.swift
[46/72] Compiling Algorithms Suffix.swift
[47/72] Compiling Algorithms Trim.swift
[48/74] Compiling Algorithms Unique.swift
[49/74] Compiling Algorithms Windows.swift
[50/74] Compiling Algorithms Rotate.swift
[51/74] Compiling Algorithms Split.swift
[52/74] Compiling Algorithms Stride.swift
[56/74] Compiling Algorithms Product.swift
[57/74] Compiling Algorithms RandomSample.swift
[58/74] Compiling Algorithms Reductions.swift
[74/74] Emitting module Algorithms
[75/93] Compiling SIMDson FloatingPointVector.swift
[76/93] Compiling SIMDson Normalized.swift
[77/93] Compiling SIMDson SIMD4+FloatingPointVector.swift
[78/93] Compiling SIMDson SIMD.swift
[79/93] Compiling SIMDson SIMD2+FloatingPointVector.swift
[80/93] Compiling SIMDson SIMD3+FloatingPointVector.swift
[81/94] Compiling SIMDson Matrix2x3.swift
[82/94] Compiling SIMDson Matrix2x4.swift
[83/94] Compiling SIMDson Matrix3x4.swift
/Users/admin/builder/spi-builder-workspace/Sources/FloatingPoint/Matrix/Matrix4x4.swift:15:37: warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
13 | /// Creates a new matrix with the specified columns.
14 | @inlinable init(columns: Vectuple4<SIMD4<some BinaryFloatingPoint>>) {
15 | self.init(columns: map(columns)(SIMD4.init))
| `- warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
16 | }
17 | }
[84/94] Compiling SIMDson Matrix4x4.swift
/Users/admin/builder/spi-builder-workspace/Sources/FloatingPoint/Matrix/Matrix4x4.swift:15:37: warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
13 | /// Creates a new matrix with the specified columns.
14 | @inlinable init(columns: Vectuple4<SIMD4<some BinaryFloatingPoint>>) {
15 | self.init(columns: map(columns)(SIMD4.init))
| `- warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
16 | }
17 | }
[85/94] Compiling SIMDson Matrix3x2.swift
/Users/admin/builder/spi-builder-workspace/Sources/FloatingPoint/Matrix/Matrix3x3.swift:18:37: warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
16 | /// Creates a new matrix with the specified columns.
17 | @inlinable init(columns: Vectuple3<SIMD3<some BinaryFloatingPoint>>) {
18 | self.init(columns: map(columns)(SIMD3.init))
| `- warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
19 | }
20 |
[86/94] Compiling SIMDson Matrix3x3.swift
/Users/admin/builder/spi-builder-workspace/Sources/FloatingPoint/Matrix/Matrix3x3.swift:18:37: warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
16 | /// Creates a new matrix with the specified columns.
17 | @inlinable init(columns: Vectuple3<SIMD3<some BinaryFloatingPoint>>) {
18 | self.init(columns: map(columns)(SIMD3.init))
| `- warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
19 | }
20 |
[87/94] Compiling SIMDson Quaternion.swift
[88/94] Compiling SIMDson Double+FloatingPointScalar.swift
[89/94] Compiling SIMDson Matrix.swift
[90/94] Compiling SIMDson Matrix2x2.swift
[91/94] Emitting module SIMDson
/Users/admin/builder/spi-builder-workspace/Sources/FloatingPoint/Matrix/Matrix3x3.swift:18:37: warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
16 | /// Creates a new matrix with the specified columns.
17 | @inlinable init(columns: Vectuple3<SIMD3<some BinaryFloatingPoint>>) {
18 | self.init(columns: map(columns)(SIMD3.init))
| `- warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FloatingPoint/Matrix/Matrix4x4.swift:15:37: warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
13 | /// Creates a new matrix with the specified columns.
14 | @inlinable init(columns: Vectuple4<SIMD4<some BinaryFloatingPoint>>) {
15 | self.init(columns: map(columns)(SIMD4.init))
| `- warning: capture of non-sendable type '(some BinaryFloatingPoint).Type' in an isolated closure
16 | }
17 | }
[92/94] Compiling SIMDson Float+FloatingPointScalar.swift
[93/94] Compiling SIMDson FloatingPointScalar.swift
[94/94] Compiling SIMDson Spatial.swift
Build complete! (30.69s)
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.11s)
Fetching https://github.com/apple/swift-algorithms
[1/5959] Fetching swift-algorithms
Fetched https://github.com/apple/swift-algorithms from cache (0.96s)
Fetching https://github.com/Catterwaul/Tuplay
[1/685] Fetching tuplay
Fetched https://github.com/Catterwaul/Tuplay from cache (0.92s)
Fetching https://github.com/Catterwaul/Thrappture
[1/389] Fetching thrappture
Fetched https://github.com/Catterwaul/Thrappture from cache (0.90s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
Fetching https://github.com/apple/swift-numerics.git
[1/5757] Fetching swift-numerics
[520/9171] Fetching swift-numerics, swift-docc-symbolkit
Fetched https://github.com/apple/swift-numerics.git from cache (1.11s)
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.11s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.65s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.49s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/Catterwaul/Tuplay
Working copy of https://github.com/Catterwaul/Tuplay resolved at main (25ec530)
Creating working copy for https://github.com/apple/swift-algorithms
Working copy of https://github.com/apple/swift-algorithms resolved at main (0e939e7)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at main (d169154)
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/Catterwaul/Thrappture
Working copy of https://github.com/Catterwaul/Thrappture resolved at main (d930cd6)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"branch" : [
"main"
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-docc-plugin"
},
{
"identity" : "swift-algorithms",
"requirement" : {
"branch" : [
"main"
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-algorithms"
},
{
"identity" : "tuplay",
"requirement" : {
"branch" : [
"main"
]
},
"type" : "sourceControl",
"url" : "https://github.com/Catterwaul/Tuplay"
}
],
"manifest_display_name" : "SIMDson",
"name" : "SIMDson",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "14.0"
}
],
"products" : [
{
"name" : "SIMDson",
"targets" : [
"SIMDson"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SIMDson_Tests",
"module_type" : "SwiftTarget",
"name" : "SIMDson.Tests",
"path" : "Tests",
"sources" : [
"MatrixTests.swift",
"SIMDTests.swift",
"SpatialTests.swift",
"VectorTests.swift"
],
"target_dependencies" : [
"SIMDson"
],
"type" : "test"
},
{
"c99name" : "SIMDson",
"module_type" : "SwiftTarget",
"name" : "SIMDson",
"path" : "Sources",
"product_dependencies" : [
"Algorithms",
"Tuplé"
],
"product_memberships" : [
"SIMDson"
],
"sources" : [
"FloatingPoint/Matrix/Matrix.swift",
"FloatingPoint/Matrix/Matrix2x2.swift",
"FloatingPoint/Matrix/Matrix2x3.swift",
"FloatingPoint/Matrix/Matrix2x4.swift",
"FloatingPoint/Matrix/Matrix3x2.swift",
"FloatingPoint/Matrix/Matrix3x3.swift",
"FloatingPoint/Matrix/Matrix3x4.swift",
"FloatingPoint/Matrix/Matrix4x4.swift",
"FloatingPoint/Quaternion.swift",
"FloatingPoint/Scalar/Double+FloatingPointScalar.swift",
"FloatingPoint/Scalar/Float+FloatingPointScalar.swift",
"FloatingPoint/Scalar/FloatingPointScalar.swift",
"FloatingPoint/Vector/FloatingPointVector.swift",
"FloatingPoint/Vector/Normalized.swift",
"FloatingPoint/Vector/SIMD2+FloatingPointVector.swift",
"FloatingPoint/Vector/SIMD3+FloatingPointVector.swift",
"FloatingPoint/Vector/SIMD4+FloatingPointVector.swift",
"SIMD.swift",
"Spatial.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Done.