The Swift Package Index logo.Swift Package Index

Build Information

Failed to build NozeIO, reference master (983ced), with Swift 6.2 for macOS (SPM) on 19 Jun 2025 05:30:30 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/NozeIO/Noze.io.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/NozeIO/Noze.io
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 983cedf Update README.md
Cloned https://github.com/NozeIO/Noze.io.git
Revision (git rev-parse @):
983cedfbe97cd592c4a2f59c69604bb1433895b3
SUCCESS checkout https://github.com/NozeIO/Noze.io.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/NozeIO/Noze.io.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/25] Write sources
[24/25] Write swift-version-1EA4D86E10B52AF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[26/80] Emitting module Freddy
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSON.swift:40:14: warning: associated value 'UnexpectedSubscript(type:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONPathType.Type'
38 |
39 |         /// The JSON is not subscriptable with `type`
40 |         case UnexpectedSubscript(type: JSONPathType.Type)
   |              `- warning: associated value 'UnexpectedSubscript(type:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONPathType.Type'
41 |
42 |         /// Unexpected JSON `value` was found that is not convertible `to` type
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:23:13: error: function 'feclearexcept' does not exist in module 'Darwin'
 21 | #else
 22 | import func Darwin.pow
 23 | import func Darwin.feclearexcept
    |             `- error: function 'feclearexcept' does not exist in module 'Darwin'
 24 | import func Darwin.fetestexcept
 25 | import var  Darwin.FE_UNDERFLOW
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:24:13: error: function 'fetestexcept' does not exist in module 'Darwin'
 22 | import func Darwin.pow
 23 | import func Darwin.feclearexcept
 24 | import func Darwin.fetestexcept
    |             `- error: function 'fetestexcept' does not exist in module 'Darwin'
 25 | import var  Darwin.FE_UNDERFLOW
 26 | import var  Darwin.FE_OVERFLOW
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:25:13: error: variable 'FE_UNDERFLOW' does not exist in module 'Darwin'
 23 | import func Darwin.feclearexcept
 24 | import func Darwin.fetestexcept
 25 | import var  Darwin.FE_UNDERFLOW
    |             `- error: variable 'FE_UNDERFLOW' does not exist in module 'Darwin'
 26 | import var  Darwin.FE_OVERFLOW
 27 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:26:13: error: variable 'FE_OVERFLOW' does not exist in module 'Darwin'
 24 | import func Darwin.fetestexcept
 25 | import var  Darwin.FE_UNDERFLOW
 26 | import var  Darwin.FE_OVERFLOW
    |             `- error: variable 'FE_OVERFLOW' does not exist in module 'Darwin'
 27 | #endif
 28 |
[27/80] Compiling Freddy Swift3.swift
[28/80] Compiling Freddy JSONEncodingDetector.swift
[29/80] Compiling Freddy JSONEncodable.swift
[30/80] Compiling base64 Base64.swift
[31/80] Emitting module base64
[32/80] Compiling Freddy JSONDecodable.swift
[33/80] Compiling Freddy JSON.swift
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSON.swift:40:14: warning: associated value 'UnexpectedSubscript(type:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONPathType.Type'
38 |
39 |         /// The JSON is not subscriptable with `type`
40 |         case UnexpectedSubscript(type: JSONPathType.Type)
   |              `- warning: associated value 'UnexpectedSubscript(type:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONPathType.Type'
