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 Shaft, reference main (ffd840), with Swift 6.1 for macOS (SPM) on 25 Jun 2025 15:18:55 UTC.

Build Command

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

Build Log

    |                                                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
551 |
552 |                 ix += 1
[1282/1286] Compiling Playground Kit_Background.swift
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:35: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                   `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:53: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:69: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:190:45: warning: 'float3' is deprecated: Use SIMD3<Float>
188 |         }
189 |
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
    |                                             `- warning: 'float3' is deprecated: Use SIMD3<Float>
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:198:41: warning: 'float3' is deprecated: Use SIMD3<Float>
196 |         }
197 |
198 |         static func makeScale(_ v: simd.float3) -> simd_float4x4 {
    |                                         `- warning: 'float3' is deprecated: Use SIMD3<Float>
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:254:36: warning: 'float3' is deprecated: Use SIMD3<Float>
252 |         enum ShaderTypes {
253 |             struct VertexData {
254 |                 var position: simd.float3
    |                                    `- warning: 'float3' is deprecated: Use SIMD3<Float>
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:255:34: warning: 'float3' is deprecated: Use SIMD3<Float>
253 |             struct VertexData {
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
    |                                  `- warning: 'float3' is deprecated: Use SIMD3<Float>
256 |                 var texcoord: simd.float2
257 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:256:36: warning: 'float2' is deprecated: Use SIMD2<Float>
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
    |                                    `- warning: 'float2' is deprecated: Use SIMD2<Float>
257 |             }
258 |
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:134:25: warning: 'float3' is deprecated: Use SIMD3<Float>
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
    |                         `- warning: 'float3' is deprecated: Use SIMD3<Float>
135 |         }
136 |
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:139:22: warning: 'float4' is deprecated: Use SIMD4<Float>
137 |         static func makeIdentity() -> simd_float4x4 {
138 |             return simd_float4x4(
139 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:140:22: warning: 'float4' is deprecated: Use SIMD4<Float>
138 |             return simd_float4x4(
139 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
142 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:141:22: warning: 'float4' is deprecated: Use SIMD4<Float>
139 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
142 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
143 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:142:22: warning: 'float4' is deprecated: Use SIMD4<Float>
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
142 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
143 |             )
144 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:153:22: warning: 'float4' is deprecated: Use SIMD4<Float>
151 |             let zs = zfar / (znear - zfar)
152 |             return simd_matrix_from_rows(
153 |                 simd.float4(xs, 0.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:154:22: warning: 'float4' is deprecated: Use SIMD4<Float>
152 |             return simd_matrix_from_rows(
153 |                 simd.float4(xs, 0.0, 0.0, 0.0),
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
156 |                 simd.float4(0, 0, -1, 0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:155:22: warning: 'float4' is deprecated: Use SIMD4<Float>
153 |                 simd.float4(xs, 0.0, 0.0, 0.0),
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
156 |                 simd.float4(0, 0, -1, 0)
157 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:156:22: warning: 'float4' is deprecated: Use SIMD4<Float>
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
156 |                 simd.float4(0, 0, -1, 0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
157 |             )
158 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:163:22: warning: 'float4' is deprecated: Use SIMD4<Float>
161 |             let a = angleRadians
162 |             return simd_matrix_from_rows(
163 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:164:22: warning: 'float4' is deprecated: Use SIMD4<Float>
162 |             return simd_matrix_from_rows(
163 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
166 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:165:22: warning: 'float4' is deprecated: Use SIMD4<Float>
163 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
166 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
167 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:166:22: warning: 'float4' is deprecated: Use SIMD4<Float>
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
166 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
167 |             )
168 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:173:22: warning: 'float4' is deprecated: Use SIMD4<Float>
171 |             let a = angleRadians
172 |             return simd_matrix_from_rows(
173 |                 simd.float4(cosf(a), 0.0, sinf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:174:22: warning: 'float4' is deprecated: Use SIMD4<Float>
172 |             return simd_matrix_from_rows(
173 |                 simd.float4(cosf(a), 0.0, sinf(a), 0.0),
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
176 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:175:22: warning: 'float4' is deprecated: Use SIMD4<Float>
173 |                 simd.float4(cosf(a), 0.0, sinf(a), 0.0),
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
176 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
177 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:176:22: warning: 'float4' is deprecated: Use SIMD4<Float>
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
176 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
177 |             )
178 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:183:22: warning: 'float4' is deprecated: Use SIMD4<Float>
181 |             let a = angleRadians
182 |             return simd_matrix_from_rows(
183 |                 simd.float4(cosf(a), sinf(a), 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:184:22: warning: 'float4' is deprecated: Use SIMD4<Float>
182 |             return simd_matrix_from_rows(
183 |                 simd.float4(cosf(a), sinf(a), 0.0, 0.0),
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
186 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:185:22: warning: 'float4' is deprecated: Use SIMD4<Float>
183 |                 simd.float4(cosf(a), sinf(a), 0.0, 0.0),
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
186 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
187 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:186:22: warning: 'float4' is deprecated: Use SIMD4<Float>
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
186 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
187 |             )
188 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:191:29: warning: 'float4' is deprecated: Use SIMD4<Float>
189 |
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:192:29: warning: 'float4' is deprecated: Use SIMD4<Float>
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
194 |             let col3 = simd.float4(v.x, v.y, v.z, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:193:29: warning: 'float4' is deprecated: Use SIMD4<Float>
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
194 |             let col3 = simd.float4(v.x, v.y, v.z, 1.0)
195 |             return simd_matrix(col0, col1, col2, col3)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:194:29: warning: 'float4' is deprecated: Use SIMD4<Float>
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
194 |             let col3 = simd.float4(v.x, v.y, v.z, 1.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
195 |             return simd_matrix(col0, col1, col2, col3)
196 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:200:22: warning: 'float4' is deprecated: Use SIMD4<Float>
198 |         static func makeScale(_ v: simd.float3) -> simd_float4x4 {
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
201 |                 simd.float4(0, v.y, 0, 0),
202 |                 simd.float4(0, 0, v.z, 0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:201:22: warning: 'float4' is deprecated: Use SIMD4<Float>
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
201 |                 simd.float4(0, v.y, 0, 0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
202 |                 simd.float4(0, 0, v.z, 0),
203 |                 simd.float4(0, 0, 0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:202:22: warning: 'float4' is deprecated: Use SIMD4<Float>
200 |                 simd.float4(v.x, 0, 0, 0),
201 |                 simd.float4(0, v.y, 0, 0),
202 |                 simd.float4(0, 0, v.z, 0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
203 |                 simd.float4(0, 0, 0, 1.0)
204 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:203:22: warning: 'float4' is deprecated: Use SIMD4<Float>
201 |                 simd.float4(0, v.y, 0, 0),
202 |                 simd.float4(0, 0, v.z, 0),
203 |                 simd.float4(0, 0, 0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
204 |             )
205 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:509:39: warning: 'float3' is deprecated: Use SIMD3<Float>
507 |             )
508 |
509 |             let objectPosition = simd.float3(0.0, 0.0, -10.0)
    |                                       `- warning: 'float3' is deprecated: Use SIMD3<Float>
510 |
511 |             let rt = math.makeTranslate(objectPosition)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:515:22: warning: 'float3' is deprecated: Use SIMD3<Float>
513 |             let rr0 = math.makeXRotate(-angleY)
514 |             let rtInv = math.makeTranslate(
515 |                 simd.float3(-objectPosition.x, -objectPosition.y, -objectPosition.z)
    |                      `- warning: 'float3' is deprecated: Use SIMD3<Float>
516 |             )
517 |             let fullObjectRot = rt * rr1 * rr0 * rtInv
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:532:49: warning: 'float3' is deprecated: Use SIMD3<Float>
530 |                 }
531 |
532 |                 let scale = math.makeScale(simd.float3(scl, scl, scl))
    |                                                 `- warning: 'float3' is deprecated: Use SIMD3<Float>
533 |                 let zrot = math.makeZRotate(angleY * sin(Float(ix)))
534 |                 let yrot = math.makeYRotate(angleX * cos(Float(iy)))
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:539:82: warning: 'float3' is deprecated: Use SIMD3<Float>
537 |                 let y = (Float(iy) - Float(Self.kInstanceColumns) / 2.0) * (2.0 * scl) + scl
538 |                 let z = (Float(iz) - Float(Self.kInstanceDepth) / 2.0) * (2.0 * scl)
539 |                 let translate = math.makeTranslate(math.add(objectPosition, simd.float3(x, y, z)))
    |                                                                                  `- warning: 'float3' is deprecated: Use SIMD3<Float>
540 |
541 |                 instanceData[i].instanceTransform = fullObjectRot * translate * yrot * zrot * scale
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:550:54: warning: 'float4' is deprecated: Use SIMD4<Float>
548 |                 let g = 1.0 - r
549 |                 let b = sin(.pi * 2.0 * iDivNumInstances)
550 |                 instanceData[i].instanceColor = simd.float4(r, g, b, 1.0)
    |                                                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
551 |
552 |                 ix += 1
[1283/1286] Emitting module Playground
/Users/admin/builder/spi-builder-workspace/Sources/Playground/HackerNews/HackerNewsApp.swift:5:5: warning: let 'hackerNewsService' is not concurrency-safe because non-'Sendable' type 'HackerNewsService' may have shared mutable state; this is an error in the Swift 6 language mode
  3 | import Shaft
  4 |
  5 | let hackerNewsService = HackerNewsService()
    |     |- warning: let 'hackerNewsService' is not concurrency-safe because non-'Sendable' type 'HackerNewsService' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: add '@MainActor' to make let 'hackerNewsService' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | final class HackerNewsApp: StatelessWidget {
/Users/admin/builder/spi-builder-workspace/Sources/Playground/HackerNews/HackerNews.swift:37:7: note: class 'HackerNewsService' does not conform to the 'Sendable' protocol
35 |
36 | @Observable
37 | class HackerNewsService {
   |       `- note: class 'HackerNewsService' does not conform to the 'Sendable' protocol
38 |     init() {
39 |         Task {
/Users/admin/builder/spi-builder-workspace/Sources/Playground/HackerNews/HackerNewsApp.swift:18:13: warning: let 'searchController' is not concurrency-safe because non-'Sendable' type 'TextEditingController' may have shared mutable state; this is an error in the Swift 6 language mode
 16 | }
 17 |
 18 | private let searchController = TextEditingController()
    |             `- warning: let 'searchController' is not concurrency-safe because non-'Sendable' type 'TextEditingController' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |
 20 | final class Title: StatelessWidget {
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Text/EditableText.swift:64:12: note: class 'TextEditingController' does not conform to the 'Sendable' protocol
  62 | ///  * Learn how to use a [TextEditingController] in one of our [cookbook
  63 | ///    recipes](https://flutter.dev/docs/cookbook/forms/text-field-changes#2-use-a-texteditingcontroller).
  64 | open class TextEditingController: ChangeNotifier {
     |            `- note: class 'TextEditingController' does not conform to the 'Sendable' protocol
  65 |     public var value: TextEditingValue = .empty {
  66 |         didSet {
/Users/admin/builder/spi-builder-workspace/Sources/Playground/HackerNews/HackerNewsApp.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Shaft'
  1 | // import AppKit
  2 | import Foundation
  3 | import Shaft
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Shaft'
  4 |
  5 | let hackerNewsService = HackerNewsService()
    :
 16 | }
 17 |
 18 | private let searchController = TextEditingController()
    |             |- note: add '@MainActor' to make let 'searchController' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 | final class Title: StatelessWidget {
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Concept_Observation.swift:248:5: warning: let 'counter' is not concurrency-safe because non-'Sendable' type 'Counter' may have shared mutable state; this is an error in the Swift 6 language mode
242 |
243 | @Observable
244 | class Counter {
    |       `- note: class 'Counter' does not conform to the 'Sendable' protocol
245 |     var count = 0
246 | }
247 |
248 | let counter = Counter()
    |     |- warning: let 'counter' is not concurrency-safe because non-'Sendable' type 'Counter' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: add '@MainActor' to make let 'counter' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
249 |
250 | class CounterView: StatelessWidget {
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Concept_Observation.swift:287:5: warning: let 'shoppingList' is not concurrency-safe because non-'Sendable' type 'ShoppingList' may have shared mutable state; this is an error in the Swift 6 language mode
262 |
263 | @Observable
264 | class ShoppingList {
    |       `- note: class 'ShoppingList' does not conform to the 'Sendable' protocol
265 |     @Observable
266 |     class Entry {
    :
285 | }
286 |
287 | let shoppingList = ShoppingList()
    |     |- warning: let 'shoppingList' is not concurrency-safe because non-'Sendable' type 'ShoppingList' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: add '@MainActor' to make let 'shoppingList' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
288 |
289 | class ShoppingListView: StatelessWidget {
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:35: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                   `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:53: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:69: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:190:45: warning: 'float3' is deprecated: Use SIMD3<Float>
188 |         }
189 |
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
    |                                             `- warning: 'float3' is deprecated: Use SIMD3<Float>
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:198:41: warning: 'float3' is deprecated: Use SIMD3<Float>
196 |         }
197 |
198 |         static func makeScale(_ v: simd.float3) -> simd_float4x4 {
    |                                         `- warning: 'float3' is deprecated: Use SIMD3<Float>
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:254:36: warning: 'float3' is deprecated: Use SIMD3<Float>
252 |         enum ShaderTypes {
253 |             struct VertexData {
254 |                 var position: simd.float3
    |                                    `- warning: 'float3' is deprecated: Use SIMD3<Float>
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:255:34: warning: 'float3' is deprecated: Use SIMD3<Float>
253 |             struct VertexData {
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
    |                                  `- warning: 'float3' is deprecated: Use SIMD3<Float>
256 |                 var texcoord: simd.float2
257 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:256:36: warning: 'float2' is deprecated: Use SIMD2<Float>
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
    |                                    `- warning: 'float2' is deprecated: Use SIMD2<Float>
257 |             }
258 |
[1283/1286] Write Objects.LinkFileList
error: link command failed with exit code 1 (use -v to see invocation)
ld: warning: search path '.shaft/skia' not found
ld: warning: Could not find or use auto-linked library 'skia': library 'skia' not found
ld: warning: Could not find or use auto-linked library 'skparagraph': library 'skparagraph' not found
ld: warning: Could not find or use auto-linked library 'skshaper': library 'skshaper' not found
ld: warning: Could not find or use auto-linked library 'skunicode_core': library 'skunicode_core' not found
ld: warning: Could not find or use auto-linked library 'skunicode_icu': library 'skunicode_icu' not found
ld: warning: Could not find or use auto-linked framework 'CoreAudioTypes': framework 'CoreAudioTypes' not found
Undefined symbols for architecture arm64:
  "sk_abort_no_print()", referenced from:
      sk_sp<skia::textlayout::FontCollection>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkSurface>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkImage>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkTypeface>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::unref() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::ref() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::~SkRefCntBase()::'lambda'()::operator()() const in utils.cpp.o
      ...
  "SkFontMgr_New_CoreText(__CTFontCollection const*)", referenced from:
      ___cxx_global_var_init.2 in utils.cpp.o
  "GrGLMakeNativeInterface()", referenced from:
      gr_glinterface_create_native_interface() in utils.cpp.o
  "SkMakeTypefaceFromCTFont(__CTFont const*)", referenced from:
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
  "SkDebugf(char const*, ...)", referenced from:
      sk_sp<skia::textlayout::FontCollection>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkSurface>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkImage>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkTypeface>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::unref() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::ref() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::~SkRefCntBase()::'lambda'()::operator()() const in utils.cpp.o
      ...
  "SkSurfaces::WrapBackendTexture(GrRecordingContext*, GrBackendTexture const&, GrSurfaceOrigin, int, SkColorType, sk_sp<SkColorSpace>, SkSurfaceProps const*, void (*)(void*), void*)", referenced from:
      ShaftSkia.SkiaMetalRenderer.createMetalCanvas(texture: __C.MTLTexture, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+Metal.swift.o
  "SkSurfaces::WrapBackendRenderTarget(GrRecordingContext*, GrBackendRenderTarget const&, GrSurfaceOrigin, SkColorType, sk_sp<SkColorSpace>, SkSurfaceProps const*, void (*)(void*), void*)", referenced from:
      ShaftSkia.SkiaGLRenderer.createGLCanvas(fbo: Swift.UInt, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+GL.swift.o
  "SkTextBlob::~SkTextBlob()", referenced from:
      SkNVRefCnt<SkTextBlob>::unref() const in SkiaFontCollection.swift.o
  "SkTextBlob::operator delete(void*)", referenced from:
      SkNVRefCnt<SkTextBlob>::unref() const in SkiaFontCollection.swift.o
  "SkColorSpace::MakeSRGB()", referenced from:
      color_space_new_srgb() in utils.cpp.o
  "SkMaskFilter::MakeBlur(SkBlurStyle, float, bool)", referenced from:
      sk_paint_set_maskfilter_blur(SkPaint*, SkBlurStyle, float) in utils.cpp.o
  "SkAndroidCodec::MakeFromData(sk_sp<SkData>, SkPngChunkReader*)", referenced from:
      sk_animated_image_create(void const*, unsigned long) in utils.cpp.o
  "GrDirectContext::flush(GrFlushInfo const&)", referenced from:
      GrDirectContext::flushAndSubmit(GrSyncCpu) in utils.cpp.o
  "GrDirectContext::submit(GrSyncCpu)", referenced from:
      GrDirectContext::flushAndSubmit(GrSyncCpu) in utils.cpp.o
  "SkAnimatedImage::decodeNextFrame()", referenced from:
      sk_animated_image_decode_next_frame(sk_sp<SkAnimatedImage>&) in utils.cpp.o
  "SkAnimatedImage::getCurrentFrame()", referenced from:
      sk_animated_image_get_current_frame(sk_sp<SkAnimatedImage>&) in utils.cpp.o
  "SkAnimatedImage::Make(std::__1::unique_ptr<SkAndroidCodec, std::__1::default_delete<SkAndroidCodec>>)", referenced from:
      sk_animated_image_create(void const*, unsigned long) in utils.cpp.o
  "GrBackendTexture::~GrBackendTexture()", referenced from:
      ShaftSkia.SkiaMetalRenderer.createMetalCanvas(texture: __C.MTLTexture, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+Metal.swift.o
      ShaftSkia.SkiaMetalRenderer.createMetalImage(texture: __C.MTLTexture) -> Shaft.NativeImage in SkiaRenderer+Metal.swift.o
  "GrDirectContexts::MakeGL(sk_sp<GrGLInterface const>)", referenced from:
      gr_direct_context_make_gl(sk_sp<GrGLInterface const>&) in utils.cpp.o
  "GrDirectContexts::MakeMetal(GrMtlBackendContext const&)", referenced from:
      gr_mtl_direct_context_make(GrMtlBackendContext&) in utils.cpp.o
  "GrBackendTextures::MakeMtl(int, int, skgpu::Mipmapped, GrMtlTextureInfo const&, std::__1::basic_string_view<char, std::__1::char_traits<char>>)", referenced from:
      ShaftSkia.SkiaMetalRenderer.createMetalCanvas(texture: __C.MTLTexture, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+Metal.swift.o
      ShaftSkia.SkiaMetalRenderer.createMetalImage(texture: __C.MTLTexture) -> Shaft.NativeImage in SkiaRenderer+Metal.swift.o
  "SkTextBlobBuilder::allocRunPos(SkFont const&, int, SkRect const*)", referenced from:
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
  "SkTextBlobBuilder::make()", referenced from:
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
  "SkTextBlobBuilder::SkTextBlobBuilder()", referenced from:
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
  "SkTextBlobBuilder::~SkTextBlobBuilder()", referenced from:
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
  "GrBackendRenderTarget::~GrBackendRenderTarget()", referenced from:
      ShaftSkia.SkiaGLRenderer.createGLCanvas(fbo: Swift.UInt, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+GL.swift.o
  "GrBackendRenderTargets::MakeGL(int, int, int, int, GrGLFramebufferInfo const&)", referenced from:
      ShaftSkia.SkiaGLRenderer.createGLCanvas(fbo: Swift.UInt, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+GL.swift.o
  "skia::textlayout::StrutStyle::StrutStyle()", referenced from:
      (extension in ShaftSkia):Shaft.ParagraphStyle.copyToSkia(inout __C.skia.textlayout.ParagraphStyle) -> () in ToSkia.swift.o
  "skia::textlayout::FontCollection::findTypefaces(std::__1::vector<SkString, std::__1::allocator<SkString>> const&, SkFontStyle)", referenced from:
      sk_fontcollection_find_typefaces(sk_sp<skia::textlayout::FontCollection> const&, std::__1::vector<SkString, std::__1::allocator<SkString>> const&, SkFontStyle) in utils.cpp.o
  "skia::textlayout::FontCollection::defaultFallback(int, SkFontStyle, SkString const&)", referenced from:
      sk_fontcollection_default_fallback(sk_sp<skia::textlayout::FontCollection> const&, int, SkFontStyle, SkString const&) in utils.cpp.o
  "skia::textlayout::FontCollection::setDefaultFontManager(sk_sp<SkFontMgr>)", referenced from:
      sk_fontcollection_new() in utils.cpp.o
  "skia::textlayout::FontCollection::setDynamicFontManager(sk_sp<SkFontMgr>)", referenced from:
      sk_fontcollection_new() in utils.cpp.o
  "skia::textlayout::FontCollection::FontCollection()", referenced from:
      sk_sp<skia::textlayout::FontCollection> sk_make_sp<skia::textlayout::FontCollection>() in utils.cpp.o
  "skia::textlayout::ParagraphStyle::ParagraphStyle()", referenced from:
      ShaftSkia.SkiaParagraphBuilder.init(_: Shaft.ParagraphStyle, fontCollection: ShaftSkia.SkiaFontCollection) -> ShaftSkia.SkiaParagraphBuilder in SkiaParagraph.swift.o
  "skia::textlayout::ParagraphBuilder::make(skia::textlayout::ParagraphStyle const&, sk_sp<skia::textlayout::FontCollection>)", referenced from:
      paragraph_builder_new(skia::textlayout::ParagraphStyle&, sk_sp<skia::textlayout::FontCollection> const&) in utils.cpp.o
  "skia::textlayout::TypefaceFontProvider::registerTypeface(sk_sp<SkTypeface>)", referenced from:
      sk_fontcollection_register_typeface(sk_sp<skia::textlayout::FontCollection>&, sk_sp<SkTypeface>&) in utils.cpp.o
  "skia::textlayout::TypefaceFontProvider::registerTypeface(sk_sp<SkTypeface>, SkString const&)", referenced from:
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
  "skia::textlayout::TextStyle::setFontArguments(std::__1::optional<SkFontArguments> const&)", referenced from:
      sk_textstyle_set_font_arguments(skia::textlayout::TextStyle*, SkFontArguments) in utils.cpp.o
  "skia::textlayout::TextStyle::kDefaultFontFamilies", referenced from:
      skia::textlayout::TextStyle::TextStyle() in SkiaParagraph.swift.o
  "SkData::MakeWithCopy(void const*, unsigned long)", referenced from:
      sk_typeface_create_from_data(sk_sp<skia::textlayout::FontCollection> const&, char const*, unsigned long) in utils.cpp.o
      sk_animated_image_create(void const*, unsigned long) in utils.cpp.o
  "SkData::~SkData()", referenced from:
      SkNVRefCnt<SkData>::unref() const in utils.cpp.o
  "SkData::operator delete(void*)", referenced from:
      SkNVRefCnt<SkData>::unref() const in utils.cpp.o
  "SkFont::SkFont(sk_sp<SkTypeface>, float)", referenced from:
      sk_font_new(sk_sp<SkTypeface>&, float) in utils.cpp.o
  "SkPath::reset()", referenced from:
      sk_path_reset(SkPath*) in utils.cpp.o
  "SkPath::lineTo(float, float)", referenced from:
      sk_path_line_to(SkPath*, float, float) in utils.cpp.o
  "SkPath::moveTo(float, float)", referenced from:
      sk_path_move_to(SkPath*, float, float) in utils.cpp.o
  "SkPath::SkPath(SkPath const&)", referenced from:
      key path getter for ShaftSkia.SkiaPath.skPath : __C.SkPath : ShaftSkia.SkiaPath in SkiaPath.swift.o
      key path setter for ShaftSkia.SkiaPath.skPath : __C.SkPath : ShaftSkia.SkiaPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.getter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      initializeWithCopy value witness for __C.SkPath in SkiaPath.swift.o
      assignWithCopy value witness for __C.SkPath in SkiaPath.swift.o
      ...
  "SkPath::SkPath()", referenced from:
      variable initialization expression of ShaftSkia.SkiaPath.skPath : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.init() -> ShaftSkia.SkiaPath in SkiaPath.swift.o
  "SkPath::~SkPath()", referenced from:
      ShaftSkia.SkiaCanvas.drawPath(Shaft.Path, Shaft.Paint) -> () in SkiaCanvas.swift.o
      key path getter for ShaftSkia.SkiaPath.skPath : __C.SkPath : ShaftSkia.SkiaPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.deinit in SkiaPath.swift.o
      destroy value witness for __C.SkPath in SkiaPath.swift.o
      ...
  "SkPaint::setBlendMode(SkBlendMode)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setStrokeCap(SkPaint::Cap)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setMaskFilter(sk_sp<SkMaskFilter>)", referenced from:
      sk_paint_set_maskfilter_blur(SkPaint*, SkBlurStyle, float) in utils.cpp.o
      sk_paint_clear_maskfilter(SkPaint*) in utils.cpp.o
  "SkPaint::setStrokeJoin(SkPaint::Join)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setStrokeMiter(float)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setStrokeWidth(float)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setColor(unsigned int)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setStyle(SkPaint::Style)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::SkPaint(SkPaint&&)", referenced from:
      std::__1::__variant_detail::__alt<0ul, SkPaint>::__alt[abi:ne190102]<SkPaint>(std::__1::in_place_t, SkPaint&&) in ToSkia.swift.o
  "SkPaint::SkPaint(SkPaint const&)", referenced from:
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).getter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawLine(Shaft.TOffset<Swift.Float>, Shaft.TOffset<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawRect(Shaft.TRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawTextBlob(Shaft.TextBlob, Shaft.TOffset<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawRRect(Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ...
  "SkPaint::SkPaint()", referenced from:
      ShaftSkia.SkiaCanvas.init(__C.sk_sp<SkSurface>, __C.sk_sp<GrDirectContext>, Shaft.TSize<Swift.Int>) -> ShaftSkia.SkiaCanvas in SkiaCanvas.swift.o
      variable initialization expression of ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA) : __C.SkPaint in SkiaCanvas.swift.o
      std::__1::__variant_detail::__alt<0ul, SkPaint>::__alt[abi:ne190102]<>(std::__1::in_place_t) in SkiaParagraph.swift.o
      (extension in ShaftSkia):Shaft.SpanStyle.copyToSkia(inout __C.skia.textlayout.TextStyle) -> () in ToSkia.swift.o
      (extension in ShaftSkia):Shaft.SpanStyle.copyToSkia(inout __C.skia.textlayout.TextStyle) -> () in ToSkia.swift.o
  "SkPaint::~SkPaint()", referenced from:
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawLine(Shaft.TOffset<Swift.Float>, Shaft.TOffset<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawRect(Shaft.TRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawTextBlob(Shaft.TextBlob, Shaft.TOffset<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawRRect(Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ...
  "SkPaint::operator=(SkPaint&&)", referenced from:
      void std::__1::__variant_detail::__assignment<std::__1::__variant_detail::__traits<SkPaint, int>>::__assign_alt[abi:ne190102]<0ul, SkPaint, SkPaint>(std::__1::__variant_detail::__alt<0ul, SkPaint>&, SkPaint&&) in ToSkia.swift.o
  "SkPaint::operator=(SkPaint const&)", referenced from:
      void std::__1::__variant_detail::__assignment<std::__1::__variant_detail::__traits<SkPaint, int>>::__assign_alt[abi:ne190102]<0ul, SkPaint, SkPaint const&>(std::__1::__variant_detail::__alt<0ul, SkPaint>&, SkPaint const&) in ToSkia.swift.o
  "SkRRect::setRectRadii(SkRect const&, SkPoint const*)", referenced from:
      closure #1 (Swift.UnsafeBufferPointer<__C.SkPoint>) -> () in ShaftSkia.SkiaCanvas.drawRRect(Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      closure #1 (Swift.UnsafeBufferPointer<__C.SkPoint>) -> () in ShaftSkia.SkiaCanvas.drawDRRect(Shaft.TRRect<Swift.Float>, Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      closure #2 (Swift.UnsafeBufferPointer<__C.SkPoint>) -> () in ShaftSkia.SkiaCanvas.drawDRRect(Shaft.TRRect<Swift.Float>, Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      closure #1 (Swift.UnsafeBufferPointer<__C.SkPoint>) -> () in ShaftSkia.SkiaCanvas.clipRRect(Shaft.TRRect<Swift.Float>, Swift.Bool) -> () in SkiaCanvas.swift.o
  "SkCanvas::drawCircle(float, float, float, SkPaint const&)", referenced from:
      sk_canvas_draw_circle(SkCanvas*, float, float, float, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawDRRect(SkRRect const&, SkRRect const&, SkPaint const&)", referenced from:
      sk_canvas_draw_drrect(SkCanvas*, SkRRect const&, SkRRect const&, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawTextBlob(SkTextBlob const*, float, float, SkPaint const&)", referenced from:
      sk_canvas_draw_text_blob(SkCanvas*, sk_sp<SkTextBlob>&, float, float, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawImageNine(SkImage const*, SkIRect const&, SkRect const&, SkFilterMode, SkPaint const*)", referenced from:
      sk_canvas_draw_image_nine(SkCanvas*, sk_sp<SkImage>&, SkIRect const&, SkRect const&, SkPaint const*) in utils.cpp.o
  "SkCanvas::drawImageRect(SkImage const*, SkRect const&, SkRect const&, SkSamplingOptions const&, SkPaint const*, SkCanvas::SrcRectConstraint)", referenced from:
      SkCanvas::drawImageRect(sk_sp<SkImage> const&, SkRect const&, SkRect const&, SkSamplingOptions const&, SkPaint const*, SkCanvas::SrcRectConstraint) in utils.cpp.o
  "SkCanvas::save()", referenced from:
      sk_canvas_save(SkCanvas*) in utils.cpp.o
  "SkCanvas::scale(float, float)", referenced from:
      sk_canvas_scale(SkCanvas*, float, float) in utils.cpp.o
  "SkCanvas::concat(SkM44 const&)", referenced from:
      sk_canvas_concat(SkCanvas*, SkM44 const&) in utils.cpp.o
  "SkCanvas::restore()", referenced from:
      sk_canvas_restore(SkCanvas*) in utils.cpp.o
  "SkCanvas::clipRect(SkRect const&, SkClipOp, bool)", referenced from:
      sk_canvas_clip_rect(SkCanvas*, SkRect const&, SkClipOp, bool) in utils.cpp.o
  "SkCanvas::drawLine(float, float, float, float, SkPaint const&)", referenced from:
      sk_canvas_draw_line(SkCanvas*, float, float, float, float, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawPath(SkPath const&, SkPaint const&)", referenced from:
      sk_canvas_draw_path(SkCanvas*, SkPath const&, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawRect(SkRect const&, SkPaint const&)", referenced from:
      sk_canvas_draw_rect(SkCanvas*, SkRect const&, SkPaint const&) in utils.cpp.o
  "SkCanvas::clipRRect(SkRRect const&, SkClipOp, bool)", referenced from:
      sk_canvas_clip_rrect(SkCanvas*, SkRRect const&, SkClipOp, bool) in utils.cpp.o
  "SkCanvas::drawColor(SkRGBA4f<(SkAlphaType)3> const&, SkBlendMode)", referenced from:
      SkCanvas::clear(SkRGBA4f<(SkAlphaType)3> const&) in utils.cpp.o
  "SkCanvas::drawImage(SkImage const*, float, float, SkSamplingOptions const&, SkPaint const*)", referenced from:
      sk_canvas_draw_image(SkCanvas*, sk_sp<SkImage>&, float, float, SkPaint const*) in utils.cpp.o
  "SkCanvas::drawRRect(SkRRect const&, SkPaint const&)", referenced from:
      sk_canvas_draw_rrect(SkCanvas*, SkRRect const&, SkPaint const&) in utils.cpp.o
  "SkCanvas::saveLayer(SkRect const*, SkPaint const*)", referenced from:
      sk_canvas_save_layer(SkCanvas*, SkRect const*, SkPaint const*) in utils.cpp.o
  "SkCanvas::translate(float, float)", referenced from:
      sk_canvas_translate(SkCanvas*, float, float) in utils.cpp.o
  "SkImages::AdoptTextureFrom(GrRecordingContext*, GrBackendTexture const&, GrSurfaceOrigin, SkColorType)", referenced from:
      ShaftSkia.SkiaMetalRenderer.createMetalImage(texture: __C.MTLTexture) -> Shaft.NativeImage in SkiaRenderer+Metal.swift.o
  "SkRGBA4f<(SkAlphaType)3>::FromColor(unsigned int)", referenced from:
      SkCanvas::clear(unsigned int) in utils.cpp.o
  "SkString::SkString(char const*)", referenced from:
      ShaftSkia.SkiaFontCollection.findTypeface(_: [Swift.String], style: Shaft.FontStyle, weight: Shaft.FontWeight) -> [Shaft.Typeface] in SkiaFontCollection.swift.o
      (extension in ShaftSkia):Shaft.ParagraphStyle.copyToSkia(inout __C.skia.textlayout.ParagraphStyle) -> () in ToSkia.swift.o
      (extension in ShaftSkia):Shaft.StrutStyle.copyToSkia(inout __C.skia.textlayout.StrutStyle) -> () in ToSkia.swift.o
      (extension in ShaftSkia):Shaft.SpanStyle.copyToSkia(inout __C.skia.textlayout.TextStyle) -> () in ToSkia.swift.o
  "SkString::SkString(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)", referenced from:
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
  "SkString::SkString(SkString const&)", referenced from:
      ShaftSkia.SkiaTypeface.familyName.getter : Swift.String in SkiaFontCollection.swift.o
      void std::__1::allocator<SkString>::construct[abi:ne190102]<SkString, SkString&>(SkString*, SkString&) in SkiaFontCollection.swift.o
      void std::__1::allocator<SkString>::construct[abi:ne190102]<SkString, SkString const&>(SkString*, SkString const&) in SkiaFontCollection.swift.o
      skia::textlayout::ParagraphStyle::ParagraphStyle(skia::textlayout::ParagraphStyle const&) in SkiaParagraph.swift.o
      skia::textlayout::TextStyle::TextStyle(skia::textlayout::TextStyle const&) in SkiaParagraph.swift.o
      skia::textlayout::FontFeature::FontFeature(skia::textlayout::FontFeature const&) in SkiaParagraph.swift.o
  "SkString::SkString()", referenced from:
      ShaftSkia.SkiaFontCollection.findTypefaceFor(Swift.UInt32) -> Shaft.Typeface? in SkiaFontCollection.swift.o
      ShaftSkia.SkiaTypeface.familyName.getter : Swift.String in SkiaFontCollection.swift.o
      skia::textlayout::TextStyle::TextStyle() in SkiaParagraph.swift.o
  "SkString::~SkString()", referenced from:
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
      std::__1::pair<SkString, sk_sp<skia::textlayout::TypefaceFontStyleSet>>::~pair() in utils.cpp.o
      ShaftSkia.SkiaFontCollection.findTypeface(_: [Swift.String], style: Shaft.FontStyle, weight: Shaft.FontWeight) -> [Shaft.Typeface] in SkiaFontCollection.swift.o
      ShaftSkia.SkiaFontCollection.findTypefaceFor(Swift.UInt32) -> Shaft.Typeface? in SkiaFontCollection.swift.o
      ShaftSkia.SkiaTypeface.familyName.getter : Swift.String in SkiaFontCollection.swift.o
      ShaftSkia.SkiaTypeface.familyName.getter : Swift.String in SkiaFontCollection.swift.o
      ...
  "SkString::operator=(SkString const&)", referenced from:
      skia::textlayout::ParagraphStyle::setEllipsis(SkString const&) in ToSkia.swift.o
      skia::textlayout::TextStyle::operator=(skia::textlayout::TextStyle const&) in ToSkia.swift.o
      std::__1::pair<SkString*, SkString*> std::__1::__copy_impl<std::__1::_ClassicAlgPolicy>::operator()[abi:ne190102]<SkString*, SkString*, SkString*>(SkString*, SkString*, SkString*) const in ToSkia.swift.o
      skia::textlayout::FontFeature::operator=(skia::textlayout::FontFeature const&) in ToSkia.swift.o
  "SkSurface::getCanvas()", referenced from:
      sk_surface_get_canvas(sk_sp<SkSurface> const&) in utils.cpp.o
  "SkTypeface::countGlyphs() const", referenced from:
      sk_typeface_count_glyphs(sk_sp<SkTypeface>&) in utils.cpp.o
  "SkTypeface::getFamilyName(SkString*) const", referenced from:
      sk_typeface_get_family_name(sk_sp<SkTypeface>&, SkString*) in utils.cpp.o
  "SkTypeface::unicharToGlyph(int) const", referenced from:
      sk_typeface_get_glyph(sk_sp<SkTypeface>&, int) in utils.cpp.o
  "SkTypeface::unicharsToGlyphs(int const*, int, unsigned short*) const", referenced from:
      sk_typeface_get_glyphs(sk_sp<SkTypeface>&, int const*, unsigned long) in utils.cpp.o
  "SkCanvas::getSaveCount() const", referenced from:
      sk_canvas_get_save_count(SkCanvas*) in utils.cpp.o
  "SkFontMgr::makeFromData(sk_sp<SkData>, int) const", referenced from:
      sk_typeface_create_from_data(sk_sp<skia::textlayout::FontCollection> const&, char const*, unsigned long) in utils.cpp.o
  "vtable for skia::textlayout::TypefaceFontProvider", referenced from:
      skia::textlayout::TypefaceFontProvider::TypefaceFontProvider() in utils.cpp.o
   NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
[1284/1286] Linking Playground
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
[1/1] Compiling plugin BuilderPlugin
[2/2] Compiling plugin CSkiaSetupPlugin
[3/3] Compiling plugin BridgeJSCommandPlugin
[4/4] Compiling plugin BridgeJS
[5/5] Compiling plugin PackageToJS
Building for debugging...
[5/16] Write swift-version-2F0A5646E1D333AE.txt
[7/156] Compiling SwiftSyntax600 Empty.swift
[8/156] Emitting module SwiftSyntax600
[9/156] Emitting module SwiftSyntax509
[10/156] Compiling SwiftSyntax509 Empty.swift
[11/156] Emitting module SwiftSyntax510
[12/156] Compiling SwiftSyntax510 Empty.swift
[13/156] Compiling SystemPackage FilePathWindows.swift
[14/156] Compiling SystemPackage FilePermissions.swift
[15/156] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[16/157] Compiling SystemPackage FilePathSyntax.swift
[17/157] Compiling SystemPackage FilePathTemp.swift
[18/157] Compiling SystemPackage FilePathTempPosix.swift
[19/157] Compiling SystemPackage FilePathTempWindows.swift
[20/157] Compiling SystemPackage Errno.swift
[21/157] Compiling SystemPackage ErrnoWindows.swift
[22/157] Emitting module Fetch
[23/157] Compiling Fetch Fetch.swift
[24/162] Compiling SystemPackage MachPort.swift
[25/162] Compiling SystemPackage PlatformString.swift
[26/183] Compiling Yams Decoder.swift
[27/183] Compiling Yams Emitter.swift
[28/183] Compiling Yams Encoder.swift
[29/183] Compiling Yams Mark.swift
[30/183] Compiling Yams Node.Sequence.swift
[31/183] Compiling SystemPackage Constants.swift
[32/185] Compiling Yams Anchor.swift
[33/185] Compiling Yams Constructor.swift
[35/185] Compiling Yams String+Yams.swift
[36/185] Compiling Yams Node.Scalar.swift
[39/185] Emitting module Rainbow
[42/186] Emitting module Splash
[43/186] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[44/186] Compiling Rainbow ControlCode.swift
[45/186] Compiling Rainbow StringGenerator.swift
[47/186] Compiling Yams Node.swift
[48/186] Compiling Yams Parser.swift
[49/186] Compiling Yams Tag.swift
[50/186] Compiling Rainbow ModesExtractor.swift
[51/186] Compiling Yams Representer.swift
[52/186] Compiling Yams Resolver.swift
[57/186] Compiling Splash TokenType.swift
[58/186] Compiling Splash Tokenizer.swift
[59/189] Compiling Rainbow String+Rainbow.swift
[60/189] Compiling Rainbow OutputTarget.swift
[61/189] Compiling Rainbow Rainbow.swift
[68/192] Emitting module InternalCollectionsUtilities
[72/192] Emitting module SwiftMath
[73/192] Compiling CSkiaResource CskiaResource.swift
[74/192] Emitting module CSkiaResource
[75/192] Compiling CSkiaResource resource_bundle_accessor.swift
[76/192] Emitting module CSProgress
[77/192] Compiling Rainbow Style.swift
[78/192] Compiling Rainbow Color.swift
[79/192] Compiling Rainbow ColorApproximation.swift
[86/194] Compiling Yams YamlAnchorProviding.swift
[87/194] Compiling Yams Node.Alias.swift
[88/194] Compiling Yams Node.Mapping.swift
[89/194] Compiling Yams RedundancyAliasingStrategy.swift
[98/194] Compiling SwiftMath random.swift
[99/194] Compiling SystemPackage Util+StringArray.swift
[112/194] Compiling SystemPackage RawBuffer.swift
[113/194] Compiling SystemPackage Syscalls.swift
[114/194] Compiling SystemPackage WindowsSyscallAdapters.swift
[121/259] Emitting module SystemPackage
[122/259] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[123/259] Compiling SwiftSyntax SyntaxCollections.swift
[124/259] Compiling SwiftSyntax SyntaxEnum.swift
[125/259] Compiling SwiftSyntax SyntaxKind.swift
[126/259] Compiling SwiftSyntax SyntaxRewriter.swift
[127/259] Compiling SwiftSyntax SyntaxTraits.swift
[128/259] Compiling SwiftSyntax SyntaxText.swift
[129/259] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[130/259] Compiling SwiftSyntax TokenDiagnostic.swift
[131/259] Compiling SwiftSyntax TokenSequence.swift
[132/259] Emitting module SystemPackage
[139/259] Compiling SwiftSyntax SyntaxProtocol.swift
[141/259] Compiling SwiftSyntax Trivia.swift
[142/259] Compiling SwiftSyntax Tokens.swift
[143/261] Compiling SwiftSyntax SyntaxVisitor.swift
[144/261] Compiling SwiftSyntax TokenKind.swift
[145/261] Compiling SwiftSyntax Utils.swift
[146/312] Compiling SortedCollections SortedSet+SetAlgebra.swift
[147/312] Compiling SortedCollections _BTree+SubSequence.swift
[148/312] Compiling SortedCollections _BTree+UnsafeCursor.swift
[149/312] Compiling SortedCollections SortedDictionary+Values.swift
[150/312] Compiling SortedCollections SortedDictionary.Index.swift
[151/312] Compiling SortedCollections SortedDictionary.swift
[152/312] Compiling SortedCollections _Node.Storage.swift
[153/312] Compiling SortedCollections _Node.UnsafeHandle+CustomDebugStringConvertible.swift
[154/312] Compiling SortedCollections _Node.UnsafeHandle+Deletion.swift
[155/439] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[156/439] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[157/446] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[158/446] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[159/446] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[160/446] Compiling OrderedCollections OrderedSet+Codable.swift
[161/446] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[162/446] Compiling OrderedCollections OrderedSet+Descriptions.swift
[169/446] Compiling HeapModule Heap+Invariants.swift
[170/463] Compiling HeapModule Heap.swift
[171/463] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[172/463] Compiling HeapModule _HeapNode.swift
[173/463] Compiling CSProgress CSProgress.swift
[174/463] Compiling HeapModule Heap+UnsafeHandle.swift
[175/463] Compiling HeapModule Heap+Descriptions.swift
[176/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[177/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[178/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[179/463] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[180/463] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[181/463] Compiling OrderedCollections OrderedSet+Sendable.swift
[182/469] Compiling OrderedCollections OrderedDictionary+Values.swift
[183/469] Compiling OrderedCollections OrderedDictionary.swift
[184/469] Compiling DequeModule Deque+Extras.swift
[185/469] Compiling DequeModule Deque+Hashable.swift
[186/469] Emitting module HeapModule
[187/547] Compiling HashTreeCollections _HashNode.swift
[188/547] Compiling HashTreeCollections _HashNodeHeader.swift
[189/547] Compiling HashTreeCollections _UnmanagedHashNode.swift
[190/547] Compiling HashTreeCollections _UnsafePath.swift
[191/547] Compiling HashTreeCollections TreeDictionary+Codable.swift
[192/547] Compiling HashTreeCollections TreeDictionary+Collection.swift
[193/547] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[194/547] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[195/547] Compiling HashTreeCollections _HashNode+Debugging.swift
[196/547] Compiling HashTreeCollections _HashNode+Initializers.swift
[197/547] Compiling HashTreeCollections _HashNode+Invariants.swift
[198/547] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[199/547] Compiling HashTreeCollections TreeDictionary+Filter.swift
[200/547] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[201/547] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[202/547] Compiling HashTreeCollections TreeDictionary+Keys.swift
[203/548] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[204/548] Compiling HashTreeCollections TreeDictionary+Merge.swift
[205/548] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[206/548] Compiling HashTreeCollections _RawHashNode.swift
[207/621] Compiling BitCollections BitSet.Index.swift
[208/621] Compiling BitCollections BitSet._UnsafeHandle.swift
[209/621] Compiling BitCollections BitSet+CustomStringConvertible.swift
[210/621] Compiling BitCollections BitSet+Equatable.swift
[211/621] Compiling BitCollections BitSet+CustomDebugStringConvertible.swift
[212/621] Compiling BitCollections BitSet+CustomReflectable.swift
[213/621] Emitting module Yams
[214/621] Compiling BitCollections BitSet+ExpressibleByArrayLiteral.swift
[215/621] Compiling BitCollections BitSet+Extras.swift
[216/621] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[217/621] Compiling BitCollections BitSet+SetAlgebra union.swift
[218/621] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[219/621] Compiling BitCollections BitSet.Counted.swift
[228/621] Compiling BitCollections BitSet+Hashable.swift
[229/621] Compiling BitCollections BitSet+Initializers.swift
[230/621] Compiling BitCollections BitSet+Invariants.swift
[231/621] Compiling BitCollections BitSet+Random.swift
[232/621] Compiling BitCollections BitSet+SetAlgebra basics.swift
[233/621] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[233/626] Write Objects.LinkFileList
[234/626] Archiving libSwiftMath.a
[244/634] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[245/634] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[246/634] Compiling BitCollections BitArray+Shifts.swift
[247/634] Compiling BitCollections BitArray+Testing.swift
[248/634] Compiling BitCollections BitArray._UnsafeHandle.swift
[249/634] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[250/634] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[251/634] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[252/634] Compiling BitCollections BitArray+Descriptions.swift
[253/634] Compiling BitCollections BitArray+Equatable.swift
[254/634] Compiling BitCollections BitArray.swift
[255/634] Compiling BitCollections BitSet+BidirectionalCollection.swift
[256/634] Compiling BitCollections BitSet+Codable.swift
[257/634] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[258/634] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[259/634] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[260/634] Compiling BitCollections BitArray+CustomReflectable.swift
[261/634] Compiling BitCollections BitArray+Hashable.swift
[262/634] Compiling BitCollections BitArray+Initializers.swift
[263/634] Compiling BitCollections BitArray+Invariants.swift
[264/634] Compiling BitCollections BitArray+LosslessStringConvertible.swift
[265/634] Compiling BitCollections BitArray+BitwiseOperations.swift
[266/634] Compiling BitCollections BitArray+ChunkedBitsIterators.swift
[267/634] Compiling BitCollections BitArray+Codable.swift
[268/634] Compiling BitCollections BitArray+Collection.swift
[269/634] Compiling BitCollections BitArray+Copy.swift
[270/634] Compiling BitCollections BitArray+RandomBits.swift
[271/634] Compiling BitCollections BitArray+RangeReplaceableCollection.swift
[272/634] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[273/634] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[274/634] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[275/634] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[276/634] Emitting module CSProgress
[277/634] Compiling CSProgress CSProgress.swift
[284/658] Compiling DequeModule _DequeSlot.swift
[285/658] Compiling ZIPFoundation Data+Compression.swift
[286/658] Compiling ZIPFoundation Data+Serialization.swift
[287/658] Compiling DequeModule _DequeBufferHeader.swift
[288/658] Compiling ZIPFoundation Entry.swift
[289/658] Compiling ZIPFoundation FileHandle+Extensions.swift
[290/659] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[291/659] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[292/659] Compiling HashTreeCollections _HashNode+Storage.swift
[293/659] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[294/659] Compiling HashTreeCollections _HashNode+Structural filter.swift
[295/659] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[296/659] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[297/659] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[298/659] Compiling BitCollections BitSet.swift
[299/659] Compiling BitCollections Range+Utilities.swift
[300/659] Compiling BitCollections Slice+Utilities.swift
[301/659] Compiling BitCollections UInt+Tricks.swift
[302/659] Compiling BitCollections _Word.swift
[303/659] Compiling HashTreeCollections _HashNode+Lookups.swift
[304/659] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[305/659] Compiling ZIPFoundation Entry+ZIP64.swift
[306/659] Compiling ZIPFoundation FileManager+ZIP.swift
[307/659] Compiling ZIPFoundation URL+ZIP.swift
[313/659] Compiling ZIPFoundation Archive+BackingConfiguration.swift
[314/659] Compiling ZIPFoundation Archive+Helpers.swift
[319/659] Compiling ZIPFoundation Entry+Serialization.swift
[320/666] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[321/666] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[322/666] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[323/666] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[324/666] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[325/666] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[326/666] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[327/666] Compiling HashTreeCollections TreeSet.swift
[334/666] Compiling ZIPFoundation Archive+Reading.swift
[335/666] Compiling ZIPFoundation Archive+Writing.swift
[353/666] Compiling ZIPFoundation ArchiveHandle.swift
[354/666] Compiling ZIPFoundation ConcurrencyShims.swift
[359/666] Compiling ZIPFoundation Archive+MemoryFile.swift
[360/666] Compiling ZIPFoundation Archive+Progress.swift
[361/666] Compiling ZIPFoundation Archive+ZIP64.swift
[362/666] Compiling ZIPFoundation Archive.swift
[363/666] Compiling SortedCollections SortedSet+SubSequence.swift
[364/666] Compiling SortedCollections SortedSet+Subscripts.swift
[365/666] Compiling SortedCollections SortedSet.Index.swift
[366/666] Compiling SortedCollections SortedSet.swift
[381/673] Emitting module BitCollections
[382/673] Emitting module DequeModule
[383/673] Compiling DequeModule _UnsafeWrappedBuffer.swift
[459/674] Emitting module ZIPFoundation
[496/674] Emitting module OrderedCollections
[527/674] Compiling SwiftSyntax SyntaxNodesD.swift
[528/674] Compiling SwiftSyntax SyntaxNodesEF.swift
[529/674] Compiling SwiftSyntax SyntaxNodesGHI.swift
[530/674] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[531/674] Compiling SwiftSyntax SyntaxNodesOP.swift
[532/674] Compiling SwiftSyntax SyntaxNodesQRS.swift
[533/674] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[534/674] Compiling _RopeModule Rope+Split.swift
[535/674] Compiling _RopeModule Optional Utilities.swift
[536/674] Compiling _RopeModule String Utilities.swift
[537/674] Compiling _RopeModule String.Index+ABI.swift
[538/674] Compiling _RopeModule _CharacterRecognizer.swift
[539/674] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[540/674] Compiling ZIPFoundation Windows+POSIX.swift
[541/674] Emitting module SortedCollections
[558/675] Emitting module ZIPFoundation
[568/677] Emitting module _RopeModule
[600/677] Compiling ZIPFoundation Windows+POSIX.swift
[601/677] Compiling CSkiaSetup main.swift
/Users/admin/builder/spi-builder-workspace/Sources/CSkiaSetup/main.swift:49:11: warning: no calls to throwing functions occur within 'try' expression
47 |
48 | // Extract out/Release-<os>-<arch> to .shaft/skia
49 | let zip = try? Archive(data: data, accessMode: .read)
   |           `- warning: no calls to throwing functions occur within 'try' expression
50 | guard let zip else {
51 |     print("Failed to extract Skia pack")
[602/677] Emitting module CSkiaSetup
/Users/admin/builder/spi-builder-workspace/Sources/CSkiaSetup/main.swift:49:11: warning: no calls to throwing functions occur within 'try' expression
47 |
48 | // Extract out/Release-<os>-<arch> to .shaft/skia
49 | let zip = try? Archive(data: data, accessMode: .read)
   |           `- warning: no calls to throwing functions occur within 'try' expression
50 | guard let zip else {
51 |     print("Failed to extract Skia pack")
[602/677] Write Objects.LinkFileList
[604/679] Emitting module CSkiaSetup
/Users/admin/builder/spi-builder-workspace/Sources/CSkiaSetup/main.swift:49:11: warning: no calls to throwing functions occur within 'try' expression
47 |
48 | // Extract out/Release-<os>-<arch> to .shaft/skia
49 | let zip = try? Archive(data: data, accessMode: .read)
   |           `- warning: no calls to throwing functions occur within 'try' expression
50 | guard let zip else {
51 |     print("Failed to extract Skia pack")
[605/679] Compiling CSkiaSetup main.swift
/Users/admin/builder/spi-builder-workspace/Sources/CSkiaSetup/main.swift:49:11: warning: no calls to throwing functions occur within 'try' expression
47 |
48 | // Extract out/Release-<os>-<arch> to .shaft/skia
49 | let zip = try? Archive(data: data, accessMode: .read)
   |           `- warning: no calls to throwing functions occur within 'try' expression
50 | guard let zip else {
51 |     print("Failed to extract Skia pack")
[605/679] Write Objects.LinkFileList
[607/679] Emitting module HashTreeCollections
[607/681] Linking CSkiaSetup
[609/681] Compiling Collections Collections.swift
[610/681] Emitting module Collections
[610/681] Applying CSkiaSetup
[611/681] Linking CSkiaSetup-tool
[612/681] Applying CSkiaSetup-tool
[614/838] Compiling Shaft GestureDetector.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[615/838] Compiling Shaft Image.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[616/838] Compiling Shaft Inherited.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[617/838] Compiling Shaft InheritedModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[618/838] Compiling Shaft InheritedNotifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[619/838] Compiling Shaft Inherited_Old.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[620/838] Compiling Shaft MediaQuery.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[621/838] Compiling Shaft ScrollConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[622/838] Compiling Shaft ScrollContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[623/838] Compiling Shaft ScrollController.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[624/838] Compiling Shaft ScrollDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[625/838] Compiling Shaft ScrollMetrics.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[626/838] Compiling Shaft ScrollPhysics.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[627/838] Compiling Shaft ScrollPosition.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[628/838] Compiling Shaft ScrollPositionWithSingleContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[629/838] Compiling Shaft Scrollable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[630/838] Compiling Shaft ScrollableHelpers.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:393:38: warning: will never be executed
391 |         switch widget.axisDirection.axis {
392 |         case .horizontal:
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Scroll/Scrollable.swift:395:38: warning: will never be executed
393 |             delta = flipAxes ? event.scrollDelta.dy : event.scrollDelta.dx
394 |         case .vertical:
395 |             delta = flipAxes ? event.scrollDelta.dx : event.scrollDelta.dy
    |                     |                `- warning: will never be executed
    |                     `- note: condition always evaluates to false
396 |         }
397 |         if widget.axisDirection.isReversed {
[631/855] Compiling Shaft Decoration.swift
[632/855] Compiling Shaft EdgeInsets.swift
[633/855] Compiling Shaft ImageProvider.swift
[634/855] Compiling Shaft InlineSpan.swift
[635/855] Compiling Shaft PlaceholderSpan.swift
[636/855] Compiling Shaft TextSpan.swift
[637/855] Compiling Shaft TextPainter.swift
[638/855] Compiling Shaft TextScaler.swift
[639/855] Compiling Shaft TextStyle.swift
[640/855] Compiling Shaft PhysicsUtils.swift
[641/855] Compiling Shaft Simulation.swift
[642/855] Compiling Shaft SpringSimulation.swift
[643/855] Compiling Shaft Tolerance.swift
[644/855] Compiling Shaft RendererBinding.swift
[645/855] Compiling Shaft LayoutHelper.swift
[646/855] Compiling Shaft MouseTracker.swift
[647/855] Compiling Shaft MouseTrackerAnnotation.swift
[648/855] Emitting module SwiftSyntax
[649/855] Compiling Shaft RenderStack.swift
[650/855] Compiling Shaft RenderView.swift
[651/855] Compiling Shaft RenderViewport.swift
[652/855] Compiling Shaft ViewportOffset.swift
[653/855] Compiling Shaft SchedulerBinding.swift
[654/855] Compiling Shaft Ticker.swift
[655/855] Compiling Shaft HardwareKeyboard.swift
[656/855] Compiling Shaft MouseCursor.swift
[657/855] Compiling Shaft TextBoundary.swift
[658/855] Compiling Shaft TextInput.swift
[659/855] Compiling Shaft TextLayoutMetrics.swift
[660/855] Compiling Shaft Background.swift
[661/855] Compiling Shaft Button.swift
[662/855] Compiling Shaft ControlSize.swift
[663/855] Compiling Shaft Divider.swift
[664/855] Compiling Shaft FixedListView.swift
[665/855] Compiling Shaft ListTile.swift
[666/855] Emitting module Shaft
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[682/855] Compiling Shaft MatrixUtils.swift
[683/855] Compiling Shaft Number.swift
[684/855] Compiling Shaft Print.swift
[685/855] Compiling Shaft Stopwatch.swift
[686/855] Compiling Shaft String.swift
[687/855] Compiling Shaft Time.swift
[688/855] Compiling Shaft Arena.swift
[689/855] Compiling Shaft ArenaTeam.swift
[690/855] Compiling Shaft GestureBinding.swift
[691/855] Compiling Shaft DragDetails.swift
[692/855] Compiling Shaft GestureConstants.swift
[693/855] Compiling Shaft GestureDebug.swift
[694/855] Compiling Shaft GestureSettings.swift
[695/855] Compiling Shaft HitTest.swift
[696/855] Compiling Shaft LsqSolver.swift
[697/855] Compiling Shaft PointerEventConverter.swift
[698/855] Compiling Shaft PointerEvents.swift
[699/855] Compiling Shaft PointerRouter.swift
[700/855] Compiling Shaft Animatable.swift
[701/855] Compiling Shaft Animation.swift
[702/855] Compiling Shaft AnimationBase.swift
[703/855] Compiling Shaft AnimationController.swift
[704/855] Compiling Shaft Curve.swift
[705/855] Compiling Shaft Tween.swift
[706/855] Compiling Shaft RemoteAppBackend.swift
[707/855] Compiling Shaft UIActor.swift
[708/855] Compiling Shaft Backend.swift
[709/855] Compiling Shaft Canvas.swift
[710/855] Compiling Shaft DisplayList.swift
[711/855] Compiling Shaft DisplayListBuilder.swift
[712/855] Compiling Shaft DlOpReceiver.swift
[713/855] Compiling Shaft Geometry.swift
[714/855] Compiling Shaft Globals.swift
[715/855] Compiling Shaft Keyboard.swift
[716/855] Compiling Shaft KeyboardKey.swift
[717/855] Compiling Shaft Layer.swift
[718/855] Compiling Shaft PointerSignalResolver.swift
[719/855] Compiling Shaft LongPressRecongnizer.swift
[720/855] Compiling Shaft MonoDrag.swift
[721/855] Compiling Shaft Recongnizer.swift
[722/855] Compiling Shaft TapAndDragRecongizer.swift
[723/855] Compiling Shaft TapRecongnizer.swift
[724/855] Compiling Shaft VelocityTracker.swift
[725/855] Compiling Shaft Alignment.swift
[726/855] Compiling Shaft BasicTypes.swift
[727/855] Compiling Shaft BorderRadius.swift
[728/855] Compiling Shaft Borders.swift
[729/855] Compiling Shaft BoxBorder.swift
[730/855] Compiling Shaft BoxDecoration.swift
[731/855] Compiling Shaft BoxFit.swift
[732/855] Compiling Shaft BoxShadow.swift
[733/855] Compiling Shaft ClipContext.swift
[734/855] Compiling Shaft DecoratedImage.swift
[735/855] Compiling Shaft Painting.swift
[736/855] Compiling Shaft Pointer.swift
[737/855] Compiling Shaft Renderer.swift
[738/855] Compiling Shaft TargetPlatform.swift
[739/855] Compiling Shaft TextEditing.swift
[740/855] Compiling Shaft TextTypes.swift
[741/855] Compiling Shaft Window.swift
[742/855] Compiling Shaft Array.swift
[743/855] Compiling Shaft Assertion.swift
[744/855] Compiling Shaft Box.swift
[745/855] Compiling Shaft Callback.swift
[746/855] Compiling Shaft ChangeNotifier.swift
[747/855] Compiling Shaft Collections.swift
[748/855] Compiling Shaft Constants.swift
[749/855] Compiling Shaft CopyWith.swift
[750/855] Compiling Shaft Diagnostics.swift
[751/855] Compiling Shaft Equality.swift
[752/855] Compiling Shaft Math.swift
[754/855] Compiling Shaft RenderBox.swift
[755/855] Compiling Shaft RenderColoredBox.swift
[756/855] Compiling Shaft RenderEditable.swift
[757/855] Compiling Shaft RenderFlex.swift
[758/855] Compiling Shaft RenderImage.swift
[759/855] Compiling Shaft RenderMouseRegion.swift
[774/855] Compiling Shaft NavigationSplitView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[775/855] Compiling Shaft Resizable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[776/855] Compiling Shaft Section.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[777/855] Compiling Shaft TextField.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[778/855] Compiling Shaft Typography.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[779/855] Compiling Shaft Actions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[780/855] Compiling Shaft AppLifecycleListener.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[781/855] Compiling Shaft Basic.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[782/855] Compiling Shaft WidgetsBinding.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[783/855] Compiling Shaft Builder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[784/855] Compiling Shaft Container.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[785/855] Compiling Shaft Debug.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[786/855] Compiling Shaft DefaultTextEditingShortcuts.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[787/855] Compiling Shaft Focus.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[788/855] Compiling Shaft FocusManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[789/855] Compiling Shaft FocusTraversal.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[790/855] Compiling Shaft Framework.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Widgets/Focus/Focus.swift:69:14: warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 67 | /// the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus
 68 | /// a widget, call `Focus.of(context).unfocus()`.
 69 | public class Focus: StatefulWidget {
    |              `- warning: non-final class 'Focus' cannot safely conform to protocol 'StatefulWidget', which requires that 'Self.StateType' inherit from 'State<Self>'; this is an error in the Swift 6 language mode
 70 |     public init(
 71 |         key: (any Key)? = nil,
[791/855] Compiling Shaft SingleChildScrollView.swift
[792/855] Compiling Shaft ScrollView.swift
[793/855] Compiling Shaft Shortcuts.swift
[794/855] Compiling Shaft Sliver.swift
[795/855] Compiling Shaft SliverPinnedHeader.swift
[796/855] Compiling Shaft SliverPrototypeExtentList.swift
[797/855] Compiling Shaft TapRegion.swift
[798/855] Compiling Shaft EditableText.swift
[799/855] Compiling Shaft Text.swift
[800/855] Compiling Shaft TextEditingIntents.swift
[801/855] Compiling Shaft TextSelection.swift
[802/855] Compiling Shaft TickerProvider.swift
[803/855] Compiling Shaft Transitions.swift
[804/855] Compiling Shaft ValueListenableBuilder.swift
[805/855] Compiling Shaft View.swift
[806/855] Compiling Shaft Viewport.swift
[807/855] Compiling Shaft Visibility.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[814/855] Compiling Shaft RenderObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[815/855] Compiling Shaft RenderParagraph.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[816/855] Compiling Shaft RenderPointerListener.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[817/855] Compiling Shaft RenderProxyBox.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[818/855] Compiling Shaft RenderShiftedBox.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[819/855] Compiling Shaft RenderSliver.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[820/855] Compiling Shaft RenderSliverGrid.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[821/855] Compiling Shaft RenderSliverGroup.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[822/855] Compiling Shaft RenderSliverList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[823/855] Compiling Shaft RenderSliverMultiBoxAdaptor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[824/855] Compiling Shaft RenderSliverPadding.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shaft/Rendering/RenderParagraph.swift:393:20: warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
391 |         if needsClipping {
392 |             let bounds = offset & size
393 |             if let overflowShader {
    |                    `- warning: value 'overflowShader' was defined but never used; consider replacing with boolean test
394 |                 // This layer limits what the shader below blends with to be just the
395 |                 // text (as opposed to the text and its background).
[825/878] Emitting module ShaftCodeHighlight
[826/878] Compiling ShaftCodeHighlight CodeBlock.swift
[827/878] Compiling ShaftCodeHighlight ShaftCodeHighlight.swift
[828/878] Compiling ShaftSkia SkiaPath.swift
[829/879] Compiling ShaftSkia SkiaRenderer.swift
[830/879] Compiling ShaftSkia SkiaRenderer+Metal.swift
[831/879] Compiling ShaftSkia SkiaRenderer+GL.swift
[832/879] Compiling ShaftSDL3 SDLMetalView.swift
[833/879] Compiling ShaftSDL3 SDLOpenGLView.swift
[834/879] Compiling ShaftSDL3 SDLView.swift
[835/879] Compiling ShaftSkia SkiaImage.swift
[836/879] Emitting module ShaftSkia
[837/879] Compiling ShaftSDL3 SDLBackend.swift
[838/879] Compiling ShaftSDL3 SDLKey.swift
[839/879] Emitting module ShaftSDL3
[840/879] Compiling ShaftSDL3 SDLCursor.swift
[841/879] Compiling ShaftSkia SkiaFontCollection.swift
[842/879] Compiling ShaftSkia SkiaCanvas.swift
[871/879] Compiling ShaftSkia SkiaLoadICU.swift
[872/879] Compiling ShaftSkia SkiaParagraph.swift
[873/937] Compiling SwiftDiagnostics Message.swift
[874/938] Emitting module SwiftDiagnostics
[875/938] Compiling SwiftBasicFormat Syntax+Extensions.swift
[876/938] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[877/938] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[878/938] Compiling SwiftDiagnostics Note.swift
[879/938] Compiling SwiftBasicFormat InferIndentation.swift
[880/938] Compiling SwiftDiagnostics FixIt.swift
[881/938] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[882/938] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[883/938] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[884/938] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[885/938] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[886/938] Compiling SwiftDiagnostics Diagnostic.swift
[887/938] Compiling SwiftDiagnostics Convenience.swift
[888/938] Compiling ShaftSkia ToSkia.swift
[889/938] Compiling SwiftBasicFormat BasicFormat.swift
[890/938] Emitting module SwiftBasicFormat
[891/940] Compiling SwiftParser UnicodeScalarExtensions.swift
[892/940] Compiling SwiftParser Lookahead.swift
[893/940] Compiling SwiftParser LoopProgressCondition.swift
[894/940] Compiling SwiftParser Modifiers.swift
[895/940] Compiling SwiftParser Names.swift
[896/940] Compiling SwiftParser Recovery.swift
[897/940] Compiling SwiftParser Specifiers.swift
[898/940] Compiling SwiftParser Statements.swift
[899/940] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[900/944] Compiling SwiftParser Directives.swift
[901/944] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[902/944] Compiling SwiftParser Expressions.swift
[903/944] Compiling SwiftParser IncrementalParseTransition.swift
[904/944] Compiling SwiftParser IsValidIdentifier.swift
[905/944] Emitting module SwiftParser
[906/944] Compiling ShaftSetup ShaftSetup.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShaftSetup/ShaftSetup.swift:43:5: warning: code after 'return' will never be executed
41 |     #endif
42 |
43 |     preconditionFailure("No backend available for this platform")
   |     `- warning: code after 'return' will never be executed
44 | }
45 |
[907/944] Emitting module ShaftSetup
[908/944] Compiling SwiftParser TopLevel.swift
[909/944] Compiling SwiftParser TriviaParser.swift
[910/944] Compiling SwiftParser Types.swift
[911/944] Compiling SwiftParser ExperimentalFeatures.swift
[912/944] Compiling SwiftParser TokenConsumer.swift
[913/944] Compiling SwiftParser TokenPrecedence.swift
[914/944] Compiling SwiftParser TokenSpec.swift
[915/944] Compiling SwiftParser TokenSpecSet.swift
[916/944] Compiling SwiftParser Cursor.swift
[917/944] Compiling SwiftParser Lexeme.swift
[918/944] Compiling SwiftParser LexemeSequence.swift
[919/944] Compiling SwiftParser Lexer.swift
[920/944] Compiling SwiftParser RegexLiteralLexer.swift
[921/944] Compiling SwiftParser Nominals.swift
[922/944] Compiling SwiftParser Parameters.swift
[923/944] Compiling SwiftParser ParseSourceFile.swift
[924/944] Compiling SwiftParser Parser.swift
[925/944] Compiling SwiftParser Patterns.swift
[926/944] Compiling SwiftParser StringLiterals.swift
[927/944] Compiling SwiftParser SwiftParserCompatibility.swift
[928/944] Compiling SwiftParser SwiftVersion.swift
[929/944] Compiling SwiftParser SyntaxUtils.swift
[930/944] Compiling SwiftParser Attributes.swift
[931/944] Compiling SwiftParser Availability.swift
[932/944] Compiling SwiftParser CharacterInfo.swift
[933/944] Compiling SwiftParser CollectionNodes+Parsable.swift
[934/944] Compiling SwiftParser Declarations.swift
[935/944] Compiling SwiftParser IsLexerClassified.swift
[936/944] Compiling SwiftParser LayoutNodes+Parsable.swift
[937/944] Compiling SwiftParser Parser+TokenSpecSet.swift
[938/944] Compiling SwiftParser TokenSpecStaticMembers.swift
[939/957] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[940/957] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[941/957] Compiling SwiftParserDiagnostics Utils.swift
[942/957] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[943/958] Compiling SwiftParserDiagnostics PresenceUtils.swift
[944/958] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[945/958] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[946/958] Compiling SwiftParserDiagnostics MissingNodesError.swift
[947/958] Compiling SwiftParserDiagnostics MissingTokenError.swift
[948/958] Emitting module SwiftParserDiagnostics
[949/958] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[950/958] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[951/958] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[952/958] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[953/973] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[954/973] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[955/973] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[956/973] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[957/973] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[958/973] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[959/974] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[960/974] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[961/974] Compiling SwiftSyntaxBuilder Indenter.swift
[962/974] Compiling SwiftSyntaxBuilder ListBuilder.swift
[963/974] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[964/974] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[965/974] Emitting module SwiftSyntaxBuilder
[966/974] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[967/974] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[968/974] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[969/993] Compiling SwiftReload RecursiveWatcher.swift
[970/993] Compiling SwiftReload Thread.swift
[971/995] Compiling SwiftReload PathUtils.swift
[972/995] Compiling SwiftReload ProcessEnv.swift
[973/995] Compiling SwiftReload SyntaxDiff.swift
[974/995] Compiling SwiftReload ByteString.swift
[975/995] Compiling SwiftReload Condition.swift
[976/995] Compiling SwiftReload FSWatch.swift
[977/995] Compiling SwiftReload Patcher.swift
[978/995] Compiling SwiftReload PatcherState.swift
[979/995] Compiling SwiftReload LocalSwiftReloader.swift
[980/995] Compiling SwiftReload CommandPatcher.swift
[981/995] Compiling SwiftReload ProjectExtractor.swift
[982/995] Compiling SwiftReload SwiftPMProjectExtractor.swift
[983/995] Compiling SwiftReload SwiftBuildCommand.swift
[984/995] Compiling SwiftReload SwiftBuildManifest.swift
[985/995] Emitting module SwiftReload
[986/995] Compiling SwiftReload FileInfo.swift
[987/995] Compiling SwiftReload FileSystem.swift
[988/995] Compiling SwiftReload WatcherUtils.swift
[989/995] Compiling SwiftReload WritableByteStream.swift
[990/995] Emitting module ShaftLucide
[991/995] Compiling ShaftLucide LucideIcon.swift
[992/995] Compiling ShaftLucide embedded_resources.swift
[993/1014] Compiling Playground Kit_Typography.swift
[994/1014] Compiling Playground _Template.swift
[995/1014] Compiling Playground Kit_Resizable.swift
[996/1014] Compiling Playground Kit_TextField.swift
[997/1016] Compiling Playground Kit_Button.swift
[998/1016] Compiling Playground Kit_Divider.swift
[999/1016] Compiling Playground Kit_Icons.swift
[1000/1016] Compiling Playground Kit_Image.swift
[1001/1016] Compiling Playground Kit_ListView.swift
[1002/1016] Compiling Playground Kit_NavigationSplitView.swift
[1003/1016] Compiling Playground _Utils.swift
[1004/1016] Compiling Playground main.swift
[1005/1016] Compiling Playground MetalApp.swift
[1006/1016] Compiling Playground Concept_Backend.swift
[1007/1016] Compiling Playground Concept_Observation.swift
[1008/1016] Compiling Playground Concept_ShaftKit.swift
[1009/1016] Emitting module Playground
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:35: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                   `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:53: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:69: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:190:45: warning: 'float3' is deprecated: Use SIMD3<Float>
188 |         }
189 |
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
    |                                             `- warning: 'float3' is deprecated: Use SIMD3<Float>
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:198:41: warning: 'float3' is deprecated: Use SIMD3<Float>
196 |         }
197 |
198 |         static func makeScale(_ v: simd.float3) -> simd_float4x4 {
    |                                         `- warning: 'float3' is deprecated: Use SIMD3<Float>
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:254:36: warning: 'float3' is deprecated: Use SIMD3<Float>
252 |         enum ShaderTypes {
253 |             struct VertexData {
254 |                 var position: simd.float3
    |                                    `- warning: 'float3' is deprecated: Use SIMD3<Float>
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:255:34: warning: 'float3' is deprecated: Use SIMD3<Float>
253 |             struct VertexData {
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
    |                                  `- warning: 'float3' is deprecated: Use SIMD3<Float>
256 |                 var texcoord: simd.float2
257 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:256:36: warning: 'float2' is deprecated: Use SIMD2<Float>
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
    |                                    `- warning: 'float2' is deprecated: Use SIMD2<Float>
257 |             }
258 |
[1010/1016] Compiling Playground HackerNews.swift
[1011/1016] Compiling Playground HackerNewsApp.swift
[1012/1016] Compiling Playground Demo_Cube.swift
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:35: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                   `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:53: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:69: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:190:45: warning: 'float3' is deprecated: Use SIMD3<Float>
188 |         }
189 |
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
    |                                             `- warning: 'float3' is deprecated: Use SIMD3<Float>
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:198:41: warning: 'float3' is deprecated: Use SIMD3<Float>
196 |         }
197 |
198 |         static func makeScale(_ v: simd.float3) -> simd_float4x4 {
    |                                         `- warning: 'float3' is deprecated: Use SIMD3<Float>
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:254:36: warning: 'float3' is deprecated: Use SIMD3<Float>
252 |         enum ShaderTypes {
253 |             struct VertexData {
254 |                 var position: simd.float3
    |                                    `- warning: 'float3' is deprecated: Use SIMD3<Float>
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:255:34: warning: 'float3' is deprecated: Use SIMD3<Float>
253 |             struct VertexData {
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
    |                                  `- warning: 'float3' is deprecated: Use SIMD3<Float>
256 |                 var texcoord: simd.float2
257 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:256:36: warning: 'float2' is deprecated: Use SIMD2<Float>
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
    |                                    `- warning: 'float2' is deprecated: Use SIMD2<Float>
257 |             }
258 |
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:134:25: warning: 'float3' is deprecated: Use SIMD3<Float>
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
    |                         `- warning: 'float3' is deprecated: Use SIMD3<Float>
135 |         }
136 |
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:139:22: warning: 'float4' is deprecated: Use SIMD4<Float>
137 |         static func makeIdentity() -> simd_float4x4 {
138 |             return simd_float4x4(
139 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:140:22: warning: 'float4' is deprecated: Use SIMD4<Float>
138 |             return simd_float4x4(
139 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
142 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:141:22: warning: 'float4' is deprecated: Use SIMD4<Float>
139 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
142 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
143 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:142:22: warning: 'float4' is deprecated: Use SIMD4<Float>
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
142 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
143 |             )
144 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:153:22: warning: 'float4' is deprecated: Use SIMD4<Float>
151 |             let zs = zfar / (znear - zfar)
152 |             return simd_matrix_from_rows(
153 |                 simd.float4(xs, 0.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:154:22: warning: 'float4' is deprecated: Use SIMD4<Float>
152 |             return simd_matrix_from_rows(
153 |                 simd.float4(xs, 0.0, 0.0, 0.0),
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
156 |                 simd.float4(0, 0, -1, 0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:155:22: warning: 'float4' is deprecated: Use SIMD4<Float>
153 |                 simd.float4(xs, 0.0, 0.0, 0.0),
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
156 |                 simd.float4(0, 0, -1, 0)
157 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:156:22: warning: 'float4' is deprecated: Use SIMD4<Float>
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
156 |                 simd.float4(0, 0, -1, 0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
157 |             )
158 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:163:22: warning: 'float4' is deprecated: Use SIMD4<Float>
161 |             let a = angleRadians
162 |             return simd_matrix_from_rows(
163 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:164:22: warning: 'float4' is deprecated: Use SIMD4<Float>
162 |             return simd_matrix_from_rows(
163 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
166 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:165:22: warning: 'float4' is deprecated: Use SIMD4<Float>
163 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
166 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
167 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:166:22: warning: 'float4' is deprecated: Use SIMD4<Float>
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
166 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
167 |             )
168 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:173:22: warning: 'float4' is deprecated: Use SIMD4<Float>
171 |             let a = angleRadians
172 |             return simd_matrix_from_rows(
173 |                 simd.float4(cosf(a), 0.0, sinf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:174:22: warning: 'float4' is deprecated: Use SIMD4<Float>
172 |             return simd_matrix_from_rows(
173 |                 simd.float4(cosf(a), 0.0, sinf(a), 0.0),
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
176 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:175:22: warning: 'float4' is deprecated: Use SIMD4<Float>
173 |                 simd.float4(cosf(a), 0.0, sinf(a), 0.0),
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
176 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
177 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:176:22: warning: 'float4' is deprecated: Use SIMD4<Float>
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
176 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
177 |             )
178 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:183:22: warning: 'float4' is deprecated: Use SIMD4<Float>
181 |             let a = angleRadians
182 |             return simd_matrix_from_rows(
183 |                 simd.float4(cosf(a), sinf(a), 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:184:22: warning: 'float4' is deprecated: Use SIMD4<Float>
182 |             return simd_matrix_from_rows(
183 |                 simd.float4(cosf(a), sinf(a), 0.0, 0.0),
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
186 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:185:22: warning: 'float4' is deprecated: Use SIMD4<Float>
183 |                 simd.float4(cosf(a), sinf(a), 0.0, 0.0),
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
186 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
187 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:186:22: warning: 'float4' is deprecated: Use SIMD4<Float>
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
186 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
187 |             )
188 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:191:29: warning: 'float4' is deprecated: Use SIMD4<Float>
189 |
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:192:29: warning: 'float4' is deprecated: Use SIMD4<Float>
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
194 |             let col3 = simd.float4(v.x, v.y, v.z, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:193:29: warning: 'float4' is deprecated: Use SIMD4<Float>
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
194 |             let col3 = simd.float4(v.x, v.y, v.z, 1.0)
195 |             return simd_matrix(col0, col1, col2, col3)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:194:29: warning: 'float4' is deprecated: Use SIMD4<Float>
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
194 |             let col3 = simd.float4(v.x, v.y, v.z, 1.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
195 |             return simd_matrix(col0, col1, col2, col3)
196 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:200:22: warning: 'float4' is deprecated: Use SIMD4<Float>
198 |         static func makeScale(_ v: simd.float3) -> simd_float4x4 {
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
201 |                 simd.float4(0, v.y, 0, 0),
202 |                 simd.float4(0, 0, v.z, 0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:201:22: warning: 'float4' is deprecated: Use SIMD4<Float>
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
201 |                 simd.float4(0, v.y, 0, 0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
202 |                 simd.float4(0, 0, v.z, 0),
203 |                 simd.float4(0, 0, 0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:202:22: warning: 'float4' is deprecated: Use SIMD4<Float>
200 |                 simd.float4(v.x, 0, 0, 0),
201 |                 simd.float4(0, v.y, 0, 0),
202 |                 simd.float4(0, 0, v.z, 0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
203 |                 simd.float4(0, 0, 0, 1.0)
204 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:203:22: warning: 'float4' is deprecated: Use SIMD4<Float>
201 |                 simd.float4(0, v.y, 0, 0),
202 |                 simd.float4(0, 0, v.z, 0),
203 |                 simd.float4(0, 0, 0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
204 |             )
205 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:509:39: warning: 'float3' is deprecated: Use SIMD3<Float>
507 |             )
508 |
509 |             let objectPosition = simd.float3(0.0, 0.0, -10.0)
    |                                       `- warning: 'float3' is deprecated: Use SIMD3<Float>
510 |
511 |             let rt = math.makeTranslate(objectPosition)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:515:22: warning: 'float3' is deprecated: Use SIMD3<Float>
513 |             let rr0 = math.makeXRotate(-angleY)
514 |             let rtInv = math.makeTranslate(
515 |                 simd.float3(-objectPosition.x, -objectPosition.y, -objectPosition.z)
    |                      `- warning: 'float3' is deprecated: Use SIMD3<Float>
516 |             )
517 |             let fullObjectRot = rt * rr1 * rr0 * rtInv
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:532:49: warning: 'float3' is deprecated: Use SIMD3<Float>
530 |                 }
531 |
532 |                 let scale = math.makeScale(simd.float3(scl, scl, scl))
    |                                                 `- warning: 'float3' is deprecated: Use SIMD3<Float>
533 |                 let zrot = math.makeZRotate(angleY * sin(Float(ix)))
534 |                 let yrot = math.makeYRotate(angleX * cos(Float(iy)))
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:539:82: warning: 'float3' is deprecated: Use SIMD3<Float>
537 |                 let y = (Float(iy) - Float(Self.kInstanceColumns) / 2.0) * (2.0 * scl) + scl
538 |                 let z = (Float(iz) - Float(Self.kInstanceDepth) / 2.0) * (2.0 * scl)
539 |                 let translate = math.makeTranslate(math.add(objectPosition, simd.float3(x, y, z)))
    |                                                                                  `- warning: 'float3' is deprecated: Use SIMD3<Float>
540 |
541 |                 instanceData[i].instanceTransform = fullObjectRot * translate * yrot * zrot * scale
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:550:54: warning: 'float4' is deprecated: Use SIMD4<Float>
548 |                 let g = 1.0 - r
549 |                 let b = sin(.pi * 2.0 * iDivNumInstances)
550 |                 instanceData[i].instanceColor = simd.float4(r, g, b, 1.0)
    |                                                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
551 |
552 |                 ix += 1
[1013/1016] Compiling Playground Kit_Background.swift
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:35: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                   `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:53: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:133:69: warning: 'float3' is deprecated: Use SIMD3<Float>
131 |
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
    |                                                                     `- warning: 'float3' is deprecated: Use SIMD3<Float>
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:190:45: warning: 'float3' is deprecated: Use SIMD3<Float>
188 |         }
189 |
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
    |                                             `- warning: 'float3' is deprecated: Use SIMD3<Float>
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:198:41: warning: 'float3' is deprecated: Use SIMD3<Float>
196 |         }
197 |
198 |         static func makeScale(_ v: simd.float3) -> simd_float4x4 {
    |                                         `- warning: 'float3' is deprecated: Use SIMD3<Float>
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:254:36: warning: 'float3' is deprecated: Use SIMD3<Float>
252 |         enum ShaderTypes {
253 |             struct VertexData {
254 |                 var position: simd.float3
    |                                    `- warning: 'float3' is deprecated: Use SIMD3<Float>
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:255:34: warning: 'float3' is deprecated: Use SIMD3<Float>
253 |             struct VertexData {
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
    |                                  `- warning: 'float3' is deprecated: Use SIMD3<Float>
256 |                 var texcoord: simd.float2
257 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:256:36: warning: 'float2' is deprecated: Use SIMD2<Float>
254 |                 var position: simd.float3
255 |                 var normal: simd.float3
256 |                 var texcoord: simd.float2
    |                                    `- warning: 'float2' is deprecated: Use SIMD2<Float>
257 |             }
258 |
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:134:25: warning: 'float3' is deprecated: Use SIMD3<Float>
132 |     private enum math {
133 |         static func add(_ a: simd.float3, _ b: simd.float3) -> simd.float3 {
134 |             return simd.float3(a.x + b.x, a.y + b.y, a.z + b.z)
    |                         `- warning: 'float3' is deprecated: Use SIMD3<Float>
135 |         }
136 |
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:139:22: warning: 'float4' is deprecated: Use SIMD4<Float>
137 |         static func makeIdentity() -> simd_float4x4 {
138 |             return simd_float4x4(
139 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:140:22: warning: 'float4' is deprecated: Use SIMD4<Float>
138 |             return simd_float4x4(
139 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
142 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:141:22: warning: 'float4' is deprecated: Use SIMD4<Float>
139 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
142 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
143 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:142:22: warning: 'float4' is deprecated: Use SIMD4<Float>
140 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
141 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
142 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
143 |             )
144 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:153:22: warning: 'float4' is deprecated: Use SIMD4<Float>
151 |             let zs = zfar / (znear - zfar)
152 |             return simd_matrix_from_rows(
153 |                 simd.float4(xs, 0.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:154:22: warning: 'float4' is deprecated: Use SIMD4<Float>
152 |             return simd_matrix_from_rows(
153 |                 simd.float4(xs, 0.0, 0.0, 0.0),
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
156 |                 simd.float4(0, 0, -1, 0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:155:22: warning: 'float4' is deprecated: Use SIMD4<Float>
153 |                 simd.float4(xs, 0.0, 0.0, 0.0),
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
156 |                 simd.float4(0, 0, -1, 0)
157 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:156:22: warning: 'float4' is deprecated: Use SIMD4<Float>
154 |                 simd.float4(0.0, ys, 0.0, 0.0),
155 |                 simd.float4(0.0, 0.0, zs, znear * zs),
156 |                 simd.float4(0, 0, -1, 0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
157 |             )
158 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:163:22: warning: 'float4' is deprecated: Use SIMD4<Float>
161 |             let a = angleRadians
162 |             return simd_matrix_from_rows(
163 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:164:22: warning: 'float4' is deprecated: Use SIMD4<Float>
162 |             return simd_matrix_from_rows(
163 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
166 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:165:22: warning: 'float4' is deprecated: Use SIMD4<Float>
163 |                 simd.float4(1.0, 0.0, 0.0, 0.0),
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
166 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
167 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:166:22: warning: 'float4' is deprecated: Use SIMD4<Float>
164 |                 simd.float4(0.0, cosf(a), sinf(a), 0.0),
165 |                 simd.float4(0.0, -sinf(a), cosf(a), 0.0),
166 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
167 |             )
168 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:173:22: warning: 'float4' is deprecated: Use SIMD4<Float>
171 |             let a = angleRadians
172 |             return simd_matrix_from_rows(
173 |                 simd.float4(cosf(a), 0.0, sinf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:174:22: warning: 'float4' is deprecated: Use SIMD4<Float>
172 |             return simd_matrix_from_rows(
173 |                 simd.float4(cosf(a), 0.0, sinf(a), 0.0),
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
176 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:175:22: warning: 'float4' is deprecated: Use SIMD4<Float>
173 |                 simd.float4(cosf(a), 0.0, sinf(a), 0.0),
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
176 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
177 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:176:22: warning: 'float4' is deprecated: Use SIMD4<Float>
174 |                 simd.float4(0.0, 1.0, 0.0, 0.0),
175 |                 simd.float4(-sinf(a), 0.0, cosf(a), 0.0),
176 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
177 |             )
178 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:183:22: warning: 'float4' is deprecated: Use SIMD4<Float>
181 |             let a = angleRadians
182 |             return simd_matrix_from_rows(
183 |                 simd.float4(cosf(a), sinf(a), 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:184:22: warning: 'float4' is deprecated: Use SIMD4<Float>
182 |             return simd_matrix_from_rows(
183 |                 simd.float4(cosf(a), sinf(a), 0.0, 0.0),
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
186 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:185:22: warning: 'float4' is deprecated: Use SIMD4<Float>
183 |                 simd.float4(cosf(a), sinf(a), 0.0, 0.0),
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
186 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
187 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:186:22: warning: 'float4' is deprecated: Use SIMD4<Float>
184 |                 simd.float4(-sinf(a), cosf(a), 0.0, 0.0),
185 |                 simd.float4(0.0, 0.0, 1.0, 0.0),
186 |                 simd.float4(0.0, 0.0, 0.0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
187 |             )
188 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:191:29: warning: 'float4' is deprecated: Use SIMD4<Float>
189 |
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:192:29: warning: 'float4' is deprecated: Use SIMD4<Float>
190 |         static func makeTranslate(_ v: simd.float3) -> simd_float4x4 {
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
194 |             let col3 = simd.float4(v.x, v.y, v.z, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:193:29: warning: 'float4' is deprecated: Use SIMD4<Float>
191 |             let col0 = simd.float4(1.0, 0.0, 0.0, 0.0)
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
194 |             let col3 = simd.float4(v.x, v.y, v.z, 1.0)
195 |             return simd_matrix(col0, col1, col2, col3)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:194:29: warning: 'float4' is deprecated: Use SIMD4<Float>
192 |             let col1 = simd.float4(0.0, 1.0, 0.0, 0.0)
193 |             let col2 = simd.float4(0.0, 0.0, 1.0, 0.0)
194 |             let col3 = simd.float4(v.x, v.y, v.z, 1.0)
    |                             `- warning: 'float4' is deprecated: Use SIMD4<Float>
195 |             return simd_matrix(col0, col1, col2, col3)
196 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:200:22: warning: 'float4' is deprecated: Use SIMD4<Float>
198 |         static func makeScale(_ v: simd.float3) -> simd_float4x4 {
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
201 |                 simd.float4(0, v.y, 0, 0),
202 |                 simd.float4(0, 0, v.z, 0),
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:201:22: warning: 'float4' is deprecated: Use SIMD4<Float>
199 |             return simd_matrix(
200 |                 simd.float4(v.x, 0, 0, 0),
201 |                 simd.float4(0, v.y, 0, 0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
202 |                 simd.float4(0, 0, v.z, 0),
203 |                 simd.float4(0, 0, 0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:202:22: warning: 'float4' is deprecated: Use SIMD4<Float>
200 |                 simd.float4(v.x, 0, 0, 0),
201 |                 simd.float4(0, v.y, 0, 0),
202 |                 simd.float4(0, 0, v.z, 0),
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
203 |                 simd.float4(0, 0, 0, 1.0)
204 |             )
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:203:22: warning: 'float4' is deprecated: Use SIMD4<Float>
201 |                 simd.float4(0, v.y, 0, 0),
202 |                 simd.float4(0, 0, v.z, 0),
203 |                 simd.float4(0, 0, 0, 1.0)
    |                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
204 |             )
205 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:509:39: warning: 'float3' is deprecated: Use SIMD3<Float>
507 |             )
508 |
509 |             let objectPosition = simd.float3(0.0, 0.0, -10.0)
    |                                       `- warning: 'float3' is deprecated: Use SIMD3<Float>
510 |
511 |             let rt = math.makeTranslate(objectPosition)
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:515:22: warning: 'float3' is deprecated: Use SIMD3<Float>
513 |             let rr0 = math.makeXRotate(-angleY)
514 |             let rtInv = math.makeTranslate(
515 |                 simd.float3(-objectPosition.x, -objectPosition.y, -objectPosition.z)
    |                      `- warning: 'float3' is deprecated: Use SIMD3<Float>
516 |             )
517 |             let fullObjectRot = rt * rr1 * rr0 * rtInv
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:532:49: warning: 'float3' is deprecated: Use SIMD3<Float>
530 |                 }
531 |
532 |                 let scale = math.makeScale(simd.float3(scl, scl, scl))
    |                                                 `- warning: 'float3' is deprecated: Use SIMD3<Float>
533 |                 let zrot = math.makeZRotate(angleY * sin(Float(ix)))
534 |                 let yrot = math.makeYRotate(angleX * cos(Float(iy)))
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:539:82: warning: 'float3' is deprecated: Use SIMD3<Float>
537 |                 let y = (Float(iy) - Float(Self.kInstanceColumns) / 2.0) * (2.0 * scl) + scl
538 |                 let z = (Float(iz) - Float(Self.kInstanceDepth) / 2.0) * (2.0 * scl)
539 |                 let translate = math.makeTranslate(math.add(objectPosition, simd.float3(x, y, z)))
    |                                                                                  `- warning: 'float3' is deprecated: Use SIMD3<Float>
540 |
541 |                 instanceData[i].instanceTransform = fullObjectRot * translate * yrot * zrot * scale
/Users/admin/builder/spi-builder-workspace/Sources/Playground/Pages/Demo_Cube.swift:550:54: warning: 'float4' is deprecated: Use SIMD4<Float>
548 |                 let g = 1.0 - r
549 |                 let b = sin(.pi * 2.0 * iDivNumInstances)
550 |                 instanceData[i].instanceColor = simd.float4(r, g, b, 1.0)
    |                                                      `- warning: 'float4' is deprecated: Use SIMD4<Float>
551 |
552 |                 ix += 1
[1013/1016] Write Objects.LinkFileList
error: link command failed with exit code 1 (use -v to see invocation)
ld: warning: search path '.shaft/skia' not found
ld: warning: Could not find or use auto-linked library 'skia': library 'skia' not found
ld: warning: Could not find or use auto-linked library 'skparagraph': library 'skparagraph' not found
ld: warning: Could not find or use auto-linked library 'skshaper': library 'skshaper' not found
ld: warning: Could not find or use auto-linked library 'skunicode_core': library 'skunicode_core' not found
ld: warning: Could not find or use auto-linked library 'skunicode_icu': library 'skunicode_icu' not found
ld: warning: Could not find or use auto-linked framework 'CoreAudioTypes': framework 'CoreAudioTypes' not found
Undefined symbols for architecture arm64:
  "sk_abort_no_print()", referenced from:
      sk_sp<skia::textlayout::FontCollection>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkSurface>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkImage>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkTypeface>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::unref() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::ref() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::~SkRefCntBase()::'lambda'()::operator()() const in utils.cpp.o
      ...
  "SkFontMgr_New_CoreText(__CTFontCollection const*)", referenced from:
      ___cxx_global_var_init.2 in utils.cpp.o
  "GrGLMakeNativeInterface()", referenced from:
      gr_glinterface_create_native_interface() in utils.cpp.o
  "SkMakeTypefaceFromCTFont(__CTFont const*)", referenced from:
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
  "SkDebugf(char const*, ...)", referenced from:
      sk_sp<skia::textlayout::FontCollection>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkSurface>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkImage>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      sk_sp<SkTypeface>::operator*() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::unref() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::ref() const::'lambda'()::operator()() const in utils.cpp.o
      SkRefCntBase::~SkRefCntBase()::'lambda'()::operator()() const in utils.cpp.o
      ...
  "SkSurfaces::WrapBackendTexture(GrRecordingContext*, GrBackendTexture const&, GrSurfaceOrigin, int, SkColorType, sk_sp<SkColorSpace>, SkSurfaceProps const*, void (*)(void*), void*)", referenced from:
      ShaftSkia.SkiaMetalRenderer.createMetalCanvas(texture: __C.MTLTexture, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+Metal.swift.o
  "SkSurfaces::WrapBackendRenderTarget(GrRecordingContext*, GrBackendRenderTarget const&, GrSurfaceOrigin, SkColorType, sk_sp<SkColorSpace>, SkSurfaceProps const*, void (*)(void*), void*)", referenced from:
      ShaftSkia.SkiaGLRenderer.createGLCanvas(fbo: Swift.UInt, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+GL.swift.o
  "SkTextBlob::~SkTextBlob()", referenced from:
      SkNVRefCnt<SkTextBlob>::unref() const in SkiaFontCollection.swift.o
  "SkTextBlob::operator delete(void*)", referenced from:
      SkNVRefCnt<SkTextBlob>::unref() const in SkiaFontCollection.swift.o
  "SkColorSpace::MakeSRGB()", referenced from:
      color_space_new_srgb() in utils.cpp.o
  "SkMaskFilter::MakeBlur(SkBlurStyle, float, bool)", referenced from:
      sk_paint_set_maskfilter_blur(SkPaint*, SkBlurStyle, float) in utils.cpp.o
  "SkAndroidCodec::MakeFromData(sk_sp<SkData>, SkPngChunkReader*)", referenced from:
      sk_animated_image_create(void const*, unsigned long) in utils.cpp.o
  "GrDirectContext::flush(GrFlushInfo const&)", referenced from:
      GrDirectContext::flushAndSubmit(GrSyncCpu) in utils.cpp.o
  "GrDirectContext::submit(GrSyncCpu)", referenced from:
      GrDirectContext::flushAndSubmit(GrSyncCpu) in utils.cpp.o
  "SkAnimatedImage::decodeNextFrame()", referenced from:
      sk_animated_image_decode_next_frame(sk_sp<SkAnimatedImage>&) in utils.cpp.o
  "SkAnimatedImage::getCurrentFrame()", referenced from:
      sk_animated_image_get_current_frame(sk_sp<SkAnimatedImage>&) in utils.cpp.o
  "SkAnimatedImage::Make(std::__1::unique_ptr<SkAndroidCodec, std::__1::default_delete<SkAndroidCodec>>)", referenced from:
      sk_animated_image_create(void const*, unsigned long) in utils.cpp.o
  "GrBackendTexture::~GrBackendTexture()", referenced from:
      ShaftSkia.SkiaMetalRenderer.createMetalCanvas(texture: __C.MTLTexture, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+Metal.swift.o
      ShaftSkia.SkiaMetalRenderer.createMetalImage(texture: __C.MTLTexture) -> Shaft.NativeImage in SkiaRenderer+Metal.swift.o
  "GrDirectContexts::MakeGL(sk_sp<GrGLInterface const>)", referenced from:
      gr_direct_context_make_gl(sk_sp<GrGLInterface const>&) in utils.cpp.o
  "GrDirectContexts::MakeMetal(GrMtlBackendContext const&)", referenced from:
      gr_mtl_direct_context_make(GrMtlBackendContext&) in utils.cpp.o
  "GrBackendTextures::MakeMtl(int, int, skgpu::Mipmapped, GrMtlTextureInfo const&, std::__1::basic_string_view<char, std::__1::char_traits<char>>)", referenced from:
      ShaftSkia.SkiaMetalRenderer.createMetalCanvas(texture: __C.MTLTexture, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+Metal.swift.o
      ShaftSkia.SkiaMetalRenderer.createMetalImage(texture: __C.MTLTexture) -> Shaft.NativeImage in SkiaRenderer+Metal.swift.o
  "SkTextBlobBuilder::allocRunPos(SkFont const&, int, SkRect const*)", referenced from:
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
  "SkTextBlobBuilder::make()", referenced from:
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
  "SkTextBlobBuilder::SkTextBlobBuilder()", referenced from:
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
  "SkTextBlobBuilder::~SkTextBlobBuilder()", referenced from:
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
      sk_text_blob_make_from_glyphs(unsigned short const*, SkPoint const*, unsigned long, SkFont const&) in utils.cpp.o
  "GrBackendRenderTarget::~GrBackendRenderTarget()", referenced from:
      ShaftSkia.SkiaGLRenderer.createGLCanvas(fbo: Swift.UInt, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+GL.swift.o
  "GrBackendRenderTargets::MakeGL(int, int, int, int, GrGLFramebufferInfo const&)", referenced from:
      ShaftSkia.SkiaGLRenderer.createGLCanvas(fbo: Swift.UInt, size: Shaft.TSize<Swift.Int>) -> Shaft.DirectCanvas in SkiaRenderer+GL.swift.o
  "skia::textlayout::StrutStyle::StrutStyle()", referenced from:
      (extension in ShaftSkia):Shaft.ParagraphStyle.copyToSkia(inout __C.skia.textlayout.ParagraphStyle) -> () in ToSkia.swift.o
  "skia::textlayout::FontCollection::findTypefaces(std::__1::vector<SkString, std::__1::allocator<SkString>> const&, SkFontStyle)", referenced from:
      sk_fontcollection_find_typefaces(sk_sp<skia::textlayout::FontCollection> const&, std::__1::vector<SkString, std::__1::allocator<SkString>> const&, SkFontStyle) in utils.cpp.o
  "skia::textlayout::FontCollection::defaultFallback(int, SkFontStyle, SkString const&)", referenced from:
      sk_fontcollection_default_fallback(sk_sp<skia::textlayout::FontCollection> const&, int, SkFontStyle, SkString const&) in utils.cpp.o
  "skia::textlayout::FontCollection::setDefaultFontManager(sk_sp<SkFontMgr>)", referenced from:
      sk_fontcollection_new() in utils.cpp.o
  "skia::textlayout::FontCollection::setDynamicFontManager(sk_sp<SkFontMgr>)", referenced from:
      sk_fontcollection_new() in utils.cpp.o
  "skia::textlayout::FontCollection::FontCollection()", referenced from:
      sk_sp<skia::textlayout::FontCollection> sk_make_sp<skia::textlayout::FontCollection>() in utils.cpp.o
  "skia::textlayout::ParagraphStyle::ParagraphStyle()", referenced from:
      ShaftSkia.SkiaParagraphBuilder.init(_: Shaft.ParagraphStyle, fontCollection: ShaftSkia.SkiaFontCollection) -> ShaftSkia.SkiaParagraphBuilder in SkiaParagraph.swift.o
  "skia::textlayout::ParagraphBuilder::make(skia::textlayout::ParagraphStyle const&, sk_sp<skia::textlayout::FontCollection>)", referenced from:
      paragraph_builder_new(skia::textlayout::ParagraphStyle&, sk_sp<skia::textlayout::FontCollection> const&) in utils.cpp.o
  "skia::textlayout::TypefaceFontProvider::registerTypeface(sk_sp<SkTypeface>)", referenced from:
      sk_fontcollection_register_typeface(sk_sp<skia::textlayout::FontCollection>&, sk_sp<SkTypeface>&) in utils.cpp.o
  "skia::textlayout::TypefaceFontProvider::registerTypeface(sk_sp<SkTypeface>, SkString const&)", referenced from:
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
  "skia::textlayout::TextStyle::setFontArguments(std::__1::optional<SkFontArguments> const&)", referenced from:
      sk_textstyle_set_font_arguments(skia::textlayout::TextStyle*, SkFontArguments) in utils.cpp.o
  "skia::textlayout::TextStyle::kDefaultFontFamilies", referenced from:
      skia::textlayout::TextStyle::TextStyle() in SkiaParagraph.swift.o
  "SkData::MakeWithCopy(void const*, unsigned long)", referenced from:
      sk_typeface_create_from_data(sk_sp<skia::textlayout::FontCollection> const&, char const*, unsigned long) in utils.cpp.o
      sk_animated_image_create(void const*, unsigned long) in utils.cpp.o
  "SkData::~SkData()", referenced from:
      SkNVRefCnt<SkData>::unref() const in utils.cpp.o
  "SkData::operator delete(void*)", referenced from:
      SkNVRefCnt<SkData>::unref() const in utils.cpp.o
  "SkFont::SkFont(sk_sp<SkTypeface>, float)", referenced from:
      sk_font_new(sk_sp<SkTypeface>&, float) in utils.cpp.o
  "SkPath::reset()", referenced from:
      sk_path_reset(SkPath*) in utils.cpp.o
  "SkPath::lineTo(float, float)", referenced from:
      sk_path_line_to(SkPath*, float, float) in utils.cpp.o
  "SkPath::moveTo(float, float)", referenced from:
      sk_path_move_to(SkPath*, float, float) in utils.cpp.o
  "SkPath::SkPath(SkPath const&)", referenced from:
      key path getter for ShaftSkia.SkiaPath.skPath : __C.SkPath : ShaftSkia.SkiaPath in SkiaPath.swift.o
      key path setter for ShaftSkia.SkiaPath.skPath : __C.SkPath : ShaftSkia.SkiaPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.getter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      initializeWithCopy value witness for __C.SkPath in SkiaPath.swift.o
      assignWithCopy value witness for __C.SkPath in SkiaPath.swift.o
      ...
  "SkPath::SkPath()", referenced from:
      variable initialization expression of ShaftSkia.SkiaPath.skPath : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.init() -> ShaftSkia.SkiaPath in SkiaPath.swift.o
  "SkPath::~SkPath()", referenced from:
      ShaftSkia.SkiaCanvas.drawPath(Shaft.Path, Shaft.Paint) -> () in SkiaCanvas.swift.o
      key path getter for ShaftSkia.SkiaPath.skPath : __C.SkPath : ShaftSkia.SkiaPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.skPath.setter : __C.SkPath in SkiaPath.swift.o
      ShaftSkia.SkiaPath.deinit in SkiaPath.swift.o
      destroy value witness for __C.SkPath in SkiaPath.swift.o
      ...
  "SkPaint::setBlendMode(SkBlendMode)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setStrokeCap(SkPaint::Cap)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setMaskFilter(sk_sp<SkMaskFilter>)", referenced from:
      sk_paint_set_maskfilter_blur(SkPaint*, SkBlurStyle, float) in utils.cpp.o
      sk_paint_clear_maskfilter(SkPaint*) in utils.cpp.o
  "SkPaint::setStrokeJoin(SkPaint::Join)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setStrokeMiter(float)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setStrokeWidth(float)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setColor(unsigned int)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::setStyle(SkPaint::Style)", referenced from:
      (extension in ShaftSkia):Shaft.Paint.copyToSkia(paint: inout __C.SkPaint) -> () in ToSkia.swift.o
  "SkPaint::SkPaint(SkPaint&&)", referenced from:
      std::__1::__variant_detail::__alt<0ul, SkPaint>::__alt[abi:ne190102]<SkPaint>(std::__1::in_place_t, SkPaint&&) in ToSkia.swift.o
  "SkPaint::SkPaint(SkPaint const&)", referenced from:
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).getter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawLine(Shaft.TOffset<Swift.Float>, Shaft.TOffset<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawRect(Shaft.TRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawTextBlob(Shaft.TextBlob, Shaft.TOffset<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawRRect(Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ...
  "SkPaint::SkPaint()", referenced from:
      ShaftSkia.SkiaCanvas.init(__C.sk_sp<SkSurface>, __C.sk_sp<GrDirectContext>, Shaft.TSize<Swift.Int>) -> ShaftSkia.SkiaCanvas in SkiaCanvas.swift.o
      variable initialization expression of ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA) : __C.SkPaint in SkiaCanvas.swift.o
      std::__1::__variant_detail::__alt<0ul, SkPaint>::__alt[abi:ne190102]<>(std::__1::in_place_t) in SkiaParagraph.swift.o
      (extension in ShaftSkia):Shaft.SpanStyle.copyToSkia(inout __C.skia.textlayout.TextStyle) -> () in ToSkia.swift.o
      (extension in ShaftSkia):Shaft.SpanStyle.copyToSkia(inout __C.skia.textlayout.TextStyle) -> () in ToSkia.swift.o
  "SkPaint::~SkPaint()", referenced from:
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.(skPaint in _6642A5D20A9A418A17ACFC2E4219ABBA).setter : __C.SkPaint in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawLine(Shaft.TOffset<Swift.Float>, Shaft.TOffset<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawRect(Shaft.TRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawTextBlob(Shaft.TextBlob, Shaft.TOffset<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ShaftSkia.SkiaCanvas.drawRRect(Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      ...
  "SkPaint::operator=(SkPaint&&)", referenced from:
      void std::__1::__variant_detail::__assignment<std::__1::__variant_detail::__traits<SkPaint, int>>::__assign_alt[abi:ne190102]<0ul, SkPaint, SkPaint>(std::__1::__variant_detail::__alt<0ul, SkPaint>&, SkPaint&&) in ToSkia.swift.o
  "SkPaint::operator=(SkPaint const&)", referenced from:
      void std::__1::__variant_detail::__assignment<std::__1::__variant_detail::__traits<SkPaint, int>>::__assign_alt[abi:ne190102]<0ul, SkPaint, SkPaint const&>(std::__1::__variant_detail::__alt<0ul, SkPaint>&, SkPaint const&) in ToSkia.swift.o
  "SkRRect::setRectRadii(SkRect const&, SkPoint const*)", referenced from:
      closure #1 (Swift.UnsafeBufferPointer<__C.SkPoint>) -> () in ShaftSkia.SkiaCanvas.drawRRect(Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      closure #1 (Swift.UnsafeBufferPointer<__C.SkPoint>) -> () in ShaftSkia.SkiaCanvas.drawDRRect(Shaft.TRRect<Swift.Float>, Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      closure #2 (Swift.UnsafeBufferPointer<__C.SkPoint>) -> () in ShaftSkia.SkiaCanvas.drawDRRect(Shaft.TRRect<Swift.Float>, Shaft.TRRect<Swift.Float>, Shaft.Paint) -> () in SkiaCanvas.swift.o
      closure #1 (Swift.UnsafeBufferPointer<__C.SkPoint>) -> () in ShaftSkia.SkiaCanvas.clipRRect(Shaft.TRRect<Swift.Float>, Swift.Bool) -> () in SkiaCanvas.swift.o
  "SkCanvas::drawCircle(float, float, float, SkPaint const&)", referenced from:
      sk_canvas_draw_circle(SkCanvas*, float, float, float, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawDRRect(SkRRect const&, SkRRect const&, SkPaint const&)", referenced from:
      sk_canvas_draw_drrect(SkCanvas*, SkRRect const&, SkRRect const&, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawTextBlob(SkTextBlob const*, float, float, SkPaint const&)", referenced from:
      sk_canvas_draw_text_blob(SkCanvas*, sk_sp<SkTextBlob>&, float, float, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawImageNine(SkImage const*, SkIRect const&, SkRect const&, SkFilterMode, SkPaint const*)", referenced from:
      sk_canvas_draw_image_nine(SkCanvas*, sk_sp<SkImage>&, SkIRect const&, SkRect const&, SkPaint const*) in utils.cpp.o
  "SkCanvas::drawImageRect(SkImage const*, SkRect const&, SkRect const&, SkSamplingOptions const&, SkPaint const*, SkCanvas::SrcRectConstraint)", referenced from:
      SkCanvas::drawImageRect(sk_sp<SkImage> const&, SkRect const&, SkRect const&, SkSamplingOptions const&, SkPaint const*, SkCanvas::SrcRectConstraint) in utils.cpp.o
  "SkCanvas::save()", referenced from:
      sk_canvas_save(SkCanvas*) in utils.cpp.o
  "SkCanvas::scale(float, float)", referenced from:
      sk_canvas_scale(SkCanvas*, float, float) in utils.cpp.o
  "SkCanvas::concat(SkM44 const&)", referenced from:
      sk_canvas_concat(SkCanvas*, SkM44 const&) in utils.cpp.o
  "SkCanvas::restore()", referenced from:
      sk_canvas_restore(SkCanvas*) in utils.cpp.o
  "SkCanvas::clipRect(SkRect const&, SkClipOp, bool)", referenced from:
      sk_canvas_clip_rect(SkCanvas*, SkRect const&, SkClipOp, bool) in utils.cpp.o
  "SkCanvas::drawLine(float, float, float, float, SkPaint const&)", referenced from:
      sk_canvas_draw_line(SkCanvas*, float, float, float, float, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawPath(SkPath const&, SkPaint const&)", referenced from:
      sk_canvas_draw_path(SkCanvas*, SkPath const&, SkPaint const&) in utils.cpp.o
  "SkCanvas::drawRect(SkRect const&, SkPaint const&)", referenced from:
      sk_canvas_draw_rect(SkCanvas*, SkRect const&, SkPaint const&) in utils.cpp.o
  "SkCanvas::clipRRect(SkRRect const&, SkClipOp, bool)", referenced from:
      sk_canvas_clip_rrect(SkCanvas*, SkRRect const&, SkClipOp, bool) in utils.cpp.o
  "SkCanvas::drawColor(SkRGBA4f<(SkAlphaType)3> const&, SkBlendMode)", referenced from:
      SkCanvas::clear(SkRGBA4f<(SkAlphaType)3> const&) in utils.cpp.o
  "SkCanvas::drawImage(SkImage const*, float, float, SkSamplingOptions const&, SkPaint const*)", referenced from:
      sk_canvas_draw_image(SkCanvas*, sk_sp<SkImage>&, float, float, SkPaint const*) in utils.cpp.o
  "SkCanvas::drawRRect(SkRRect const&, SkPaint const&)", referenced from:
      sk_canvas_draw_rrect(SkCanvas*, SkRRect const&, SkPaint const&) in utils.cpp.o
  "SkCanvas::saveLayer(SkRect const*, SkPaint const*)", referenced from:
      sk_canvas_save_layer(SkCanvas*, SkRect const*, SkPaint const*) in utils.cpp.o
  "SkCanvas::translate(float, float)", referenced from:
      sk_canvas_translate(SkCanvas*, float, float) in utils.cpp.o
  "SkImages::AdoptTextureFrom(GrRecordingContext*, GrBackendTexture const&, GrSurfaceOrigin, SkColorType)", referenced from:
      ShaftSkia.SkiaMetalRenderer.createMetalImage(texture: __C.MTLTexture) -> Shaft.NativeImage in SkiaRenderer+Metal.swift.o
  "SkRGBA4f<(SkAlphaType)3>::FromColor(unsigned int)", referenced from:
      SkCanvas::clear(unsigned int) in utils.cpp.o
  "SkString::SkString(char const*)", referenced from:
      ShaftSkia.SkiaFontCollection.findTypeface(_: [Swift.String], style: Shaft.FontStyle, weight: Shaft.FontWeight) -> [Shaft.Typeface] in SkiaFontCollection.swift.o
      (extension in ShaftSkia):Shaft.ParagraphStyle.copyToSkia(inout __C.skia.textlayout.ParagraphStyle) -> () in ToSkia.swift.o
      (extension in ShaftSkia):Shaft.StrutStyle.copyToSkia(inout __C.skia.textlayout.StrutStyle) -> () in ToSkia.swift.o
      (extension in ShaftSkia):Shaft.SpanStyle.copyToSkia(inout __C.skia.textlayout.TextStyle) -> () in ToSkia.swift.o
  "SkString::SkString(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)", referenced from:
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
  "SkString::SkString(SkString const&)", referenced from:
      ShaftSkia.SkiaTypeface.familyName.getter : Swift.String in SkiaFontCollection.swift.o
      void std::__1::allocator<SkString>::construct[abi:ne190102]<SkString, SkString&>(SkString*, SkString&) in SkiaFontCollection.swift.o
      void std::__1::allocator<SkString>::construct[abi:ne190102]<SkString, SkString const&>(SkString*, SkString const&) in SkiaFontCollection.swift.o
      skia::textlayout::ParagraphStyle::ParagraphStyle(skia::textlayout::ParagraphStyle const&) in SkiaParagraph.swift.o
      skia::textlayout::TextStyle::TextStyle(skia::textlayout::TextStyle const&) in SkiaParagraph.swift.o
      skia::textlayout::FontFeature::FontFeature(skia::textlayout::FontFeature const&) in SkiaParagraph.swift.o
  "SkString::SkString()", referenced from:
      ShaftSkia.SkiaFontCollection.findTypefaceFor(Swift.UInt32) -> Shaft.Typeface? in SkiaFontCollection.swift.o
      ShaftSkia.SkiaTypeface.familyName.getter : Swift.String in SkiaFontCollection.swift.o
      skia::textlayout::TextStyle::TextStyle() in SkiaParagraph.swift.o
  "SkString::~SkString()", referenced from:
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
      RegisterSystemFonts(skia::textlayout::TypefaceFontProvider&)::$_0::operator()(int) const in utils.cpp.o
      std::__1::pair<SkString, sk_sp<skia::textlayout::TypefaceFontStyleSet>>::~pair() in utils.cpp.o
      ShaftSkia.SkiaFontCollection.findTypeface(_: [Swift.String], style: Shaft.FontStyle, weight: Shaft.FontWeight) -> [Shaft.Typeface] in SkiaFontCollection.swift.o
      ShaftSkia.SkiaFontCollection.findTypefaceFor(Swift.UInt32) -> Shaft.Typeface? in SkiaFontCollection.swift.o
      ShaftSkia.SkiaTypeface.familyName.getter : Swift.String in SkiaFontCollection.swift.o
      ShaftSkia.SkiaTypeface.familyName.getter : Swift.String in SkiaFontCollection.swift.o
      ...
  "SkString::operator=(SkString const&)", referenced from:
      skia::textlayout::ParagraphStyle::setEllipsis(SkString const&) in ToSkia.swift.o
      skia::textlayout::TextStyle::operator=(skia::textlayout::TextStyle const&) in ToSkia.swift.o
      std::__1::pair<SkString*, SkString*> std::__1::__copy_impl<std::__1::_ClassicAlgPolicy>::operator()[abi:ne190102]<SkString*, SkString*, SkString*>(SkString*, SkString*, SkString*) const in ToSkia.swift.o
      skia::textlayout::FontFeature::operator=(skia::textlayout::FontFeature const&) in ToSkia.swift.o
  "SkSurface::getCanvas()", referenced from:
      sk_surface_get_canvas(sk_sp<SkSurface> const&) in utils.cpp.o
  "SkTypeface::countGlyphs() const", referenced from:
      sk_typeface_count_glyphs(sk_sp<SkTypeface>&) in utils.cpp.o
  "SkTypeface::getFamilyName(SkString*) const", referenced from:
      sk_typeface_get_family_name(sk_sp<SkTypeface>&, SkString*) in utils.cpp.o
  "SkTypeface::unicharToGlyph(int) const", referenced from:
      sk_typeface_get_glyph(sk_sp<SkTypeface>&, int) in utils.cpp.o
  "SkTypeface::unicharsToGlyphs(int const*, int, unsigned short*) const", referenced from:
      sk_typeface_get_glyphs(sk_sp<SkTypeface>&, int const*, unsigned long) in utils.cpp.o
  "SkCanvas::getSaveCount() const", referenced from:
      sk_canvas_get_save_count(SkCanvas*) in utils.cpp.o
  "SkFontMgr::makeFromData(sk_sp<SkData>, int) const", referenced from:
      sk_typeface_create_from_data(sk_sp<skia::textlayout::FontCollection> const&, char const*, unsigned long) in utils.cpp.o
  "vtable for skia::textlayout::TypefaceFontProvider", referenced from:
      skia::textlayout::TypefaceFontProvider::TypefaceFontProvider() in utils.cpp.o
   NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
[1014/1016] Linking Playground
BUILD FAILURE 6.1 macosSpm