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 Strix, reference 2.4.8 (0f4ebc), with Swift 6.2 (beta) for Android on 21 Jul 2025 06:41:15 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/nearfri/Strix.git
Reference: 2.4.8
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/nearfri/Strix
 * tag               2.4.8      -> FETCH_HEAD
HEAD is now at 0f4ebc2 Add resolvedName property to FormatPlaceholder
Cloned https://github.com/nearfri/Strix.git
Revision (git rev-parse @):
0f4ebc2180e3504d02f5884b2d6a8d1db69ece29
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/nearfri/Strix.git at 2.4.8
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/nearfri/Strix.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-8C5A4AE7A8CE2BA.txt
[4/23] Compiling Strix Operators.swift
[5/23] Compiling Strix PrimitiveParsers.swift
[6/25] Compiling Strix TextPosition.swift
[7/25] Compiling Strix CharacterParsers.swift
[8/25] Compiling Strix NumberLiteral.swift
[9/25] Compiling Strix ParseError.swift
[10/25] Compiling Strix ParseErrorSplitter.swift
[11/25] Compiling Strix RunError.swift
[12/25] Compiling Strix NumberParseOptions.swift
[13/25] Compiling Strix NumberParsers.swift
[14/25] Compiling Strix ErrorOutputBuffer.swift
[15/25] Compiling Strix ErrorOutputStream.swift
[16/25] Compiling Strix Indent.swift
[17/25] Compiling Strix ParserState.swift
[18/25] Compiling Strix UserInfo.swift
[19/25] Compiling Strix ErrorMessageWriter.swift
[20/25] Emitting module Strix
[21/25] Compiling Strix Parser.swift
[22/25] Compiling Strix ParserReply.swift
[23/25] Compiling Strix ParserResult.swift
[24/25] Compiling Strix SequenceParsers.swift
[25/25] Compiling Strix StringParsers.swift
[27/40] Compiling StrixParsers JSONParser.swift
[28/40] Emitting module StrixParsers
[29/41] Compiling StrixParsers Data+.swift
[30/41] Compiling StrixParsers String+.swift
[31/41] Compiling StrixParsers CSVParser.swift
[32/41] Compiling StrixParsers Calculator.swift
[33/41] Compiling StrixParsers ASCIIPlist.swift
[34/41] Compiling StrixParsers ASCIIPlistParser.swift
[35/41] Compiling StrixParsers JSON.swift
[36/41] Compiling StrixParsers JSONConvertibleValue.swift
[37/41] Compiling StrixParsers FormatSpecifierParser.swift
[38/41] Compiling StrixParsers Indent.swift
[39/41] Compiling StrixParsers FormatPlaceholder.swift
/host/spi-builder-workspace/Sources/StrixParsers/FormatPlaceholder.swift:147:40: error: cannot find 'quad_t' in scope
145 |             case .long:         return CLong.self
146 |             case .longLong:     return CLongLong.self
147 |             case .quadword:     return quad_t.self
    |                                        `- error: cannot find 'quad_t' in scope
148 |             case .longDouble:   return CInt.self // invalid length
149 |             case .size:         return ssize_t.self
/host/spi-builder-workspace/Sources/StrixParsers/FormatPlaceholder.swift:160:40: error: cannot find 'u_quad_t' in scope
158 |             case .long:         return CUnsignedLong.self
159 |             case .longLong:     return CUnsignedLongLong.self
160 |             case .quadword:     return u_quad_t.self
    |                                        `- error: cannot find 'u_quad_t' in scope
161 |             case .longDouble:   return CUnsignedInt.self // invalid length
162 |             case .size:         return size_t.self
/host/spi-builder-workspace/Sources/StrixParsers/FormatPlaceholder.swift:171:40: error: cannot find 'CLongDouble' in scope
169 |             case nil:           return CDouble.self
170 |             case .long:         return CDouble.self
171 |             case .longDouble:   return CLongDouble.self
    |                                        `- error: cannot find 'CLongDouble' in scope
172 |             default:            return CDouble.self // invalid length
173 |             }
/host/spi-builder-workspace/Sources/StrixParsers/FormatPlaceholder.swift:181:61: error: cannot find type 'quad_t' in scope
179 |             case .long:         return UnsafeMutablePointer<CLong>.self
180 |             case .longLong:     return UnsafeMutablePointer<CLongLong>.self
181 |             case .quadword:     return UnsafeMutablePointer<quad_t>.self
    |                                                             `- error: cannot find type 'quad_t' in scope
182 |             case .longDouble:   return UnsafeMutablePointer<CInt>.self // invalid length
183 |             case .size:         return UnsafeMutablePointer<ssize_t>.self
[40/41] Compiling StrixParsers FormatSpecifier.swift
/host/spi-builder-workspace/Sources/StrixParsers/FormatPlaceholder.swift:147:40: error: cannot find 'quad_t' in scope
145 |             case .long:         return CLong.self
146 |             case .longLong:     return CLongLong.self
147 |             case .quadword:     return quad_t.self
    |                                        `- error: cannot find 'quad_t' in scope
148 |             case .longDouble:   return CInt.self // invalid length
149 |             case .size:         return ssize_t.self
/host/spi-builder-workspace/Sources/StrixParsers/FormatPlaceholder.swift:160:40: error: cannot find 'u_quad_t' in scope
158 |             case .long:         return CUnsignedLong.self
159 |             case .longLong:     return CUnsignedLongLong.self
160 |             case .quadword:     return u_quad_t.self
    |                                        `- error: cannot find 'u_quad_t' in scope
161 |             case .longDouble:   return CUnsignedInt.self // invalid length
162 |             case .size:         return size_t.self
/host/spi-builder-workspace/Sources/StrixParsers/FormatPlaceholder.swift:171:40: error: cannot find 'CLongDouble' in scope
169 |             case nil:           return CDouble.self
170 |             case .long:         return CDouble.self
171 |             case .longDouble:   return CLongDouble.self
    |                                        `- error: cannot find 'CLongDouble' in scope
172 |             default:            return CDouble.self // invalid length
173 |             }
/host/spi-builder-workspace/Sources/StrixParsers/FormatPlaceholder.swift:181:61: error: cannot find type 'quad_t' in scope
179 |             case .long:         return UnsafeMutablePointer<CLong>.self
180 |             case .longLong:     return UnsafeMutablePointer<CLongLong>.self
181 |             case .quadword:     return UnsafeMutablePointer<quad_t>.self
    |                                                             `- error: cannot find type 'quad_t' in scope
182 |             case .longDouble:   return UnsafeMutablePointer<CInt>.self // invalid length
183 |             case .size:         return UnsafeMutablePointer<ssize_t>.self
[41/41] Compiling StrixParsers PrattParser.swift
BUILD FAILURE 6.2 android