Build Information
Failed to build Geometry, reference master (dbe9f6), with Swift 6.1 for Android on 28 May 2025 05:03:17 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mrwerdo/geometry.git
Reference: master
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/mrwerdo/geometry
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at dbe9f6f Merge pull request #1 from mdales/mwd-linux-fixes
Cloned https://github.com/mrwerdo/geometry.git
Revision (git rev-parse @):
dbe9f6ff77821beb29e746071d81feed084da540
SUCCESS checkout https://github.com/mrwerdo/geometry.git at master
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/mrwerdo/geometry.git
https://github.com/mrwerdo/geometry.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swiftcli",
"requirement" : {
"range" : [
{
"lower_bound" : "4.0.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/jakeheis/SwiftCLI"
}
],
"manifest_display_name" : "Geometry",
"name" : "Geometry",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "synthesize",
"targets" : [
"ProtocolSynthesis"
],
"type" : {
"executable" : null
}
},
{
"name" : "Geometry",
"targets" : [
"Geometry"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ProtocolSynthesis",
"module_type" : "SwiftTarget",
"name" : "ProtocolSynthesis",
"path" : "Sources/ProtocolSynthesis",
"product_dependencies" : [
"SwiftCLI"
],
"product_memberships" : [
"synthesize"
],
"sources" : [
"main.swift"
],
"type" : "executable"
},
{
"c99name" : "GeometryTests",
"module_type" : "SwiftTarget",
"name" : "GeometryTests",
"path" : "Tests/GeometryTests",
"sources" : [
"APISpecificationTests.swift",
"GeometryTests.swift"
],
"target_dependencies" : [
"Geometry"
],
"type" : "test"
},
{
"c99name" : "Geometry",
"module_type" : "SwiftTarget",
"name" : "Geometry",
"path" : "Sources/Geometry",
"product_memberships" : [
"Geometry"
],
"sources" : [
"Coordinates.swift",
"Geometry.swift",
"Vector.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/jakeheis/SwiftCLI
[1/5074] Fetching swiftcli
Fetched https://github.com/jakeheis/SwiftCLI from cache (0.43s)
Computing version for https://github.com/jakeheis/SwiftCLI
Computed https://github.com/jakeheis/SwiftCLI at 4.3.2 (1.35s)
Creating working copy for https://github.com/jakeheis/SwiftCLI
Working copy of https://github.com/jakeheis/SwiftCLI resolved at 4.3.2
Building for debugging...
[0/8] Write sources
[3/8] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/34] Emitting module SwiftCLI
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[6/37] Compiling Geometry Geometry.swift
/host/spi-builder-workspace/Sources/Geometry/Vector.swift:42:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point2D' to 'Hashable' by implementing 'hash(into:)' instead
40 | }
41 |
42 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point2D' to 'Hashable' by implementing 'hash(into:)' instead
43 | return Self.components.description.hashValue // FIXME: This hash algorithm is inefficient.
44 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:16:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size2D' to 'Hashable' by implementing 'hash(into:)' instead
14 | }
15 |
16 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size2D' to 'Hashable' by implementing 'hash(into:)' instead
17 | return "\(width), \(height)".hashValue
18 | }
/host/spi-builder-workspace/Sources/Geometry/Geometry.swift:90:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point3D' to 'Hashable' by implementing 'hash(into:)' instead
88 |
89 | extension Point3D : Hashable {
90 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point3D' to 'Hashable' by implementing 'hash(into:)' instead
91 | return x.hashValue ^ y.hashValue << 16 ^ z.hashValue << 32
92 | }
/host/spi-builder-workspace/Sources/Geometry/Geometry.swift:96:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size3D' to 'Hashable' by implementing 'hash(into:)' instead
94 |
95 | extension Size3D : Hashable {
96 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size3D' to 'Hashable' by implementing 'hash(into:)' instead
97 | return width.hashValue ^ height.hashValue << 16 ^ breadth.hashValue << 32
98 | }
[7/37] Compiling Geometry Vector.swift
[8/37] Compiling SwiftCLI Task.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[9/37] Compiling SwiftCLI Term.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[10/37] Compiling SwiftCLI VersionCommand.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/37] Emitting module Geometry
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:113:62: error: cannot find type 'CGVector' in scope
111 | }
112 |
113 | func vector(headingTo point: CGPoint, speed: CGFloat) -> CGVector {
| `- error: cannot find type 'CGVector' in scope
114 | let difference = point - self
115 | let theta = atan2(difference.y, difference.x)
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:120:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
118 | }
119 |
120 | extension CGPoint : VectorType {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
121 | public static var components: [WritableKeyPath<CGPoint, CGFloat>] {
122 | return [\.x, \.y]
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:137:15: error: cannot find type 'CGVector' in scope
135 | }
136 |
137 | init(_ v: CGVector) {
| `- error: cannot find type 'CGVector' in scope
138 | self.init(x: v.dx, y: v.dy)
139 | }
/host/spi-builder-workspace/Sources/Geometry/Vector.swift:42:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGPoint' to 'Hashable' by implementing 'hash(into:)' instead
40 | }
41 |
42 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGPoint' to 'Hashable' by implementing 'hash(into:)' instead
43 | return Self.components.description.hashValue // FIXME: This hash algorithm is inefficient.
44 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:148:11: error: cannot find type 'CGVector' in scope
146 |
147 |
148 | extension CGVector : VectorType {
| `- error: cannot find type 'CGVector' in scope
149 | public static var components: [WritableKeyPath<CGVector, CGFloat>] {
150 | return [\.dx, \.dy]
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:154:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
152 | }
153 |
154 | extension CGSize : CountableArea {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
155 | public init(square l: CGFloat) {
156 | self.init(width: l, height: l)
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:16:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGSize' to 'Hashable' by implementing 'hash(into:)' instead
14 | }
15 |
16 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGSize' to 'Hashable' by implementing 'hash(into:)' instead
17 | return "\(width), \(height)".hashValue
18 | }
/host/spi-builder-workspace/Sources/Geometry/Vector.swift:42:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point2D' to 'Hashable' by implementing 'hash(into:)' instead
40 | }
41 |
42 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point2D' to 'Hashable' by implementing 'hash(into:)' instead
43 | return Self.components.description.hashValue // FIXME: This hash algorithm is inefficient.
44 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:16:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size2D' to 'Hashable' by implementing 'hash(into:)' instead
14 | }
15 |
16 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size2D' to 'Hashable' by implementing 'hash(into:)' instead
17 | return "\(width), \(height)".hashValue
18 | }
/host/spi-builder-workspace/Sources/Geometry/Geometry.swift:90:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point3D' to 'Hashable' by implementing 'hash(into:)' instead
88 |
89 | extension Point3D : Hashable {
90 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point3D' to 'Hashable' by implementing 'hash(into:)' instead
91 | return x.hashValue ^ y.hashValue << 16 ^ z.hashValue << 32
92 | }
/host/spi-builder-workspace/Sources/Geometry/Geometry.swift:96:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size3D' to 'Hashable' by implementing 'hash(into:)' instead
94 |
95 | extension Size3D : Hashable {
96 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size3D' to 'Hashable' by implementing 'hash(into:)' instead
97 | return width.hashValue ^ height.hashValue << 16 ^ breadth.hashValue << 32
98 | }
[12/37] Compiling Geometry Coordinates.swift
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:113:62: error: cannot find type 'CGVector' in scope
111 | }
112 |
113 | func vector(headingTo point: CGPoint, speed: CGFloat) -> CGVector {
| `- error: cannot find type 'CGVector' in scope
114 | let difference = point - self
115 | let theta = atan2(difference.y, difference.x)
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:120:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
118 | }
119 |
120 | extension CGPoint : VectorType {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
121 | public static var components: [WritableKeyPath<CGPoint, CGFloat>] {
122 | return [\.x, \.y]
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:137:15: error: cannot find type 'CGVector' in scope
135 | }
136 |
137 | init(_ v: CGVector) {
| `- error: cannot find type 'CGVector' in scope
138 | self.init(x: v.dx, y: v.dy)
139 | }
/host/spi-builder-workspace/Sources/Geometry/Vector.swift:42:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGPoint' to 'Hashable' by implementing 'hash(into:)' instead
40 | }
41 |
42 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGPoint' to 'Hashable' by implementing 'hash(into:)' instead
43 | return Self.components.description.hashValue // FIXME: This hash algorithm is inefficient.
44 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:148:11: error: cannot find type 'CGVector' in scope
146 |
147 |
148 | extension CGVector : VectorType {
| `- error: cannot find type 'CGVector' in scope
149 | public static var components: [WritableKeyPath<CGVector, CGFloat>] {
150 | return [\.dx, \.dy]
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:154:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
152 | }
153 |
154 | extension CGSize : CountableArea {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
155 | public init(square l: CGFloat) {
156 | self.init(width: l, height: l)
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:16:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGSize' to 'Hashable' by implementing 'hash(into:)' instead
14 | }
15 |
16 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGSize' to 'Hashable' by implementing 'hash(into:)' instead
17 | return "\(width), \(height)".hashValue
18 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:149:52: error: cannot find type 'CGVector' in scope
147 |
148 | extension CGVector : VectorType {
149 | public static var components: [WritableKeyPath<CGVector, CGFloat>] {
| `- error: cannot find type 'CGVector' in scope
150 | return [\.dx, \.dy]
151 | }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/5] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/31] Emitting module Geometry
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:113:62: error: cannot find type 'CGVector' in scope
111 | }
112 |
113 | func vector(headingTo point: CGPoint, speed: CGFloat) -> CGVector {
| `- error: cannot find type 'CGVector' in scope
114 | let difference = point - self
115 | let theta = atan2(difference.y, difference.x)
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:120:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
118 | }
119 |
120 | extension CGPoint : VectorType {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
121 | public static var components: [WritableKeyPath<CGPoint, CGFloat>] {
122 | return [\.x, \.y]
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:137:15: error: cannot find type 'CGVector' in scope
135 | }
136 |
137 | init(_ v: CGVector) {
| `- error: cannot find type 'CGVector' in scope
138 | self.init(x: v.dx, y: v.dy)
139 | }
/host/spi-builder-workspace/Sources/Geometry/Vector.swift:42:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGPoint' to 'Hashable' by implementing 'hash(into:)' instead
40 | }
41 |
42 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGPoint' to 'Hashable' by implementing 'hash(into:)' instead
43 | return Self.components.description.hashValue // FIXME: This hash algorithm is inefficient.
44 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:148:11: error: cannot find type 'CGVector' in scope
146 |
147 |
148 | extension CGVector : VectorType {
| `- error: cannot find type 'CGVector' in scope
149 | public static var components: [WritableKeyPath<CGVector, CGFloat>] {
150 | return [\.dx, \.dy]
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:154:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
152 | }
153 |
154 | extension CGSize : CountableArea {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
155 | public init(square l: CGFloat) {
156 | self.init(width: l, height: l)
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:16:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGSize' to 'Hashable' by implementing 'hash(into:)' instead
14 | }
15 |
16 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGSize' to 'Hashable' by implementing 'hash(into:)' instead
17 | return "\(width), \(height)".hashValue
18 | }
/host/spi-builder-workspace/Sources/Geometry/Vector.swift:42:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point2D' to 'Hashable' by implementing 'hash(into:)' instead
40 | }
41 |
42 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point2D' to 'Hashable' by implementing 'hash(into:)' instead
43 | return Self.components.description.hashValue // FIXME: This hash algorithm is inefficient.
44 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:16:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size2D' to 'Hashable' by implementing 'hash(into:)' instead
14 | }
15 |
16 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size2D' to 'Hashable' by implementing 'hash(into:)' instead
17 | return "\(width), \(height)".hashValue
18 | }
/host/spi-builder-workspace/Sources/Geometry/Geometry.swift:90:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point3D' to 'Hashable' by implementing 'hash(into:)' instead
88 |
89 | extension Point3D : Hashable {
90 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point3D' to 'Hashable' by implementing 'hash(into:)' instead
91 | return x.hashValue ^ y.hashValue << 16 ^ z.hashValue << 32
92 | }
/host/spi-builder-workspace/Sources/Geometry/Geometry.swift:96:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size3D' to 'Hashable' by implementing 'hash(into:)' instead
94 |
95 | extension Size3D : Hashable {
96 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size3D' to 'Hashable' by implementing 'hash(into:)' instead
97 | return width.hashValue ^ height.hashValue << 16 ^ breadth.hashValue << 32
98 | }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/31] Emitting module SwiftCLI
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[4/34] Compiling SwiftCLI Path.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[5/34] Compiling SwiftCLI Router.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[6/34] Compiling SwiftCLI Stream.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[7/34] Compiling SwiftCLI Output.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[8/34] Compiling SwiftCLI Parameter.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[9/34] Compiling SwiftCLI ParameterFiller.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[10/34] Compiling SwiftCLI ArgumentList.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[11/34] Compiling SwiftCLI ArgumentListManipulator.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[12/34] Compiling SwiftCLI CLI.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[13/34] Compiling SwiftCLI CompletionGenerator.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[14/34] Compiling SwiftCLI Error.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[15/34] Compiling SwiftCLI HelpCommand.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[16/34] Compiling SwiftCLI HelpMessageGenerator.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[17/34] Compiling SwiftCLI Input.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[18/34] Compiling SwiftCLI Option.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[19/34] Compiling SwiftCLI OptionGroup.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[20/34] Compiling SwiftCLI OptionRecognizer.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[21/34] Compiling SwiftCLI OptionRegistry.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[22/34] Compiling SwiftCLI Command.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[23/34] Compiling SwiftCLI CommandSignature.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[24/34] Compiling SwiftCLI Compatibility.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCLI/Sources/SwiftCLI/CLI.swift:12:12: error: no such module 'Darwin'
10 | import Glibc
11 | #else
12 | import Darwin
| `- error: no such module 'Darwin'
13 | #endif
14 |
[25/34] Compiling Geometry Geometry.swift
/host/spi-builder-workspace/Sources/Geometry/Vector.swift:42:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point2D' to 'Hashable' by implementing 'hash(into:)' instead
40 | }
41 |
42 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point2D' to 'Hashable' by implementing 'hash(into:)' instead
43 | return Self.components.description.hashValue // FIXME: This hash algorithm is inefficient.
44 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:16:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size2D' to 'Hashable' by implementing 'hash(into:)' instead
14 | }
15 |
16 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size2D' to 'Hashable' by implementing 'hash(into:)' instead
17 | return "\(width), \(height)".hashValue
18 | }
/host/spi-builder-workspace/Sources/Geometry/Geometry.swift:90:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point3D' to 'Hashable' by implementing 'hash(into:)' instead
88 |
89 | extension Point3D : Hashable {
90 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Point3D' to 'Hashable' by implementing 'hash(into:)' instead
91 | return x.hashValue ^ y.hashValue << 16 ^ z.hashValue << 32
92 | }
/host/spi-builder-workspace/Sources/Geometry/Geometry.swift:96:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size3D' to 'Hashable' by implementing 'hash(into:)' instead
94 |
95 | extension Size3D : Hashable {
96 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Size3D' to 'Hashable' by implementing 'hash(into:)' instead
97 | return width.hashValue ^ height.hashValue << 16 ^ breadth.hashValue << 32
98 | }
[26/34] Compiling Geometry Vector.swift
[27/34] Compiling Geometry Coordinates.swift
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:113:62: error: cannot find type 'CGVector' in scope
111 | }
112 |
113 | func vector(headingTo point: CGPoint, speed: CGFloat) -> CGVector {
| `- error: cannot find type 'CGVector' in scope
114 | let difference = point - self
115 | let theta = atan2(difference.y, difference.x)
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:120:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
118 | }
119 |
120 | extension CGPoint : VectorType {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
121 | public static var components: [WritableKeyPath<CGPoint, CGFloat>] {
122 | return [\.x, \.y]
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:137:15: error: cannot find type 'CGVector' in scope
135 | }
136 |
137 | init(_ v: CGVector) {
| `- error: cannot find type 'CGVector' in scope
138 | self.init(x: v.dx, y: v.dy)
139 | }
/host/spi-builder-workspace/Sources/Geometry/Vector.swift:42:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGPoint' to 'Hashable' by implementing 'hash(into:)' instead
40 | }
41 |
42 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGPoint' to 'Hashable' by implementing 'hash(into:)' instead
43 | return Self.components.description.hashValue // FIXME: This hash algorithm is inefficient.
44 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:148:11: error: cannot find type 'CGVector' in scope
146 |
147 |
148 | extension CGVector : VectorType {
| `- error: cannot find type 'CGVector' in scope
149 | public static var components: [WritableKeyPath<CGVector, CGFloat>] {
150 | return [\.dx, \.dy]
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:154:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
152 | }
153 |
154 | extension CGSize : CountableArea {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocols 'Hashable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
155 | public init(square l: CGFloat) {
156 | self.init(width: l, height: l)
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:16:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGSize' to 'Hashable' by implementing 'hash(into:)' instead
14 | }
15 |
16 | var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CGSize' to 'Hashable' by implementing 'hash(into:)' instead
17 | return "\(width), \(height)".hashValue
18 | }
/host/spi-builder-workspace/Sources/Geometry/Coordinates.swift:149:52: error: cannot find type 'CGVector' in scope
147 |
148 | extension CGVector : VectorType {
149 | public static var components: [WritableKeyPath<CGVector, CGFloat>] {
| `- error: cannot find type 'CGVector' in scope
150 | return [\.dx, \.dy]
151 | }
BUILD FAILURE 6.1 android