41 |
42 |         /// Unexpected JSON `value` was found that is not convertible `to` type
[34/80] Compiling http_parser URLParser.swift
[35/80] Compiling Freddy JSONSubscripting.swift
[36/80] Emitting module CryptoSwift
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:24:20: warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 | #if swift(>=4.0)  // HH
18 |
19 | struct BatchedCollectionIndex<Base: Collection> {
   |                               `- note: 'Base' previously declared here
20 |     let range: Range<Base.Index>
21 | }
22 |
23 | extension BatchedCollectionIndex: Comparable {
24 |     static func ==<Base>(lhs: BatchedCollectionIndex<Base>, rhs: BatchedCollectionIndex<Base>) -> Bool {
   |                    `- warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |         return lhs.range.lowerBound == rhs.range.lowerBound
26 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:28:20: warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 | #if swift(>=4.0)  // HH
18 |
19 | struct BatchedCollectionIndex<Base: Collection> {
   |                               `- note: 'Base' previously declared here
20 |     let range: Range<Base.Index>
21 | }
   :
26 |     }
27 |
28 |     static func < <Base>(lhs: BatchedCollectionIndex<Base>, rhs: BatchedCollectionIndex<Base>) -> Bool {
   |                    `- warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         return lhs.range.lowerBound < rhs.range.lowerBound
30 |     }
[37/81] Compiling http_parser HTTPParserState.swift
[38/81] Compiling CryptoSwift IntegerConvertible.swift
[39/81] Compiling CryptoSwift ArrayExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:24:20: warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 | #if swift(>=4.0)  // HH
18 |
19 | struct BatchedCollectionIndex<Base: Collection> {
   |                               `- note: 'Base' previously declared here
20 |     let range: Range<Base.Index>
21 | }
22 |
23 | extension BatchedCollectionIndex: Comparable {
24 |     static func ==<Base>(lhs: BatchedCollectionIndex<Base>, rhs: BatchedCollectionIndex<Base>) -> Bool {
   |                    `- warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |         return lhs.range.lowerBound == rhs.range.lowerBound
26 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:28:20: warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 | #if swift(>=4.0)  // HH
18 |
19 | struct BatchedCollectionIndex<Base: Collection> {
   |                               `- note: 'Base' previously declared here
20 |     let range: Range<Base.Index>
21 | }
   :
26 |     }
27 |
28 |     static func < <Base>(lhs: BatchedCollectionIndex<Base>, rhs: BatchedCollectionIndex<Base>) -> Bool {
   |                    `- warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         return lhs.range.lowerBound < rhs.range.lowerBound
30 |     }
[40/81] Compiling CryptoSwift BatchedCollection.swift
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:24:20: warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 | #if swift(>=4.0)  // HH
18 |
19 | struct BatchedCollectionIndex<Base: Collection> {
   |                               `- note: 'Base' previously declared here
20 |     let range: Range<Base.Index>
21 | }
22 |
23 | extension BatchedCollectionIndex: Comparable {
24 |     static func ==<Base>(lhs: BatchedCollectionIndex<Base>, rhs: BatchedCollectionIndex<Base>) -> Bool {
   |                    `- warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |         return lhs.range.lowerBound == rhs.range.lowerBound
26 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift:28:20: warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 | #if swift(>=4.0)  // HH
18 |
19 | struct BatchedCollectionIndex<Base: Collection> {
   |                               `- note: 'Base' previously declared here
20 |     let range: Range<Base.Index>
21 | }
   :
26 |     }
27 |
28 |     static func < <Base>(lhs: BatchedCollectionIndex<Base>, rhs: BatchedCollectionIndex<Base>) -> Bool {
   |                    `- warning: generic parameter 'Base' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
29 |         return lhs.range.lowerBound < rhs.range.lowerBound
30 |     }
[41/81] Compiling CryptoSwift Bit.swift
[42/81] Compiling CryptoSwift BytesSequence.swift
[43/81] Compiling CryptoSwift Updatable.swift
[44/81] Compiling CryptoSwift Operators.swift
[45/81] Compiling CryptoSwift MD5.swift
[46/81] Compiling CryptoSwift CSArrayType+Extensions.swift
[47/81] Compiling CryptoSwift Collection+Extension.swift
[48/81] Emitting module http_parser
[49/81] Compiling http_parser CString.swift
[50/81] Compiling Freddy JSONLiteralConvertible.swift
[51/81] Compiling Freddy JSONParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:23:13: error: function 'feclearexcept' does not exist in module 'Darwin'
 21 | #else
 22 | import func Darwin.pow
 23 | import func Darwin.feclearexcept
    |             `- error: function 'feclearexcept' does not exist in module 'Darwin'
 24 | import func Darwin.fetestexcept
 25 | import var  Darwin.FE_UNDERFLOW
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:24:13: error: function 'fetestexcept' does not exist in module 'Darwin'
 22 | import func Darwin.pow
 23 | import func Darwin.feclearexcept
 24 | import func Darwin.fetestexcept
    |             `- error: function 'fetestexcept' does not exist in module 'Darwin'
 25 | import var  Darwin.FE_UNDERFLOW
 26 | import var  Darwin.FE_OVERFLOW
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:25:13: error: variable 'FE_UNDERFLOW' does not exist in module 'Darwin'
 23 | import func Darwin.feclearexcept
 24 | import func Darwin.fetestexcept
 25 | import var  Darwin.FE_UNDERFLOW
    |             `- error: variable 'FE_UNDERFLOW' does not exist in module 'Darwin'
 26 | import var  Darwin.FE_OVERFLOW
 27 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:26:13: error: variable 'FE_OVERFLOW' does not exist in module 'Darwin'
 24 | import func Darwin.fetestexcept
 25 | import var  Darwin.FE_UNDERFLOW
 26 | import var  Darwin.FE_OVERFLOW
    |             `- error: variable 'FE_OVERFLOW' does not exist in module 'Darwin'
 27 | #endif
 28 |
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:645:29: error: cannot find 'FE_UNDERFLOW' in scope
643 |
644 |     private func detectingFloatingPointErrors<T>(_ loc: Int, _ f: () throws -> T) throws -> T {
645 |         let flags : Int32 = FE_UNDERFLOW | FE_OVERFLOW
    |                             `- error: cannot find 'FE_UNDERFLOW' in scope
646 |         feclearexcept(flags)
647 |         let value = try f()
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:645:44: error: cannot find 'FE_OVERFLOW' in scope
643 |
644 |     private func detectingFloatingPointErrors<T>(_ loc: Int, _ f: () throws -> T) throws -> T {
645 |         let flags : Int32 = FE_UNDERFLOW | FE_OVERFLOW
    |                                            `- error: cannot find 'FE_OVERFLOW' in scope
646 |         feclearexcept(flags)
647 |         let value = try f()
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:645:42: error: cannot convert value of type 'UInt8' to specified type 'Int32'
643 |
644 |     private func detectingFloatingPointErrors<T>(_ loc: Int, _ f: () throws -> T) throws -> T {
645 |         let flags : Int32 = FE_UNDERFLOW | FE_OVERFLOW
    |                                          `- error: cannot convert value of type 'UInt8' to specified type 'Int32'
646 |         feclearexcept(flags)
647 |         let value = try f()
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:646:9: error: cannot find 'feclearexcept' in scope
644 |     private func detectingFloatingPointErrors<T>(_ loc: Int, _ f: () throws -> T) throws -> T {
645 |         let flags : Int32 = FE_UNDERFLOW | FE_OVERFLOW
646 |         feclearexcept(flags)
    |         `- error: cannot find 'feclearexcept' in scope
647 |         let value = try f()
648 |         guard fetestexcept(flags) == 0 else {
/Users/admin/builder/spi-builder-workspace/Sources/Freddy/JSONParser.swift:648:15: error: cannot find 'fetestexcept' in scope
646 |         feclearexcept(flags)
647 |         let value = try f()
648 |         guard fetestexcept(flags) == 0 else {
    |               `- error: cannot find 'fetestexcept' in scope
649 |             throw InternalError.NumberOverflow(offset: loc)
650 |         }
[52/81] Compiling http_parser HTTPError.swift
BUILD FAILURE 6.2 macosSpm