Build Information
Failed to build FuzzCheck, reference master (9e7e11), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 18:51:59 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/loiclec/fuzzcheck.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/loiclec/fuzzcheck
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 9e7e118 Update readme with link to funswift talk
Cloned https://github.com/loiclec/fuzzcheck.git
Revision (git rev-parse @):
9e7e118227d9faf3fb8d7176c6c3a3f3041787f8
SUCCESS checkout https://github.com/loiclec/fuzzcheck.git at master
Fetching https://github.com/apple/swift-package-manager
[1/177032] Fetching swift-package-manager
Fetched https://github.com/apple/swift-package-manager from cache (14.84s)
Fetching https://github.com/apple/swift-llbuild.git
[1/29496] Fetching swift-llbuild
Fetched https://github.com/apple/swift-llbuild.git from cache (4.11s)
Fetching https://github.com/JohnSundell/Files.git
[1/1273] Fetching files
Fetched https://github.com/JohnSundell/Files.git from cache (0.83s)
Computing version for https://github.com/JohnSundell/Files.git
Computed https://github.com/JohnSundell/Files.git at 2.2.1 (1.54s)
Creating working copy for https://github.com/apple/swift-package-manager
Working copy of https://github.com/apple/swift-package-manager resolved at 87523ce7e50d5fb0995682cd3c05558adbadfdfe
Creating working copy for https://github.com/apple/swift-llbuild.git
Working copy of https://github.com/apple/swift-llbuild.git resolved at master (ebeba84)
Creating working copy for https://github.com/JohnSundell/Files.git
Working copy of https://github.com/JohnSundell/Files.git resolved at 2.2.1
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
Fetching https://github.com/loiclec/fuzzcheck.git
[1/1098] Fetching fuzzcheck
Fetched https://github.com/loiclec/fuzzcheck.git from cache (0.75s)
Fetching https://github.com/apple/swift-package-manager from cache
Fetched https://github.com/apple/swift-package-manager from cache (1.21s)
Fetching https://github.com/apple/swift-llbuild.git from cache
Fetched https://github.com/apple/swift-llbuild.git from cache (0.86s)
error: could not find a branch named ‘master’ in https://github.com/apple/swift-llbuild.git (did you mean ‘main’?)
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/loiclec/fuzzcheck.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/14] Write sources
[3/14] Write FuzzCheckTool-entitlement.plist
[4/14] Write sources
[8/14] Compiling clibc libc.c
[9/14] Write swift-version--6988338F2F200930.txt
[10/14] Compiling CBuiltinsNotAvailableInSwift shims.c
[12/18] Emitting module SPMLibc
[13/18] Compiling SPMLibc libc.swift
[14/29] Compiling POSIX getcwd.swift
[15/29] Compiling POSIX realpath.swift
[16/29] Compiling POSIX rename.swift
[17/29] Compiling POSIX isatty.swift
[18/30] Compiling POSIX Error.swift
[19/30] Compiling POSIX chdir.swift
[20/30] Compiling POSIX readdir.swift
[21/30] Compiling POSIX env.swift
[22/30] Emitting module POSIX
[23/30] Compiling POSIX stat.swift
[24/30] Compiling POSIX exit.swift
[25/30] Compiling POSIX usleep.swift
[26/66] Emitting module Basic
[27/69] Compiling Basic DiagnosticsEngine.swift
[28/69] Compiling Basic DictionaryExtensions.swift
[29/69] Compiling Basic DictionaryLiteralExtensions.swift
[30/69] Compiling Basic EditDistance.swift
[31/69] Compiling Basic Result.swift
[32/69] Compiling Basic SHA256.swift
[33/69] Compiling Basic SortedArray.swift
[34/69] Compiling Basic StringConversions.swift
[35/69] Compiling Basic OrderedDictionary.swift
[36/69] Compiling Basic OrderedSet.swift
[37/69] Compiling Basic OutputByteStream.swift
[38/69] Compiling Basic Path.swift
[39/69] Compiling Basic KeyedPair.swift
[40/69] Compiling Basic LazyCache.swift
[41/69] Compiling Basic Lock.swift
[42/69] Compiling Basic ObjectIdentifierProtocol.swift
[43/69] Compiling Basic Thread.swift
[44/69] Compiling Basic Tuple.swift
[45/69] Compiling Basic misc.swift
[46/69] Compiling Basic CollectionAlgorithms.swift
[47/69] Compiling Basic CollectionExtensions.swift
[48/69] Compiling Basic Condition.swift
[49/69] Compiling Basic DeltaAlgorithm.swift
[50/69] Compiling Basic SynchronizedQueue.swift
[51/69] Compiling Basic TemporaryFile.swift
[52/69] Compiling Basic TerminalController.swift
[53/69] Compiling Basic Await.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Await.swift:18:28: error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
16 | /// - Throws: The error wrapped by the async method's result
17 | public func await<T, ErrorType>(_ body: (@escaping (Result<T, ErrorType>) -> Void) -> Void) throws -> T {
18 | return try await(body).dematerialize()
| `- error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
19 | }
20 |
[54/69] Compiling Basic ByteString.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Await.swift:18:28: error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
16 | /// - Throws: The error wrapped by the async method's result
17 | public func await<T, ErrorType>(_ body: (@escaping (Result<T, ErrorType>) -> Void) -> Void) throws -> T {
18 | return try await(body).dematerialize()
| `- error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
19 | }
20 |
[55/69] Compiling Basic CStringArray.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Await.swift:18:28: error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
16 | /// - Throws: The error wrapped by the async method's result
17 | public func await<T, ErrorType>(_ body: (@escaping (Result<T, ErrorType>) -> Void) -> Void) throws -> T {
18 | return try await(body).dematerialize()
| `- error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
19 | }
20 |
[56/69] Compiling Basic CacheableSequence.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Await.swift:18:28: error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
16 | /// - Throws: The error wrapped by the async method's result
17 | public func await<T, ErrorType>(_ body: (@escaping (Result<T, ErrorType>) -> Void) -> Void) throws -> T {
18 | return try await(body).dematerialize()
| `- error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
19 | }
20 |
[57/69] Compiling Basic PathShims.swift
[58/69] Compiling Basic Process.swift
[59/69] Compiling Basic ProcessSet.swift
[60/69] Compiling Basic RegEx.swift
[61/69] Compiling Basic FileSystem.swift
[62/69] Compiling Basic GraphAlgorithms.swift
[63/69] Compiling Basic JSON.swift
[64/69] Compiling Basic JSONMapper.swift
[65/69] Emitting module Files
BUILD FAILURE 6.3 macosSpm