The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build Hamilton, reference 1.0.3 (6a56e6), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 07:43:37 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/pducks32/Hamilton.git
Reference: 1.0.3
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/pducks32/Hamilton
 * tag               1.0.3      -> FETCH_HEAD
HEAD is now at 6a56e6d add Xcode check
Cloned https://github.com/pducks32/Hamilton.git
Revision (git rev-parse @):
6a56e6d3e1d481be2e5f35b934bac15d6ff70435
SUCCESS checkout https://github.com/pducks32/Hamilton.git at 1.0.3
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/pducks32/Hamilton.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/14] Compiling Hamilton Vector2.swift
[4/14] Compiling Hamilton Vector3.swift
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Vectors/Vector3.swift:12:31: error: ambiguous use of 'init'
 10 | public struct Vector3 : Vectorable {
 11 |     /// X Axis in 3D space
 12 |     public static let xAxis = Vector3(1, 0, 0)
    |                               `- error: ambiguous use of 'init'
 13 |     /// Y Axis in 3D space
 14 |     public static let yAxis = Vector3(0, 1, 0)
    :
 33 |     }
 34 |
 35 |     public init(_ elements: Component...) {
    |            `- note: found this candidate
 36 |         x = elements[0]
 37 |         y = elements[1]
    :
 39 |     }
 40 |
 41 |     public init(_ x : Component, _ y : Component, _ z : Component) {
    |            `- note: found this candidate
 42 |         self.x = x
 43 |         self.y = y
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Vectors/Vector3.swift:14:31: error: ambiguous use of 'init'
 12 |     public static let xAxis = Vector3(1, 0, 0)
 13 |     /// Y Axis in 3D space
 14 |     public static let yAxis = Vector3(0, 1, 0)
    |                               `- error: ambiguous use of 'init'
 15 |     /// Z Axis in 3D space
 16 |     public static let zAxis = Vector3(0, 0, 1)
    :
 33 |     }
 34 |
 35 |     public init(_ elements: Component...) {
    |            `- note: found this candidate
 36 |         x = elements[0]
 37 |         y = elements[1]
    :
 39 |     }
 40 |
 41 |     public init(_ x : Component, _ y : Component, _ z : Component) {
    |            `- note: found this candidate
 42 |         self.x = x
 43 |         self.y = y
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Vectors/Vector3.swift:16:31: error: ambiguous use of 'init'
 14 |     public static let yAxis = Vector3(0, 1, 0)
 15 |     /// Z Axis in 3D space
 16 |     public static let zAxis = Vector3(0, 0, 1)
    |                               `- error: ambiguous use of 'init'
 17 |
 18 |     /// 3D origin
    :
 33 |     }
 34 |
 35 |     public init(_ elements: Component...) {
    |            `- note: found this candidate
 36 |         x = elements[0]
 37 |         y = elements[1]
    :
 39 |     }
 40 |
 41 |     public init(_ x : Component, _ y : Component, _ z : Component) {
    |            `- note: found this candidate
 42 |         self.x = x
 43 |         self.y = y
[5/15] Compiling Hamilton VectorableFormatter.swift
[6/15] Compiling Hamilton Vectorable.swift
[7/15] Compiling Hamilton Scalar.swift
[8/15] Compiling Hamilton Vector4.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[9/15] Compiling Hamilton AngleConvertible.swift
[10/15] Compiling Hamilton EulerAngles+Equatable.swift
[11/15] Compiling Hamilton EulerAngles+Operators.swift
[12/15] Compiling Hamilton EulerAngles.swift
[13/15] Compiling Hamilton Rotateable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Rotateable.swift:55:16: error: ambiguous use of 'init'
53 |         let selfAsQuat = Quaternion(w: Quaternion.Component(0), x: Quaternion.Component(x), y: Quaternion.Component(y), z: Quaternion.Component(z))
54 |         let rotateQuat = quaternion.multiplied(by: selfAsQuat).multiplied(by: quaternion.inverse)
55 |         return Vector3(Component(rotateQuat.x), Component(rotateQuat.y), Component(rotateQuat.z))
   |                `- error: ambiguous use of 'init'
56 |     }
57 | }
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Vectors/Vector3.swift:35:12: note: found this candidate
 33 |     }
 34 |
 35 |     public init(_ elements: Component...) {
    |            `- note: found this candidate
 36 |         x = elements[0]
 37 |         y = elements[1]
    :
 39 |     }
 40 |
 41 |     public init(_ x : Component, _ y : Component, _ z : Component) {
    |            `- note: found this candidate
 42 |         self.x = x
 43 |         self.y = y
[14/15] Emitting module Hamilton
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Quaternion.swift:12:1: warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
 10 | import SceneKit
 11 |
 12 | extension GLKMatrix4 : CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 13 |     public var debugDescription: String {
 14 |         let topRow = GLKMatrix4GetRow(self, 0)
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Vectors/Vector3.swift:12:31: error: ambiguous use of 'init'
 10 | public struct Vector3 : Vectorable {
 11 |     /// X Axis in 3D space
 12 |     public static let xAxis = Vector3(1, 0, 0)
    |                               `- error: ambiguous use of 'init'
 13 |     /// Y Axis in 3D space
 14 |     public static let yAxis = Vector3(0, 1, 0)
    :
 33 |     }
 34 |
 35 |     public init(_ elements: Component...) {
    |            `- note: found this candidate
 36 |         x = elements[0]
 37 |         y = elements[1]
    :
 39 |     }
 40 |
 41 |     public init(_ x : Component, _ y : Component, _ z : Component) {
    |            `- note: found this candidate
 42 |         self.x = x
 43 |         self.y = y
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Vectors/Vector3.swift:14:31: error: ambiguous use of 'init'
 12 |     public static let xAxis = Vector3(1, 0, 0)
 13 |     /// Y Axis in 3D space
 14 |     public static let yAxis = Vector3(0, 1, 0)
    |                               `- error: ambiguous use of 'init'
 15 |     /// Z Axis in 3D space
 16 |     public static let zAxis = Vector3(0, 0, 1)
    :
 33 |     }
 34 |
 35 |     public init(_ elements: Component...) {
    |            `- note: found this candidate
 36 |         x = elements[0]
 37 |         y = elements[1]
    :
 39 |     }
 40 |
 41 |     public init(_ x : Component, _ y : Component, _ z : Component) {
    |            `- note: found this candidate
 42 |         self.x = x
 43 |         self.y = y
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Vectors/Vector3.swift:16:31: error: ambiguous use of 'init'
 14 |     public static let yAxis = Vector3(0, 1, 0)
 15 |     /// Z Axis in 3D space
 16 |     public static let zAxis = Vector3(0, 0, 1)
    |                               `- error: ambiguous use of 'init'
 17 |
 18 |     /// 3D origin
    :
 33 |     }
 34 |
 35 |     public init(_ elements: Component...) {
    |            `- note: found this candidate
 36 |         x = elements[0]
 37 |         y = elements[1]
    :
 39 |     }
 40 |
 41 |     public init(_ x : Component, _ y : Component, _ z : Component) {
    |            `- note: found this candidate
 42 |         self.x = x
 43 |         self.y = y
[15/15] Compiling Hamilton Quaternion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Quaternion.swift:12:1: warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
 10 | import SceneKit
 11 |
 12 | extension GLKMatrix4 : CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 13 |     public var debugDescription: String {
 14 |         let topRow = GLKMatrix4GetRow(self, 0)
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Quaternion.swift:326:44: error: ambiguous use of 'init'
324 |         }
325 |
326 |         return EulerAngles(vectorOfAngles: Vector3(x, y, z), unit: .radians, system: system)
    |                                            `- error: ambiguous use of 'init'
327 |     }
328 |
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Vectors/Vector3.swift:35:12: note: found this candidate
 33 |     }
 34 |
 35 |     public init(_ elements: Component...) {
    |            `- note: found this candidate
 36 |         x = elements[0]
 37 |         y = elements[1]
    :
 39 |     }
 40 |
 41 |     public init(_ x : Component, _ y : Component, _ z : Component) {
    |            `- note: found this candidate
 42 |         self.x = x
 43 |         self.y = y
BUILD FAILURE 6.2 macosSpm