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 Numerix, reference main (849b18), with Swift 6.0 for macOS (SPM) on 22 Nov 2025 13:55:30 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wigging/numerix.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/wigging/numerix
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 849b18a Fix lint warnings
Cloned https://github.com/wigging/numerix.git
Revision (git rev-parse @):
849b18a306d36a229ea6144ac8aa26012b13e909
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/wigging/numerix.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/wigging/numerix.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-5BDAB9E9C0126B9D.txt
[3/36] Emitting module Numerix
[4/39] Compiling Numerix ShapedArrayArithmetic.swift
[5/39] Compiling Numerix ShapedArrayElement.swift
[6/39] Compiling Numerix RandomVector.swift
[7/39] Compiling Numerix Vector+Equatable.swift
[8/39] Compiling Numerix Vector+StringConvertible.swift
[9/39] Compiling Numerix Vector.swift
[10/39] Compiling Numerix Matrix.swift
[11/39] Compiling Numerix MatrixAlgebra.swift
[12/39] Compiling Numerix MatrixArithmetic.swift
[13/39] Compiling Numerix MatrixExponential.swift
[14/39] Compiling Numerix Complex+Equatable.swift
[15/39] Compiling Numerix Complex.swift
[16/39] Compiling Numerix ComplexArithmetic.swift
[17/39] Compiling Numerix DataBuffer.swift
[18/39] Compiling Numerix VectorLogarithm.swift
[19/39] Compiling Numerix VectorPower.swift
[20/39] Compiling Numerix VectorTrigonometry.swift
[21/39] Compiling Numerix VectorAlgebra.swift
[22/39] Compiling Numerix VectorArithmetic.swift
[23/39] Compiling Numerix VectorExponential.swift
[24/39] Compiling Numerix Helpers.swift
[25/39] Compiling Numerix NumberStyle.swift
[26/39] Compiling Numerix ShapedArray+StringConvertible.swift
[27/39] Compiling Numerix ShapedArray.swift
[28/39] Compiling Numerix MatrixLogarithm.swift
[29/39] Compiling Numerix MatrixPad.swift
[30/39] Compiling Numerix MatrixPower.swift
[31/39] Compiling Numerix MatrixTrigonometry.swift
[32/39] Compiling Numerix Formatter.swift
[33/39] Compiling Numerix Operators.swift
[34/39] Compiling Numerix Matrix+Equatable.swift
[35/39] Compiling Numerix Matrix+StringConvertible.swift
[36/39] Compiling Numerix RandomMatrix.swift
[37/39] Compiling Numerix Wyrand.swift
[38/39] Compiling Numerix Xoroshiro.swift
[39/39] Compiling Numerix Xoshiro.swift
Build complete! (8.97s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Numerix",
  "name" : "Numerix",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "watchos",
      "version" : "10.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Numerix",
      "targets" : [
        "Numerix"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Tests",
      "module_type" : "SwiftTarget",
      "name" : "Tests",
      "path" : "Tests",
      "sources" : [
        "AlgebraTests.swift",
        "ComplexTests.swift",
        "MatrixTests.swift",
        "PadTests.swift",
        "RandomTests.swift",
        "ShapedArrayTests.swift",
        "TrigonometryTests.swift",
        "VectorTests.swift"
      ],
      "target_dependencies" : [
        "Numerix"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Numerix",
      "module_type" : "SwiftTarget",
      "name" : "Numerix",
      "path" : "Sources/Numerix",
      "product_memberships" : [
        "Numerix"
      ],
      "sources" : [
        "Complex/Complex+Equatable.swift",
        "Complex/Complex.swift",
        "Complex/ComplexArithmetic.swift",
        "Core/DataBuffer.swift",
        "Core/Formatter.swift",
        "Core/Operators.swift",
        "Matrix/Matrix+Equatable.swift",
        "Matrix/Matrix+StringConvertible.swift",
        "Matrix/Matrix.swift",
        "Matrix/MatrixAlgebra.swift",
        "Matrix/MatrixArithmetic.swift",
        "Matrix/MatrixExponential.swift",
        "Matrix/MatrixLogarithm.swift",
        "Matrix/MatrixPad.swift",
        "Matrix/MatrixPower.swift",
        "Matrix/MatrixTrigonometry.swift",
        "Matrix/RandomMatrix.swift",
        "RandomGenerators/Wyrand.swift",
        "RandomGenerators/Xoroshiro.swift",
        "RandomGenerators/Xoshiro.swift",
        "ShapedArray/Helpers.swift",
        "ShapedArray/NumberStyle.swift",
        "ShapedArray/ShapedArray+StringConvertible.swift",
        "ShapedArray/ShapedArray.swift",
        "ShapedArray/ShapedArrayArithmetic.swift",
        "ShapedArray/ShapedArrayElement.swift",
        "Vector/RandomVector.swift",
        "Vector/Vector+Equatable.swift",
        "Vector/Vector+StringConvertible.swift",
        "Vector/Vector.swift",
        "Vector/VectorAlgebra.swift",
        "Vector/VectorArithmetic.swift",
        "Vector/VectorExponential.swift",
        "Vector/VectorLogarithm.swift",
        "Vector/VectorPower.swift",
        "Vector/VectorTrigonometry.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.