Build Information
Failed to build GodotVision, reference main (4a4771
), with Swift 6.1 for Wasm on 10 Jun 2025 13:06:20 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[163/328] Compiling SwiftGodot VariantStorable.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[164/328] Compiling SwiftGodot Various.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[165/328] Compiling SwiftGodot Wrapped.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[166/328] Compiling SwiftGodot EntryPoint.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[167/328] Compiling SwiftGodot Export.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[168/328] Compiling SwiftGodot Arithmetic.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[169/328] Compiling SwiftGodot ClassInfo+ConvenienceProperties.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[170/328] Compiling SwiftGodot ColorExtensions.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[171/328] Compiling SwiftGodot Compat.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[172/328] Compiling SwiftGodot GD+Utils.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[173/328] Compiling SwiftGodot GDictionary.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[174/328] Compiling SwiftGodot NodeExtensions.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[175/353] Compiling SwiftGodot AudioStreamGenerator.swift
[176/353] Compiling SwiftGodot AudioStreamGeneratorPlayback.swift
[177/353] Compiling SwiftGodot AudioStreamInteractive.swift
[178/353] Compiling SwiftGodot AudioStreamMP3.swift
[179/353] Compiling SwiftGodot AudioStreamMicrophone.swift
[180/353] Compiling SwiftGodot AudioStreamOggVorbis.swift
[181/353] Compiling SwiftGodot AudioStreamPlayback.swift
[182/353] Compiling SwiftGodot AudioStreamPlaybackInteractive.swift
[183/353] Compiling SwiftGodot AudioStreamPlaybackOggVorbis.swift
[184/353] Compiling SwiftGodot AudioStreamPlaybackPlaylist.swift
[185/353] Compiling SwiftGodot AudioStreamPlaybackPolyphonic.swift
[186/353] Compiling SwiftGodot AudioStreamPlaybackResampled.swift
[187/353] Compiling SwiftGodot AudioStreamPlaybackSynchronized.swift
[188/353] Compiling SwiftGodot AudioStreamPlayer.swift
[189/353] Compiling SwiftGodot AudioStreamPlayer2D.swift
[190/353] Compiling SwiftGodot AudioStreamPlayer3D.swift
[191/353] Compiling SwiftGodot AudioStreamPlaylist.swift
[192/353] Compiling SwiftGodot AudioStreamPolyphonic.swift
[193/353] Compiling SwiftGodot AudioStreamRandomizer.swift
[194/353] Compiling SwiftGodot AudioStreamSynchronized.swift
[195/353] Compiling SwiftGodot AudioStreamWAV.swift
[196/353] Compiling SwiftGodot BackBufferCopy.swift
[197/353] Compiling SwiftGodot BaseButton.swift
[198/353] Compiling SwiftGodot BaseMaterial3D.swift
[199/353] Compiling SwiftGodot BitMap.swift
[200/353] Compiling SwiftGodot AnimationNodeSync.swift
[201/353] Compiling SwiftGodot AnimationNodeTimeScale.swift
[202/353] Compiling SwiftGodot AnimationNodeTimeSeek.swift
[203/353] Compiling SwiftGodot AnimationNodeTransition.swift
[204/353] Compiling SwiftGodot AnimationPlayer.swift
[205/353] Compiling SwiftGodot AnimationRootNode.swift
[206/353] Compiling SwiftGodot AnimationTree.swift
[207/353] Compiling SwiftGodot Area2D.swift
[208/353] Compiling SwiftGodot Area3D.swift
[209/353] Compiling SwiftGodot ArrayMesh.swift
[210/353] Compiling SwiftGodot ArrayOccluder3D.swift
[211/353] Compiling SwiftGodot AspectRatioContainer.swift
[212/353] Compiling SwiftGodot AtlasTexture.swift
[213/353] Compiling SwiftGodot AudioBusLayout.swift
[214/353] Compiling SwiftGodot AudioEffect.swift
[215/353] Compiling SwiftGodot AudioEffectAmplify.swift
[216/353] Compiling SwiftGodot AudioEffectBandLimitFilter.swift
[217/353] Compiling SwiftGodot AudioEffectBandPassFilter.swift
[218/353] Compiling SwiftGodot AudioEffectCapture.swift
[219/353] Compiling SwiftGodot AudioEffectChorus.swift
[220/353] Compiling SwiftGodot AudioEffectCompressor.swift
[221/353] Compiling SwiftGodot AudioEffectDelay.swift
[222/353] Compiling SwiftGodot AudioEffectDistortion.swift
[223/353] Compiling SwiftGodot AudioEffectEQ.swift
[224/353] Compiling SwiftGodot AudioEffectEQ10.swift
[225/403] Compiling SwiftGodot AStarGrid2D.swift
[226/403] Compiling SwiftGodot AcceptDialog.swift
[227/403] Compiling SwiftGodot AnimatableBody2D.swift
[228/403] Compiling SwiftGodot AnimatableBody3D.swift
[229/403] Compiling SwiftGodot AnimatedSprite2D.swift
[230/403] Compiling SwiftGodot AnimatedSprite3D.swift
[231/403] Compiling SwiftGodot AnimatedTexture.swift
[232/403] Compiling SwiftGodot Animation.swift
[233/403] Compiling SwiftGodot AnimationLibrary.swift
[234/403] Compiling SwiftGodot AnimationMixer.swift
[235/403] Compiling SwiftGodot AnimationNode.swift
[236/403] Compiling SwiftGodot AnimationNodeAdd2.swift
[237/403] Compiling SwiftGodot AnimationNodeAdd3.swift
[238/403] Compiling SwiftGodot AnimationNodeAnimation.swift
[239/403] Compiling SwiftGodot AnimationNodeBlend2.swift
[240/403] Compiling SwiftGodot AnimationNodeBlend3.swift
[241/403] Compiling SwiftGodot AnimationNodeBlendSpace1D.swift
[242/403] Compiling SwiftGodot AnimationNodeBlendSpace2D.swift
[243/403] Compiling SwiftGodot AnimationNodeBlendTree.swift
[244/403] Compiling SwiftGodot AnimationNodeOneShot.swift
[245/403] Compiling SwiftGodot AnimationNodeOutput.swift
[246/403] Compiling SwiftGodot AnimationNodeStateMachine.swift
[247/403] Compiling SwiftGodot AnimationNodeStateMachinePlayback.swift
[248/403] Compiling SwiftGodot AnimationNodeStateMachineTransition.swift
[249/403] Compiling SwiftGodot AnimationNodeSub2.swift
[250/428] Compiling SwiftGodot Bone2D.swift
[251/428] Compiling SwiftGodot BoneAttachment3D.swift
[252/428] Compiling SwiftGodot BoneMap.swift
[253/428] Compiling SwiftGodot BoxContainer.swift
[254/428] Compiling SwiftGodot BoxMesh.swift
[255/428] Compiling SwiftGodot BoxOccluder3D.swift
[256/428] Compiling SwiftGodot BoxShape3D.swift
[257/428] Compiling SwiftGodot Button.swift
[258/428] Compiling SwiftGodot ButtonGroup.swift
[259/428] Compiling SwiftGodot CPUParticles2D.swift
[260/428] Compiling SwiftGodot CPUParticles3D.swift
[261/428] Compiling SwiftGodot CSGBox3D.swift
[262/428] Compiling SwiftGodot CSGCombiner3D.swift
[263/428] Compiling SwiftGodot CSGCylinder3D.swift
[264/428] Compiling SwiftGodot CSGMesh3D.swift
[265/428] Compiling SwiftGodot CSGPolygon3D.swift
[266/428] Compiling SwiftGodot CSGPrimitive3D.swift
[267/428] Compiling SwiftGodot CSGShape3D.swift
[268/428] Compiling SwiftGodot CSGSphere3D.swift
[269/428] Compiling SwiftGodot CSGTorus3D.swift
[270/428] Compiling SwiftGodot CallbackTweener.swift
[271/428] Compiling SwiftGodot Camera2D.swift
[272/428] Compiling SwiftGodot Camera3D.swift
[273/428] Compiling SwiftGodot CameraAttributes.swift
[274/428] Compiling SwiftGodot CameraAttributesPhysical.swift
[275/453] Compiling SwiftGodot CollisionPolygon2D.swift
[276/453] Compiling SwiftGodot CollisionPolygon3D.swift
[277/453] Compiling SwiftGodot CollisionShape2D.swift
[278/453] Compiling SwiftGodot CollisionShape3D.swift
[279/453] Compiling SwiftGodot ColorPicker.swift
[280/453] Compiling SwiftGodot ColorPickerButton.swift
[281/453] Compiling SwiftGodot ColorRect.swift
[282/453] Compiling SwiftGodot Compositor.swift
[283/453] Compiling SwiftGodot CompositorEffect.swift
[284/453] Compiling SwiftGodot CompressedCubemap.swift
[285/453] Compiling SwiftGodot CompressedCubemapArray.swift
[286/453] Compiling SwiftGodot CompressedTexture2D.swift
[287/453] Compiling SwiftGodot CompressedTexture2DArray.swift
[288/453] Compiling SwiftGodot CompressedTexture3D.swift
[289/453] Compiling SwiftGodot CompressedTextureLayered.swift
[290/453] Compiling SwiftGodot ConcavePolygonShape2D.swift
[291/453] Compiling SwiftGodot ConcavePolygonShape3D.swift
[292/453] Compiling SwiftGodot ConeTwistJoint3D.swift
[293/453] Compiling SwiftGodot ConfigFile.swift
[294/453] Compiling SwiftGodot ConfirmationDialog.swift
[295/453] Compiling SwiftGodot Container.swift
[296/453] Compiling SwiftGodot Control.swift
[297/453] Compiling SwiftGodot ConvexPolygonShape2D.swift
[298/453] Compiling SwiftGodot ConvexPolygonShape3D.swift
[299/453] Compiling SwiftGodot Crypto.swift
[300/478] Compiling SwiftGodot CameraAttributesPractical.swift
[301/478] Compiling SwiftGodot CameraFeed.swift
[302/478] Compiling SwiftGodot CameraServer.swift
[303/478] Compiling SwiftGodot CameraTexture.swift
[304/478] Compiling SwiftGodot CanvasGroup.swift
[305/478] Compiling SwiftGodot CanvasItem.swift
[306/478] Compiling SwiftGodot CanvasItemMaterial.swift
[307/478] Compiling SwiftGodot CanvasLayer.swift
[308/478] Compiling SwiftGodot CanvasModulate.swift
[309/478] Compiling SwiftGodot CanvasTexture.swift
[310/478] Compiling SwiftGodot CapsuleMesh.swift
[311/478] Compiling SwiftGodot CapsuleShape2D.swift
[312/478] Compiling SwiftGodot CapsuleShape3D.swift
[313/478] Compiling SwiftGodot CenterContainer.swift
[314/478] Compiling SwiftGodot CharFXTransform.swift
[315/478] Compiling SwiftGodot CharacterBody2D.swift
[316/478] Compiling SwiftGodot CharacterBody3D.swift
[317/478] Compiling SwiftGodot CheckBox.swift
[318/478] Compiling SwiftGodot CheckButton.swift
[319/478] Compiling SwiftGodot CircleShape2D.swift
[320/478] Compiling SwiftGodot ClassDB.swift
[321/478] Compiling SwiftGodot CodeEdit.swift
[322/478] Compiling SwiftGodot CodeHighlighter.swift
[323/478] Compiling SwiftGodot CollisionObject2D.swift
[324/478] Compiling SwiftGodot CollisionObject3D.swift
[325/503] Compiling SwiftGodot EditorExportPlatformIOS.swift
[326/503] Compiling SwiftGodot EditorExportPlatformLinuxBSD.swift
[327/503] Compiling SwiftGodot EditorExportPlatformMacOS.swift
[328/503] Compiling SwiftGodot EditorExportPlatformPC.swift
[329/503] Compiling SwiftGodot EditorExportPlatformWeb.swift
[330/503] Compiling SwiftGodot EditorExportPlatformWindows.swift
[331/503] Compiling SwiftGodot EditorExportPlugin.swift
[332/503] Compiling SwiftGodot EditorFeatureProfile.swift
[333/503] Compiling SwiftGodot EditorFileDialog.swift
[334/503] Compiling SwiftGodot EditorFileSystem.swift
[335/503] Compiling SwiftGodot EditorFileSystemDirectory.swift
[336/503] Compiling SwiftGodot EditorFileSystemImportFormatSupportQuery.swift
[337/503] Compiling SwiftGodot EditorImportPlugin.swift
[338/503] Compiling SwiftGodot EditorInspector.swift
[339/503] Compiling SwiftGodot EditorInspectorPlugin.swift
[340/503] Compiling SwiftGodot EditorInterface.swift
[341/503] Compiling SwiftGodot EditorNode3DGizmo.swift
[342/503] Compiling SwiftGodot EditorNode3DGizmoPlugin.swift
[343/503] Compiling SwiftGodot EditorPaths.swift
[344/503] Compiling SwiftGodot EditorPlugin.swift
[345/503] Compiling SwiftGodot EditorProperty.swift
[346/503] Compiling SwiftGodot EditorResourceConversionPlugin.swift
[347/503] Compiling SwiftGodot EditorResourcePicker.swift
[348/503] Compiling SwiftGodot EditorResourcePreview.swift
[349/503] Compiling SwiftGodot EditorResourcePreviewGenerator.swift
[350/528] Compiling SwiftGodot CryptoKey.swift
[351/528] Compiling SwiftGodot Cubemap.swift
[352/528] Compiling SwiftGodot CubemapArray.swift
[353/528] Compiling SwiftGodot Curve.swift
[354/528] Compiling SwiftGodot Curve2D.swift
[355/528] Compiling SwiftGodot Curve3D.swift
[356/528] Compiling SwiftGodot CurveTexture.swift
[357/528] Compiling SwiftGodot CurveXYZTexture.swift
[358/528] Compiling SwiftGodot CylinderMesh.swift
[359/528] Compiling SwiftGodot CylinderShape3D.swift
[360/528] Compiling SwiftGodot DTLSServer.swift
[361/528] Compiling SwiftGodot DampedSpringJoint2D.swift
[362/528] Compiling SwiftGodot Decal.swift
[363/528] Compiling SwiftGodot DirAccess.swift
[364/528] Compiling SwiftGodot DirectionalLight2D.swift
[365/528] Compiling SwiftGodot DirectionalLight3D.swift
[366/528] Compiling SwiftGodot DisplayServer.swift
[367/528] Compiling SwiftGodot ENetConnection.swift
[368/528] Compiling SwiftGodot ENetMultiplayerPeer.swift
[369/528] Compiling SwiftGodot ENetPacketPeer.swift
[370/528] Compiling SwiftGodot EditorCommandPalette.swift
[371/528] Compiling SwiftGodot EditorDebuggerPlugin.swift
[372/528] Compiling SwiftGodot EditorDebuggerSession.swift
[373/528] Compiling SwiftGodot EditorExportPlatform.swift
[374/528] Compiling SwiftGodot EditorExportPlatformAndroid.swift
[375/553] Compiling SwiftGodot PackedVector2Array.swift
[376/553] Compiling SwiftGodot PackedVector3Array.swift
[377/553] Compiling SwiftGodot PackedVector4Array.swift
[378/553] Compiling SwiftGodot Plane.swift
[379/553] Compiling SwiftGodot Projection.swift
[380/553] Compiling SwiftGodot Quaternion.swift
[381/553] Compiling SwiftGodot RID.swift
[382/553] Compiling SwiftGodot Rect2.swift
[383/553] Compiling SwiftGodot Rect2i.swift
[384/553] Compiling SwiftGodot Signal.swift
[385/553] Compiling SwiftGodot String.swift
[386/553] Compiling SwiftGodot StringName.swift
[387/553] Compiling SwiftGodot Transform2D.swift
[388/553] Compiling SwiftGodot Transform3D.swift
[389/553] Compiling SwiftGodot Vector2.swift
[390/553] Compiling SwiftGodot Vector2i.swift
[391/553] Compiling SwiftGodot Vector3.swift
[392/553] Compiling SwiftGodot Vector3i.swift
[393/553] Compiling SwiftGodot Vector4.swift
[394/553] Compiling SwiftGodot Vector4i.swift
[395/553] Compiling SwiftGodot core-defs.swift
[396/553] Compiling SwiftGodot utility.swift
[397/553] Compiling SwiftGodot AESContext.swift
[398/553] Compiling SwiftGodot AStar2D.swift
[399/553] Compiling SwiftGodot AStar3D.swift
[400/553] Compiling SwiftGodot PhysicsDirectSpaceState2D+IntersectRayResult.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[401/553] Compiling SwiftGodot PhysicsDirectSpaceState3D+IntersectRayResult.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[402/553] Compiling SwiftGodot RefCountedExtensions.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[403/553] Compiling SwiftGodot GodotInterface.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[404/553] Compiling SwiftGodot MacroDefs.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[405/553] Compiling SwiftGodot LinearInterpolation.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[406/553] Compiling SwiftGodot RotationConversion.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[407/553] Compiling SwiftGodot Snapped.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[408/553] Compiling SwiftGodot SwiftGodot.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[409/553] Compiling SwiftGodot Variant.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[410/553] Compiling SwiftGodot AABB.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[411/553] Compiling SwiftGodot Array.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[412/553] Compiling SwiftGodot Basis.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[413/553] Compiling SwiftGodot Callable.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[414/553] Compiling SwiftGodot Color.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[415/553] Compiling SwiftGodot Dictionary.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[416/553] Compiling SwiftGodot Nil.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[417/553] Compiling SwiftGodot NodePath.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[418/553] Compiling SwiftGodot PackedByteArray.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[419/553] Compiling SwiftGodot PackedColorArray.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[420/553] Compiling SwiftGodot PackedFloat32Array.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[421/553] Compiling SwiftGodot PackedFloat64Array.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[422/553] Compiling SwiftGodot PackedInt32Array.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[423/553] Compiling SwiftGodot PackedInt64Array.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[424/553] Compiling SwiftGodot PackedStringArray.swift
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Variant.swift:178:53: error: integer literal '3735936685' overflows when stored into 'Int'
176 |
177 | public var description: String {
178 | var ret = GDExtensionStringPtr (bitPattern: 0xdeaddead)
| `- error: integer literal '3735936685' overflows when stored into 'Int'
179 | gi.variant_stringify (&content, &ret)
180 |
[425/603] Compiling SwiftGodot EditorResourceTooltipPlugin.swift
[426/603] Compiling SwiftGodot EditorSceneFormatImporter.swift
[427/603] Compiling SwiftGodot EditorSceneFormatImporterBlend.swift
[428/603] Compiling SwiftGodot EditorSceneFormatImporterFBX2GLTF.swift
[429/603] Compiling SwiftGodot EditorSceneFormatImporterGLTF.swift
[430/603] Compiling SwiftGodot EditorSceneFormatImporterUFBX.swift
[431/603] Compiling SwiftGodot EditorScenePostImport.swift
[432/603] Compiling SwiftGodot EditorScenePostImportPlugin.swift
[433/603] Compiling SwiftGodot EditorScript.swift
[434/603] Compiling SwiftGodot EditorScriptPicker.swift
[435/603] Compiling SwiftGodot EditorSelection.swift
[436/603] Compiling SwiftGodot EditorSettings.swift
[437/603] Compiling SwiftGodot EditorSpinSlider.swift
[438/603] Compiling SwiftGodot EditorSyntaxHighlighter.swift
[439/603] Compiling SwiftGodot EditorTranslationParserPlugin.swift
[440/603] Compiling SwiftGodot EditorUndoRedoManager.swift
[441/603] Compiling SwiftGodot EditorVCSInterface.swift
[442/603] Compiling SwiftGodot EncodedObjectAsID.swift
[443/603] Compiling SwiftGodot Engine.swift
[444/603] Compiling SwiftGodot EngineDebugger.swift
[445/603] Compiling SwiftGodot EngineProfiler.swift
[446/603] Compiling SwiftGodot Environment.swift
[447/603] Compiling SwiftGodot Expression.swift
[448/603] Compiling SwiftGodot FBXDocument.swift
[449/603] Compiling SwiftGodot FBXState.swift
[450/628] Compiling SwiftGodot ImageTextureLayered.swift
[451/628] Compiling SwiftGodot ImmediateMesh.swift
[452/628] Compiling SwiftGodot ImporterMesh.swift
[453/628] Compiling SwiftGodot ImporterMeshInstance3D.swift
[454/628] Compiling SwiftGodot Input.swift
[455/628] Compiling SwiftGodot InputEvent.swift
[456/628] Compiling SwiftGodot InputEventAction.swift
[457/628] Compiling SwiftGodot InputEventFromWindow.swift
[458/628] Compiling SwiftGodot InputEventGesture.swift
[459/628] Compiling SwiftGodot InputEventJoypadButton.swift
[460/628] Compiling SwiftGodot InputEventJoypadMotion.swift
[461/628] Compiling SwiftGodot InputEventKey.swift
[462/628] Compiling SwiftGodot InputEventMIDI.swift
[463/628] Compiling SwiftGodot InputEventMagnifyGesture.swift
[464/628] Compiling SwiftGodot InputEventMouse.swift
[465/628] Compiling SwiftGodot InputEventMouseButton.swift
[466/628] Compiling SwiftGodot InputEventMouseMotion.swift
[467/628] Compiling SwiftGodot InputEventPanGesture.swift
[468/628] Compiling SwiftGodot InputEventScreenDrag.swift
[469/628] Compiling SwiftGodot InputEventScreenTouch.swift
[470/628] Compiling SwiftGodot InputEventShortcut.swift
[471/628] Compiling SwiftGodot InputEventWithModifiers.swift
[472/628] Compiling SwiftGodot InputMap.swift
[473/628] Compiling SwiftGodot InstancePlaceholder.swift
[474/628] Compiling SwiftGodot IntervalTweener.swift
[475/653] Compiling SwiftGodot GLTFPhysicsShape.swift
[476/653] Compiling SwiftGodot GLTFSkeleton.swift
[477/653] Compiling SwiftGodot GLTFSkin.swift
[478/653] Compiling SwiftGodot GLTFSpecGloss.swift
[479/653] Compiling SwiftGodot GLTFState.swift
[480/653] Compiling SwiftGodot GLTFTexture.swift
[481/653] Compiling SwiftGodot GLTFTextureSampler.swift
[482/653] Compiling SwiftGodot GPUParticles2D.swift
[483/653] Compiling SwiftGodot GPUParticles3D.swift
[484/653] Compiling SwiftGodot GPUParticlesAttractor3D.swift
[485/653] Compiling SwiftGodot GPUParticlesAttractorBox3D.swift
[486/653] Compiling SwiftGodot GPUParticlesAttractorSphere3D.swift
[487/653] Compiling SwiftGodot GPUParticlesAttractorVectorField3D.swift
[488/653] Compiling SwiftGodot GPUParticlesCollision3D.swift
[489/653] Compiling SwiftGodot GPUParticlesCollisionBox3D.swift
[490/653] Compiling SwiftGodot GPUParticlesCollisionHeightField3D.swift
[491/653] Compiling SwiftGodot GPUParticlesCollisionSDF3D.swift
[492/653] Compiling SwiftGodot GPUParticlesCollisionSphere3D.swift
[493/653] Compiling SwiftGodot Generic6DOFJoint3D.swift
[494/653] Compiling SwiftGodot Geometry2D.swift
[495/653] Compiling SwiftGodot Geometry3D.swift
[496/653] Compiling SwiftGodot GeometryInstance3D.swift
[497/653] Compiling SwiftGodot Gradient.swift
[498/653] Compiling SwiftGodot GradientTexture1D.swift
[499/653] Compiling SwiftGodot GradientTexture2D.swift
[500/678] Compiling SwiftGodot LinkButton.swift
[501/678] Compiling SwiftGodot MainLoop.swift
[502/678] Compiling SwiftGodot MarginContainer.swift
[503/678] Compiling SwiftGodot Marker2D.swift
[504/678] Compiling SwiftGodot Marker3D.swift
[505/678] Compiling SwiftGodot Marshalls.swift
[506/678] Compiling SwiftGodot Material.swift
[507/678] Compiling SwiftGodot MenuBar.swift
[508/678] Compiling SwiftGodot MenuButton.swift
[509/678] Compiling SwiftGodot Mesh.swift
[510/678] Compiling SwiftGodot MeshConvexDecompositionSettings.swift
[511/678] Compiling SwiftGodot MeshDataTool.swift
[512/678] Compiling SwiftGodot MeshInstance2D.swift
[513/678] Compiling SwiftGodot MeshInstance3D.swift
[514/678] Compiling SwiftGodot MeshLibrary.swift
[515/678] Compiling SwiftGodot MeshTexture.swift
[516/678] Compiling SwiftGodot MethodTweener.swift
[517/678] Compiling SwiftGodot MissingNode.swift
[518/678] Compiling SwiftGodot MissingResource.swift
[519/678] Compiling SwiftGodot MobileVRInterface.swift
[520/678] Compiling SwiftGodot MovieWriter.swift
[521/678] Compiling SwiftGodot MultiMesh.swift
[522/678] Compiling SwiftGodot MultiMeshInstance2D.swift
[523/678] Compiling SwiftGodot MultiMeshInstance3D.swift
[524/678] Compiling SwiftGodot MultiplayerAPI.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[525/703] Emitting module SwiftGodot
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:25:8: error: The concurrency NIOLock module was unable to identify your C library.
23 | import Musl
24 | #else
25 | #error("The concurrency NIOLock module was unable to identify your C library.")
| `- error: The concurrency NIOLock module was unable to identify your C library.
26 | #endif
27 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:33:27: error: cannot find type 'pthread_mutex_t' in scope
31 | #else
32 | @usableFromInline
33 | typealias LockPrimitive = pthread_mutex_t
| `- error: cannot find type 'pthread_mutex_t' in scope
34 | #endif
35 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:47:20: error: cannot find 'pthread_mutexattr_t' in scope
45 | InitializeSRWLock(mutex)
46 | #else
47 | var attr = pthread_mutexattr_t()
| `- error: cannot find 'pthread_mutexattr_t' in scope
48 | pthread_mutexattr_init(&attr)
49 |
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:48:9: error: cannot find 'pthread_mutexattr_init' in scope
46 | #else
47 | var attr = pthread_mutexattr_t()
48 | pthread_mutexattr_init(&attr)
| `- error: cannot find 'pthread_mutexattr_init' in scope
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:50:19: error: cannot find 'pthread_mutex_init' in scope
48 | pthread_mutexattr_init(&attr)
49 |
50 | let err = pthread_mutex_init(mutex, &attr)
| `- error: cannot find 'pthread_mutex_init' in scope
51 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
52 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:62:19: error: cannot find 'pthread_mutex_destroy' in scope
60 | // SRWLOCK does not need to be free'd
61 | #else
62 | let err = pthread_mutex_destroy(mutex)
| `- error: cannot find 'pthread_mutex_destroy' in scope
63 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
64 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:74:19: error: cannot find 'pthread_mutex_lock' in scope
72 | AcquireSRWLockExclusive(mutex)
73 | #else
74 | let err = pthread_mutex_lock(mutex)
| `- error: cannot find 'pthread_mutex_lock' in scope
75 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
76 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:86:19: error: cannot find 'pthread_mutex_unlock' in scope
84 | ReleaseSRWLockExclusive(mutex)
85 | #else
86 | let err = pthread_mutex_unlock(mutex)
| `- error: cannot find 'pthread_mutex_unlock' in scope
87 | precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
88 | #endif
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:125:27: error: type of expression is ambiguous without a type annotation
123 | @inlinable
124 | static func create(value: Value) -> Self {
125 | let buffer = Self.create(minimumCapacity: 1) { _ in
| `- error: type of expression is ambiguous without a type annotation
126 | return value
127 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:139:14: error: type of expression is ambiguous without a type annotation
137 | @inlinable
138 | func lock() {
139 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
140 | LockOperations.lock(lockPtr)
141 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:146:14: error: type of expression is ambiguous without a type annotation
144 | @inlinable
145 | func unlock() {
146 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
147 | LockOperations.unlock(lockPtr)
148 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:153:14: error: type of expression is ambiguous without a type annotation
151 | @inlinable
152 | deinit {
153 | self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
154 | LockOperations.destroy(lockPtr)
155 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:160:18: error: type of expression is ambiguous without a type annotation
158 | @inlinable
159 | func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
160 | try self.withUnsafeMutablePointerToElements { lockPtr in
| `- error: type of expression is ambiguous without a type annotation
161 | return try body(lockPtr)
162 | }
/host/spi-builder-workspace/.build/checkouts/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:167:18: error: type of expression is ambiguous without a type annotation
165 | @inlinable
166 | func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
167 | try self.withUnsafeMutablePointers { valuePtr, lockPtr in
| `- error: type of expression is ambiguous without a type annotation
168 | LockOperations.lock(lockPtr)
169 | defer { LockOperations.unlock(lockPtr) }
[526/728] Compiling SwiftGodot FastNoiseLite.swift
[527/728] Compiling SwiftGodot FileAccess.swift
[528/728] Compiling SwiftGodot FileDialog.swift
[529/728] Compiling SwiftGodot FileSystemDock.swift
[530/728] Compiling SwiftGodot FlowContainer.swift
[531/728] Compiling SwiftGodot FogMaterial.swift
[532/728] Compiling SwiftGodot FogVolume.swift
[533/728] Compiling SwiftGodot Font.swift
[534/728] Compiling SwiftGodot FontFile.swift
[535/728] Compiling SwiftGodot FontVariation.swift
[536/728] Compiling SwiftGodot FramebufferCacheRD.swift
[537/728] Compiling SwiftGodot GDExtension.swift
[538/728] Compiling SwiftGodot GDExtensionManager.swift
[539/728] Compiling SwiftGodot GDScript.swift
[540/728] Compiling SwiftGodot GLTFAccessor.swift
[541/728] Compiling SwiftGodot GLTFAnimation.swift
[542/728] Compiling SwiftGodot GLTFBufferView.swift
[543/728] Compiling SwiftGodot GLTFCamera.swift
[544/728] Compiling SwiftGodot GLTFDocument.swift
[545/728] Compiling SwiftGodot GLTFDocumentExtension.swift
[546/728] Compiling SwiftGodot GLTFDocumentExtensionConvertImporterMesh.swift
[547/728] Compiling SwiftGodot GLTFLight.swift
[548/728] Compiling SwiftGodot GLTFMesh.swift
[549/728] Compiling SwiftGodot GLTFNode.swift
[550/728] Compiling SwiftGodot GLTFPhysicsBody.swift
[551/753] Compiling SwiftGodot GraphEdit.swift
[552/753] Compiling SwiftGodot GraphElement.swift
[553/753] Compiling SwiftGodot GraphFrame.swift
[554/753] Compiling SwiftGodot GraphNode.swift
[555/753] Compiling SwiftGodot GridContainer.swift
[556/753] Compiling SwiftGodot GridMap.swift
[557/753] Compiling SwiftGodot GrooveJoint2D.swift
[558/753] Compiling SwiftGodot HBoxContainer.swift
[559/753] Compiling SwiftGodot HFlowContainer.swift
[560/753] Compiling SwiftGodot HMACContext.swift
[561/753] Compiling SwiftGodot HScrollBar.swift
[562/753] Compiling SwiftGodot HSeparator.swift
[563/753] Compiling SwiftGodot HSlider.swift
[564/753] Compiling SwiftGodot HSplitContainer.swift
[565/753] Compiling SwiftGodot HTTPClient.swift
[566/753] Compiling SwiftGodot HTTPRequest.swift
[567/753] Compiling SwiftGodot HashingContext.swift
[568/753] Compiling SwiftGodot HeightMapShape3D.swift
[569/753] Compiling SwiftGodot HingeJoint3D.swift
[570/753] Compiling SwiftGodot IP.swift
[571/753] Compiling SwiftGodot Image.swift
[572/753] Compiling SwiftGodot ImageFormatLoader.swift
[573/753] Compiling SwiftGodot ImageFormatLoaderExtension.swift
[574/753] Compiling SwiftGodot ImageTexture.swift
[575/753] Compiling SwiftGodot ImageTexture3D.swift
[576/778] Compiling SwiftGodot ItemList.swift
[577/778] Compiling SwiftGodot JNISingleton.swift
[578/778] Compiling SwiftGodot JSON.swift
[579/778] Compiling SwiftGodot JSONRPC.swift
[580/778] Compiling SwiftGodot JavaClass.swift
[581/778] Compiling SwiftGodot JavaClassWrapper.swift
[582/778] Compiling SwiftGodot JavaScriptBridge.swift
[583/778] Compiling SwiftGodot JavaScriptObject.swift
[584/778] Compiling SwiftGodot Joint2D.swift
[585/778] Compiling SwiftGodot Joint3D.swift
[586/778] Compiling SwiftGodot KinematicCollision2D.swift
[587/778] Compiling SwiftGodot KinematicCollision3D.swift
[588/778] Compiling SwiftGodot Label.swift
[589/778] Compiling SwiftGodot Label3D.swift
[590/778] Compiling SwiftGodot LabelSettings.swift
[591/778] Compiling SwiftGodot Light2D.swift
[592/778] Compiling SwiftGodot Light3D.swift
[593/778] Compiling SwiftGodot LightOccluder2D.swift
[594/778] Compiling SwiftGodot LightmapGI.swift
[595/778] Compiling SwiftGodot LightmapGIData.swift
[596/778] Compiling SwiftGodot LightmapProbe.swift
[597/778] Compiling SwiftGodot Lightmapper.swift
[598/778] Compiling SwiftGodot LightmapperRD.swift
[599/778] Compiling SwiftGodot Line2D.swift
[600/778] Compiling SwiftGodot LineEdit.swift
[601/803] Compiling SwiftGodot OpenXRCompositionLayerEquirect.swift
[602/803] Compiling SwiftGodot OpenXRCompositionLayerQuad.swift
[603/803] Compiling SwiftGodot OpenXRExtensionWrapperExtension.swift
[604/803] Compiling SwiftGodot OpenXRHand.swift
[605/803] Compiling SwiftGodot OpenXRIPBinding.swift
[606/803] Compiling SwiftGodot OpenXRInteractionProfile.swift
[607/803] Compiling SwiftGodot OpenXRInteractionProfileMetadata.swift
[608/803] Compiling SwiftGodot OpenXRInterface.swift
[609/803] Compiling SwiftGodot OptimizedTranslation.swift
[610/803] Compiling SwiftGodot OptionButton.swift
[611/803] Compiling SwiftGodot PCKPacker.swift
[612/803] Compiling SwiftGodot PackedDataContainer.swift
[613/803] Compiling SwiftGodot PackedDataContainerRef.swift
[614/803] Compiling SwiftGodot PackedScene.swift
[615/803] Compiling SwiftGodot PacketPeer.swift
[616/803] Compiling SwiftGodot PacketPeerDTLS.swift
[617/803] Compiling SwiftGodot PacketPeerExtension.swift
[618/803] Compiling SwiftGodot PacketPeerStream.swift
[619/803] Compiling SwiftGodot PacketPeerUDP.swift
[620/803] Compiling SwiftGodot Panel.swift
[621/803] Compiling SwiftGodot PanelContainer.swift
[622/803] Compiling SwiftGodot PanoramaSkyMaterial.swift
[623/803] Compiling SwiftGodot Parallax2D.swift
[624/803] Compiling SwiftGodot ParallaxBackground.swift
[625/803] Compiling SwiftGodot ParallaxLayer.swift
[626/828] Compiling SwiftGodot PointMesh.swift
[627/828] Compiling SwiftGodot Polygon2D.swift
[628/828] Compiling SwiftGodot PolygonOccluder3D.swift
[629/828] Compiling SwiftGodot PolygonPathFinder.swift
[630/828] Compiling SwiftGodot Popup.swift
[631/828] Compiling SwiftGodot PopupMenu.swift
[632/828] Compiling SwiftGodot PopupPanel.swift
[633/828] Compiling SwiftGodot PortableCompressedTexture2D.swift
[634/828] Compiling SwiftGodot PrimitiveMesh.swift
[635/828] Compiling SwiftGodot PrismMesh.swift
[636/828] Compiling SwiftGodot ProceduralSkyMaterial.swift
[637/828] Compiling SwiftGodot ProgressBar.swift
[638/828] Compiling SwiftGodot ProjectSettings.swift
[639/828] Compiling SwiftGodot PropertyTweener.swift
[640/828] Compiling SwiftGodot QuadMesh.swift
[641/828] Compiling SwiftGodot QuadOccluder3D.swift
[642/828] Compiling SwiftGodot RDAttachmentFormat.swift
[643/828] Compiling SwiftGodot RDFramebufferPass.swift
[644/828] Compiling SwiftGodot RDPipelineColorBlendState.swift
[645/828] Compiling SwiftGodot RDPipelineColorBlendStateAttachment.swift
[646/828] Compiling SwiftGodot RDPipelineDepthStencilState.swift
[647/828] Compiling SwiftGodot RDPipelineMultisampleState.swift
[648/828] Compiling SwiftGodot RDPipelineRasterizationState.swift
[649/828] Compiling SwiftGodot RDPipelineSpecializationConstant.swift
[650/828] Compiling SwiftGodot RDSamplerState.swift
[651/853] Compiling SwiftGodot RDShaderFile.swift
[652/853] Compiling SwiftGodot RDShaderSPIRV.swift
[653/853] Compiling SwiftGodot RDShaderSource.swift
[654/853] Compiling SwiftGodot RDTextureFormat.swift
[655/853] Compiling SwiftGodot RDTextureView.swift
[656/853] Compiling SwiftGodot RDUniform.swift
[657/853] Compiling SwiftGodot RDVertexAttribute.swift
[658/853] Compiling SwiftGodot RandomNumberGenerator.swift
[659/853] Compiling SwiftGodot Range.swift
[660/853] Compiling SwiftGodot RayCast2D.swift
[661/853] Compiling SwiftGodot RayCast3D.swift
[662/853] Compiling SwiftGodot RectangleShape2D.swift
[663/853] Compiling SwiftGodot RefCounted.swift
[664/853] Compiling SwiftGodot ReferenceRect.swift
[665/853] Compiling SwiftGodot ReflectionProbe.swift
[666/853] Compiling SwiftGodot RegEx.swift
[667/853] Compiling SwiftGodot RegExMatch.swift
[668/853] Compiling SwiftGodot RemoteTransform2D.swift
[669/853] Compiling SwiftGodot RemoteTransform3D.swift
[670/853] Compiling SwiftGodot RenderData.swift
[671/853] Compiling SwiftGodot RenderDataExtension.swift
[672/853] Compiling SwiftGodot RenderDataRD.swift
[673/853] Compiling SwiftGodot RenderSceneBuffers.swift
[674/853] Compiling SwiftGodot RenderSceneBuffersConfiguration.swift
[675/853] Compiling SwiftGodot RenderSceneBuffersExtension.swift
[676/878] Compiling SwiftGodot ParticleProcessMaterial.swift
[677/878] Compiling SwiftGodot Path2D.swift
[678/878] Compiling SwiftGodot Path3D.swift
[679/878] Compiling SwiftGodot PathFollow2D.swift
[680/878] Compiling SwiftGodot PathFollow3D.swift
[681/878] Compiling SwiftGodot Performance.swift
[682/878] Compiling SwiftGodot PhysicalBone2D.swift
[683/878] Compiling SwiftGodot PhysicalBone3D.swift
[684/878] Compiling SwiftGodot PhysicalBoneSimulator3D.swift
[685/878] Compiling SwiftGodot PhysicalSkyMaterial.swift
[686/878] Compiling SwiftGodot PhysicsBody2D.swift
[687/878] Compiling SwiftGodot PhysicsBody3D.swift
[688/878] Compiling SwiftGodot PhysicsDirectBodyState2D.swift
[689/878] Compiling SwiftGodot PhysicsDirectBodyState2DExtension.swift
[690/878] Compiling SwiftGodot PhysicsDirectBodyState3D.swift
[691/878] Compiling SwiftGodot PhysicsDirectBodyState3DExtension.swift
[692/878] Compiling SwiftGodot PhysicsDirectSpaceState2D.swift
[693/878] Compiling SwiftGodot PhysicsDirectSpaceState2DExtension.swift
[694/878] Compiling SwiftGodot PhysicsDirectSpaceState3D.swift
[695/878] Compiling SwiftGodot PhysicsDirectSpaceState3DExtension.swift
[696/878] Compiling SwiftGodot PhysicsMaterial.swift
[697/878] Compiling SwiftGodot PhysicsPointQueryParameters2D.swift
[698/878] Compiling SwiftGodot PhysicsPointQueryParameters3D.swift
[699/878] Compiling SwiftGodot PhysicsRayQueryParameters2D.swift
[700/878] Compiling SwiftGodot PhysicsRayQueryParameters3D.swift
[701/903] Compiling SwiftGodot MultiplayerAPIExtension.swift
[702/903] Compiling SwiftGodot MultiplayerPeer.swift
[703/903] Compiling SwiftGodot MultiplayerPeerExtension.swift
[704/903] Compiling SwiftGodot MultiplayerSpawner.swift
[705/903] Compiling SwiftGodot MultiplayerSynchronizer.swift
[706/903] Compiling SwiftGodot Mutex.swift
[707/903] Compiling SwiftGodot NativeMenu.swift
[708/903] Compiling SwiftGodot NavigationAgent2D.swift
[709/903] Compiling SwiftGodot NavigationAgent3D.swift
[710/903] Compiling SwiftGodot NavigationLink2D.swift
[711/903] Compiling SwiftGodot NavigationLink3D.swift
[712/903] Compiling SwiftGodot NavigationMesh.swift
[713/903] Compiling SwiftGodot NavigationMeshGenerator.swift
[714/903] Compiling SwiftGodot NavigationMeshSourceGeometryData2D.swift
[715/903] Compiling SwiftGodot NavigationMeshSourceGeometryData3D.swift
[716/903] Compiling SwiftGodot NavigationObstacle2D.swift
[717/903] Compiling SwiftGodot NavigationObstacle3D.swift
[718/903] Compiling SwiftGodot NavigationPathQueryParameters2D.swift
[719/903] Compiling SwiftGodot NavigationPathQueryParameters3D.swift
[720/903] Compiling SwiftGodot NavigationPathQueryResult2D.swift
[721/903] Compiling SwiftGodot NavigationPathQueryResult3D.swift
[722/903] Compiling SwiftGodot NavigationPolygon.swift
[723/903] Compiling SwiftGodot NavigationRegion2D.swift
[724/903] Compiling SwiftGodot NavigationRegion3D.swift
[725/903] Compiling SwiftGodot NavigationServer2D.swift
[726/928] Compiling SwiftGodot PhysicsServer2D.swift
[727/928] Compiling SwiftGodot PhysicsServer2DExtension.swift
[728/928] Compiling SwiftGodot PhysicsServer2DManager.swift
[729/928] Compiling SwiftGodot PhysicsServer3D.swift
[730/928] Compiling SwiftGodot PhysicsServer3DExtension.swift
[731/928] Compiling SwiftGodot PhysicsServer3DManager.swift
[732/928] Compiling SwiftGodot PhysicsServer3DRenderingServerHandler.swift
[733/928] Compiling SwiftGodot PhysicsShapeQueryParameters2D.swift
[734/928] Compiling SwiftGodot PhysicsShapeQueryParameters3D.swift
[735/928] Compiling SwiftGodot PhysicsTestMotionParameters2D.swift
[736/928] Compiling SwiftGodot PhysicsTestMotionParameters3D.swift
[737/928] Compiling SwiftGodot PhysicsTestMotionResult2D.swift
[738/928] Compiling SwiftGodot PhysicsTestMotionResult3D.swift
[739/928] Compiling SwiftGodot PinJoint2D.swift
[740/928] Compiling SwiftGodot PinJoint3D.swift
[741/928] Compiling SwiftGodot PlaceholderCubemap.swift
[742/928] Compiling SwiftGodot PlaceholderCubemapArray.swift
[743/928] Compiling SwiftGodot PlaceholderMaterial.swift
[744/928] Compiling SwiftGodot PlaceholderMesh.swift
[745/928] Compiling SwiftGodot PlaceholderTexture2D.swift
[746/928] Compiling SwiftGodot PlaceholderTexture2DArray.swift
[747/928] Compiling SwiftGodot PlaceholderTexture3D.swift
[748/928] Compiling SwiftGodot PlaceholderTextureLayered.swift
[749/928] Compiling SwiftGodot PlaneMesh.swift
[750/928] Compiling SwiftGodot PointLight2D.swift
[751/952] Compiling SwiftGodot NavigationServer3D.swift
[752/952] Compiling SwiftGodot NinePatchRect.swift
[753/952] Compiling SwiftGodot Node.swift
[754/952] Compiling SwiftGodot Node2D.swift
[755/952] Compiling SwiftGodot Node3D.swift
[756/952] Compiling SwiftGodot Node3DGizmo.swift
[757/952] Compiling SwiftGodot Noise.swift
[758/952] Compiling SwiftGodot NoiseTexture2D.swift
[759/952] Compiling SwiftGodot NoiseTexture3D.swift
[760/952] Compiling SwiftGodot ORMMaterial3D.swift
[761/952] Compiling SwiftGodot OS.swift
[762/952] Compiling SwiftGodot Object.swift
[763/952] Compiling SwiftGodot Occluder3D.swift
[764/952] Compiling SwiftGodot OccluderInstance3D.swift
[765/952] Compiling SwiftGodot OccluderPolygon2D.swift
[766/952] Compiling SwiftGodot OfflineMultiplayerPeer.swift
[767/952] Compiling SwiftGodot OggPacketSequence.swift
[768/952] Compiling SwiftGodot OggPacketSequencePlayback.swift
[769/952] Compiling SwiftGodot OmniLight3D.swift
[770/952] Compiling SwiftGodot OpenXRAPIExtension.swift
[771/952] Compiling SwiftGodot OpenXRAction.swift
[772/952] Compiling SwiftGodot OpenXRActionMap.swift
[773/952] Compiling SwiftGodot OpenXRActionSet.swift
[774/952] Compiling SwiftGodot OpenXRCompositionLayer.swift
[775/952] Compiling SwiftGodot OpenXRCompositionLayerCylinder.swift
[776/976] Compiling SwiftGodot RenderSceneBuffersRD.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[777/976] Compiling SwiftGodot RenderSceneData.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[778/976] Compiling SwiftGodot RenderSceneDataExtension.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[779/976] Compiling SwiftGodot RenderSceneDataRD.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[780/976] Compiling SwiftGodot RenderingDevice.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[781/976] Compiling SwiftGodot RenderingServer.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[782/976] Compiling SwiftGodot Resource.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[783/976] Compiling SwiftGodot ResourceFormatLoader.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[784/976] Compiling SwiftGodot ResourceFormatSaver.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[785/976] Compiling SwiftGodot ResourceImporter.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[786/976] Compiling SwiftGodot ResourceImporterBMFont.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[787/976] Compiling SwiftGodot ResourceImporterBitMap.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[788/976] Compiling SwiftGodot ResourceImporterCSVTranslation.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[789/976] Compiling SwiftGodot ResourceImporterDynamicFont.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[790/976] Compiling SwiftGodot ResourceImporterImage.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[791/976] Compiling SwiftGodot ResourceImporterImageFont.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[792/976] Compiling SwiftGodot ResourceImporterLayeredTexture.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[793/976] Compiling SwiftGodot ResourceImporterMP3.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[794/976] Compiling SwiftGodot ResourceImporterOBJ.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[795/976] Compiling SwiftGodot ResourceImporterOggVorbis.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[796/976] Compiling SwiftGodot ResourceImporterScene.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[797/976] Compiling SwiftGodot ResourceImporterShaderFile.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[798/976] Compiling SwiftGodot ResourceImporterTexture.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[799/976] Compiling SwiftGodot ResourceImporterTextureAtlas.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[800/976] Compiling SwiftGodot ResourceImporterWAV.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:279:71: error: integer literal '34359738368' overflows when stored into 'Int'
277 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
278 | /// Flag used to record the second iteration of the mesh version flag. The primary difference between this and .arrayFlagFormatVersion1 is that this version supports .arrayFlagCompressAttributes and in this version vertex positions are de-interleaved from normals and tangents.
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:281:77: error: integer literal '34359738368' overflows when stored into 'Int'
279 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
280 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
281 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
282 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
283 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[801/1000] Compiling SwiftGodot SkeletonModifier3D.swift
[802/1000] Compiling SwiftGodot SkeletonProfile.swift
[803/1000] Compiling SwiftGodot SkeletonProfileHumanoid.swift
[804/1000] Compiling SwiftGodot Skin.swift
[805/1000] Compiling SwiftGodot SkinReference.swift
[806/1000] Compiling SwiftGodot Sky.swift
[807/1000] Compiling SwiftGodot Slider.swift
[808/1000] Compiling SwiftGodot SliderJoint3D.swift
[809/1000] Compiling SwiftGodot SoftBody3D.swift
[810/1000] Compiling SwiftGodot SphereMesh.swift
[811/1000] Compiling SwiftGodot SphereOccluder3D.swift
[812/1000] Compiling SwiftGodot SphereShape3D.swift
[813/1000] Compiling SwiftGodot SpinBox.swift
[814/1000] Compiling SwiftGodot SplitContainer.swift
[815/1000] Compiling SwiftGodot SpotLight3D.swift
[816/1000] Compiling SwiftGodot SpringArm3D.swift
[817/1000] Compiling SwiftGodot Sprite2D.swift
[818/1000] Compiling SwiftGodot Sprite3D.swift
[819/1000] Compiling SwiftGodot SpriteBase3D.swift
[820/1000] Compiling SwiftGodot SpriteFrames.swift
[821/1000] Compiling SwiftGodot StandardMaterial3D.swift
[822/1000] Compiling SwiftGodot StaticBody2D.swift
[823/1000] Compiling SwiftGodot StaticBody3D.swift
[824/1000] Compiling SwiftGodot StatusIndicator.swift
[825/1000] Compiling SwiftGodot StreamPeer.swift
[826/1024] Compiling SwiftGodot Semaphore.swift
[827/1024] Compiling SwiftGodot SeparationRayShape2D.swift
[828/1024] Compiling SwiftGodot SeparationRayShape3D.swift
[829/1024] Compiling SwiftGodot Separator.swift
[830/1024] Compiling SwiftGodot Shader.swift
[831/1024] Compiling SwiftGodot ShaderGlobalsOverride.swift
[832/1024] Compiling SwiftGodot ShaderInclude.swift
[833/1024] Compiling SwiftGodot ShaderMaterial.swift
[834/1024] Compiling SwiftGodot Shape2D.swift
[835/1024] Compiling SwiftGodot Shape3D.swift
[836/1024] Compiling SwiftGodot ShapeCast2D.swift
[837/1024] Compiling SwiftGodot ShapeCast3D.swift
[838/1024] Compiling SwiftGodot Shortcut.swift
[839/1024] Compiling SwiftGodot Skeleton2D.swift
[840/1024] Compiling SwiftGodot Skeleton3D.swift
[841/1024] Compiling SwiftGodot SkeletonIK3D.swift
[842/1024] Compiling SwiftGodot SkeletonModification2D.swift
[843/1024] Compiling SwiftGodot SkeletonModification2DCCDIK.swift
[844/1024] Compiling SwiftGodot SkeletonModification2DFABRIK.swift
[845/1024] Compiling SwiftGodot SkeletonModification2DJiggle.swift
[846/1024] Compiling SwiftGodot SkeletonModification2DLookAt.swift
[847/1024] Compiling SwiftGodot SkeletonModification2DPhysicalBones.swift
[848/1024] Compiling SwiftGodot SkeletonModification2DStackHolder.swift
[849/1024] Compiling SwiftGodot SkeletonModification2DTwoBoneIK.swift
[850/1024] Compiling SwiftGodot SkeletonModificationStack2D.swift
[851/1048] Compiling SwiftGodot VisualShaderNodeColorParameter.swift
[852/1048] Compiling SwiftGodot VisualShaderNodeComment.swift
[853/1048] Compiling SwiftGodot VisualShaderNodeCompare.swift
[854/1048] Compiling SwiftGodot VisualShaderNodeConstant.swift
[855/1048] Compiling SwiftGodot VisualShaderNodeCubemap.swift
[856/1048] Compiling SwiftGodot VisualShaderNodeCubemapParameter.swift
[857/1048] Compiling SwiftGodot VisualShaderNodeCurveTexture.swift
[858/1048] Compiling SwiftGodot VisualShaderNodeCurveXYZTexture.swift
[859/1048] Compiling SwiftGodot VisualShaderNodeCustom.swift
[860/1048] Compiling SwiftGodot VisualShaderNodeDerivativeFunc.swift
[861/1048] Compiling SwiftGodot VisualShaderNodeDeterminant.swift
[862/1048] Compiling SwiftGodot VisualShaderNodeDistanceFade.swift
[863/1048] Compiling SwiftGodot VisualShaderNodeDotProduct.swift
[864/1048] Compiling SwiftGodot VisualShaderNodeExpression.swift
[865/1048] Compiling SwiftGodot VisualShaderNodeFaceForward.swift
[866/1048] Compiling SwiftGodot VisualShaderNodeFloatConstant.swift
[867/1048] Compiling SwiftGodot VisualShaderNodeFloatFunc.swift
[868/1048] Compiling SwiftGodot VisualShaderNodeFloatOp.swift
[869/1048] Compiling SwiftGodot VisualShaderNodeFloatParameter.swift
[870/1048] Compiling SwiftGodot VisualShaderNodeFrame.swift
[871/1048] Compiling SwiftGodot VisualShaderNodeFresnel.swift
[872/1048] Compiling SwiftGodot VisualShaderNodeGlobalExpression.swift
[873/1048] Compiling SwiftGodot VisualShaderNodeGroupBase.swift
[874/1048] Compiling SwiftGodot VisualShaderNodeIf.swift
[875/1072] Compiling SwiftGodot VisualShaderNodeInput.swift
[876/1072] Compiling SwiftGodot VisualShaderNodeIntConstant.swift
[877/1072] Compiling SwiftGodot VisualShaderNodeIntFunc.swift
[878/1072] Compiling SwiftGodot VisualShaderNodeIntOp.swift
[879/1072] Compiling SwiftGodot VisualShaderNodeIntParameter.swift
[880/1072] Compiling SwiftGodot VisualShaderNodeIs.swift
[881/1072] Compiling SwiftGodot VisualShaderNodeLinearSceneDepth.swift
[882/1072] Compiling SwiftGodot VisualShaderNodeMix.swift
[883/1072] Compiling SwiftGodot VisualShaderNodeMultiplyAdd.swift
[884/1072] Compiling SwiftGodot VisualShaderNodeOuterProduct.swift
[885/1072] Compiling SwiftGodot VisualShaderNodeOutput.swift
[886/1072] Compiling SwiftGodot VisualShaderNodeParameter.swift
[887/1072] Compiling SwiftGodot VisualShaderNodeParameterRef.swift
[888/1072] Compiling SwiftGodot VisualShaderNodeParticleAccelerator.swift
[889/1072] Compiling SwiftGodot VisualShaderNodeParticleBoxEmitter.swift
[890/1072] Compiling SwiftGodot VisualShaderNodeParticleConeVelocity.swift
[891/1072] Compiling SwiftGodot VisualShaderNodeParticleEmit.swift
[892/1072] Compiling SwiftGodot VisualShaderNodeParticleEmitter.swift
[893/1072] Compiling SwiftGodot VisualShaderNodeParticleMeshEmitter.swift
[894/1072] Compiling SwiftGodot VisualShaderNodeParticleMultiplyByAxisAngle.swift
[895/1072] Compiling SwiftGodot VisualShaderNodeParticleOutput.swift
[896/1072] Compiling SwiftGodot VisualShaderNodeParticleRandomness.swift
[897/1072] Compiling SwiftGodot VisualShaderNodeParticleRingEmitter.swift
[898/1072] Compiling SwiftGodot VisualShaderNodeParticleSphereEmitter.swift
[899/1096] Compiling SwiftGodot VisualShaderNodeProximityFade.swift
[900/1096] Compiling SwiftGodot VisualShaderNodeRandomRange.swift
[901/1096] Compiling SwiftGodot VisualShaderNodeRemap.swift
[902/1096] Compiling SwiftGodot VisualShaderNodeReroute.swift
[903/1096] Compiling SwiftGodot VisualShaderNodeResizableBase.swift
[904/1096] Compiling SwiftGodot VisualShaderNodeRotationByAxis.swift
[905/1096] Compiling SwiftGodot VisualShaderNodeSDFRaymarch.swift
[906/1096] Compiling SwiftGodot VisualShaderNodeSDFToScreenUV.swift
[907/1096] Compiling SwiftGodot VisualShaderNodeSample3D.swift
[908/1096] Compiling SwiftGodot VisualShaderNodeScreenNormalWorldSpace.swift
[909/1096] Compiling SwiftGodot VisualShaderNodeScreenUVToSDF.swift
[910/1096] Compiling SwiftGodot VisualShaderNodeSmoothStep.swift
[911/1096] Compiling SwiftGodot VisualShaderNodeStep.swift
[912/1096] Compiling SwiftGodot VisualShaderNodeSwitch.swift
[913/1096] Compiling SwiftGodot VisualShaderNodeTexture.swift
[914/1096] Compiling SwiftGodot VisualShaderNodeTexture2DArray.swift
[915/1096] Compiling SwiftGodot VisualShaderNodeTexture2DArrayParameter.swift
[916/1096] Compiling SwiftGodot VisualShaderNodeTexture2DParameter.swift
[917/1096] Compiling SwiftGodot VisualShaderNodeTexture3D.swift
[918/1096] Compiling SwiftGodot VisualShaderNodeTexture3DParameter.swift
[919/1096] Compiling SwiftGodot VisualShaderNodeTextureParameter.swift
[920/1096] Compiling SwiftGodot VisualShaderNodeTextureParameterTriplanar.swift
[921/1096] Compiling SwiftGodot VisualShaderNodeTextureSDF.swift
[922/1096] Compiling SwiftGodot VisualShaderNodeTextureSDFNormal.swift
[923/1120] Compiling SwiftGodot ResourceLoader.swift
[924/1120] Compiling SwiftGodot ResourcePreloader.swift
[925/1120] Compiling SwiftGodot ResourceSaver.swift
[926/1120] Compiling SwiftGodot ResourceUID.swift
[927/1120] Compiling SwiftGodot RibbonTrailMesh.swift
[928/1120] Compiling SwiftGodot RichTextEffect.swift
[929/1120] Compiling SwiftGodot RichTextLabel.swift
[930/1120] Compiling SwiftGodot RigidBody2D.swift
[931/1120] Compiling SwiftGodot RigidBody3D.swift
[932/1120] Compiling SwiftGodot RootMotionView.swift
[933/1120] Compiling SwiftGodot SceneMultiplayer.swift
[934/1120] Compiling SwiftGodot SceneReplicationConfig.swift
[935/1120] Compiling SwiftGodot SceneState.swift
[936/1120] Compiling SwiftGodot SceneTree.swift
[937/1120] Compiling SwiftGodot SceneTreeTimer.swift
[938/1120] Compiling SwiftGodot Script.swift
[939/1120] Compiling SwiftGodot ScriptCreateDialog.swift
[940/1120] Compiling SwiftGodot ScriptEditor.swift
[941/1120] Compiling SwiftGodot ScriptEditorBase.swift
[942/1120] Compiling SwiftGodot ScriptExtension.swift
[943/1120] Compiling SwiftGodot ScriptLanguage.swift
[944/1120] Compiling SwiftGodot ScriptLanguageExtension.swift
[945/1120] Compiling SwiftGodot ScrollBar.swift
[946/1120] Compiling SwiftGodot ScrollContainer.swift
[947/1120] Compiling SwiftGodot SegmentShape2D.swift
[948/1120] Compiling SwiftGodot VisualShaderNodeTransformCompose.swift
[949/1120] Compiling SwiftGodot VisualShaderNodeTransformConstant.swift
[950/1120] Compiling SwiftGodot VisualShaderNodeTransformDecompose.swift
[951/1120] Compiling SwiftGodot VisualShaderNodeTransformFunc.swift
[952/1120] Compiling SwiftGodot VisualShaderNodeTransformOp.swift
[953/1120] Compiling SwiftGodot VisualShaderNodeTransformParameter.swift
[954/1120] Compiling SwiftGodot VisualShaderNodeTransformVecMult.swift
[955/1120] Compiling SwiftGodot VisualShaderNodeUIntConstant.swift
[956/1120] Compiling SwiftGodot VisualShaderNodeUIntFunc.swift
[957/1120] Compiling SwiftGodot VisualShaderNodeUIntOp.swift
[958/1120] Compiling SwiftGodot VisualShaderNodeUIntParameter.swift
[959/1120] Compiling SwiftGodot VisualShaderNodeUVFunc.swift
[960/1120] Compiling SwiftGodot VisualShaderNodeUVPolarCoord.swift
[961/1120] Compiling SwiftGodot VisualShaderNodeVarying.swift
[962/1120] Compiling SwiftGodot VisualShaderNodeVaryingGetter.swift
[963/1120] Compiling SwiftGodot VisualShaderNodeVaryingSetter.swift
[964/1120] Compiling SwiftGodot VisualShaderNodeVec2Constant.swift
[965/1120] Compiling SwiftGodot VisualShaderNodeVec2Parameter.swift
[966/1120] Compiling SwiftGodot VisualShaderNodeVec3Constant.swift
[967/1120] Compiling SwiftGodot VisualShaderNodeVec3Parameter.swift
[968/1120] Compiling SwiftGodot VisualShaderNodeVec4Constant.swift
[969/1120] Compiling SwiftGodot VisualShaderNodeVec4Parameter.swift
[970/1120] Compiling SwiftGodot VisualShaderNodeVectorBase.swift
[971/1120] Compiling SwiftGodot VisualShaderNodeVectorCompose.swift
[972/1120] Compiling SwiftGodot VSlider.swift
[973/1120] Compiling SwiftGodot VSplitContainer.swift
[974/1120] Compiling SwiftGodot VehicleBody3D.swift
[975/1120] Compiling SwiftGodot VehicleWheel3D.swift
[976/1120] Compiling SwiftGodot VideoStream.swift
[977/1120] Compiling SwiftGodot VideoStreamPlayback.swift
[978/1120] Compiling SwiftGodot VideoStreamPlayer.swift
[979/1120] Compiling SwiftGodot VideoStreamTheora.swift
[980/1120] Compiling SwiftGodot Viewport.swift
[981/1120] Compiling SwiftGodot ViewportTexture.swift
[982/1120] Compiling SwiftGodot VisibleOnScreenEnabler2D.swift
[983/1120] Compiling SwiftGodot VisibleOnScreenEnabler3D.swift
[984/1120] Compiling SwiftGodot VisibleOnScreenNotifier2D.swift
[985/1120] Compiling SwiftGodot VisibleOnScreenNotifier3D.swift
[986/1120] Compiling SwiftGodot VisualInstance3D.swift
[987/1120] Compiling SwiftGodot VisualShader.swift
[988/1120] Compiling SwiftGodot VisualShaderNode.swift
[989/1120] Compiling SwiftGodot VisualShaderNodeBillboard.swift
[990/1120] Compiling SwiftGodot VisualShaderNodeBooleanConstant.swift
[991/1120] Compiling SwiftGodot VisualShaderNodeBooleanParameter.swift
[992/1120] Compiling SwiftGodot VisualShaderNodeClamp.swift
[993/1120] Compiling SwiftGodot VisualShaderNodeColorConstant.swift
[994/1120] Compiling SwiftGodot VisualShaderNodeColorFunc.swift
[995/1120] Compiling SwiftGodot VisualShaderNodeColorOp.swift
[996/1120] Compiling SwiftGodot TileSetAtlasSource.swift
[997/1120] Compiling SwiftGodot TileSetScenesCollectionSource.swift
[998/1120] Compiling SwiftGodot TileSetSource.swift
[999/1120] Compiling SwiftGodot Time.swift
[1000/1120] Compiling SwiftGodot Timer.swift
[1001/1120] Compiling SwiftGodot TorusMesh.swift
[1002/1120] Compiling SwiftGodot TouchScreenButton.swift
[1003/1120] Compiling SwiftGodot Translation.swift
[1004/1120] Compiling SwiftGodot TranslationServer.swift
[1005/1120] Compiling SwiftGodot Tree.swift
[1006/1120] Compiling SwiftGodot TreeItem.swift
[1007/1120] Compiling SwiftGodot TriangleMesh.swift
[1008/1120] Compiling SwiftGodot TubeTrailMesh.swift
[1009/1120] Compiling SwiftGodot Tween.swift
[1010/1120] Compiling SwiftGodot Tweener.swift
[1011/1120] Compiling SwiftGodot UDPServer.swift
[1012/1120] Compiling SwiftGodot UPNP.swift
[1013/1120] Compiling SwiftGodot UPNPDevice.swift
[1014/1120] Compiling SwiftGodot UndoRedo.swift
[1015/1120] Compiling SwiftGodot UniformSetCacheRD.swift
[1016/1120] Compiling SwiftGodot VBoxContainer.swift
[1017/1120] Compiling SwiftGodot VFlowContainer.swift
[1018/1120] Compiling SwiftGodot VScrollBar.swift
[1019/1120] Compiling SwiftGodot VSeparator.swift
[1020/1120] Compiling SwiftGodot TextServerDummy.swift
[1021/1120] Compiling SwiftGodot TextServerExtension.swift
[1022/1120] Compiling SwiftGodot TextServerManager.swift
[1023/1120] Compiling SwiftGodot Texture.swift
[1024/1120] Compiling SwiftGodot Texture2D.swift
[1025/1120] Compiling SwiftGodot Texture2DArray.swift
[1026/1120] Compiling SwiftGodot Texture2DArrayRD.swift
[1027/1120] Compiling SwiftGodot Texture2DRD.swift
[1028/1120] Compiling SwiftGodot Texture3D.swift
[1029/1120] Compiling SwiftGodot Texture3DRD.swift
[1030/1120] Compiling SwiftGodot TextureButton.swift
[1031/1120] Compiling SwiftGodot TextureCubemapArrayRD.swift
[1032/1120] Compiling SwiftGodot TextureCubemapRD.swift
[1033/1120] Compiling SwiftGodot TextureLayered.swift
[1034/1120] Compiling SwiftGodot TextureLayeredRD.swift
[1035/1120] Compiling SwiftGodot TextureProgressBar.swift
[1036/1120] Compiling SwiftGodot TextureRect.swift
[1037/1120] Compiling SwiftGodot Theme.swift
[1038/1120] Compiling SwiftGodot ThemeDB.swift
[1039/1120] Compiling SwiftGodot Thread.swift
[1040/1120] Compiling SwiftGodot TileData.swift
[1041/1120] Compiling SwiftGodot TileMap.swift
[1042/1120] Compiling SwiftGodot TileMapLayer.swift
[1043/1120] Compiling SwiftGodot TileMapPattern.swift
[1044/1120] Compiling SwiftGodot TileSet.swift
[1045/1120] Compiling SwiftGodot WorldEnvironment.swift
[1046/1120] Compiling SwiftGodot X509Certificate.swift
[1047/1120] Compiling SwiftGodot XMLParser.swift
[1048/1120] Compiling SwiftGodot XRAnchor3D.swift
[1049/1120] Compiling SwiftGodot XRBodyModifier3D.swift
[1050/1120] Compiling SwiftGodot XRBodyTracker.swift
[1051/1120] Compiling SwiftGodot XRCamera3D.swift
[1052/1120] Compiling SwiftGodot XRController3D.swift
[1053/1120] Compiling SwiftGodot XRControllerTracker.swift
[1054/1120] Compiling SwiftGodot XRFaceModifier3D.swift
[1055/1120] Compiling SwiftGodot XRFaceTracker.swift
[1056/1120] Compiling SwiftGodot XRHandModifier3D.swift
[1057/1120] Compiling SwiftGodot XRHandTracker.swift
[1058/1120] Compiling SwiftGodot XRInterface.swift
[1059/1120] Compiling SwiftGodot XRInterfaceExtension.swift
[1060/1120] Compiling SwiftGodot XRNode3D.swift
[1061/1120] Compiling SwiftGodot XROrigin3D.swift
[1062/1120] Compiling SwiftGodot XRPose.swift
[1063/1120] Compiling SwiftGodot XRPositionalTracker.swift
[1064/1120] Compiling SwiftGodot XRServer.swift
[1065/1120] Compiling SwiftGodot XRTracker.swift
[1066/1120] Compiling SwiftGodot XRVRS.swift
[1067/1120] Compiling SwiftGodot ZIPPacker.swift
[1068/1120] Compiling SwiftGodot ZIPReader.swift
[1069/1120] Compiling SwiftGodot VisualShaderNodeVectorDecompose.swift
[1070/1120] Compiling SwiftGodot VisualShaderNodeVectorDistance.swift
[1071/1120] Compiling SwiftGodot VisualShaderNodeVectorFunc.swift
[1072/1120] Compiling SwiftGodot VisualShaderNodeVectorLen.swift
[1073/1120] Compiling SwiftGodot VisualShaderNodeVectorOp.swift
[1074/1120] Compiling SwiftGodot VisualShaderNodeVectorRefract.swift
[1075/1120] Compiling SwiftGodot VisualShaderNodeWorldPositionFromDepth.swift
[1076/1120] Compiling SwiftGodot VoxelGI.swift
[1077/1120] Compiling SwiftGodot VoxelGIData.swift
[1078/1120] Compiling SwiftGodot WeakRef.swift
[1079/1120] Compiling SwiftGodot WebRTCDataChannel.swift
[1080/1120] Compiling SwiftGodot WebRTCDataChannelExtension.swift
[1081/1120] Compiling SwiftGodot WebRTCMultiplayerPeer.swift
[1082/1120] Compiling SwiftGodot WebRTCPeerConnection.swift
[1083/1120] Compiling SwiftGodot WebRTCPeerConnectionExtension.swift
[1084/1120] Compiling SwiftGodot WebSocketMultiplayerPeer.swift
[1085/1120] Compiling SwiftGodot WebSocketPeer.swift
[1086/1120] Compiling SwiftGodot WebXRInterface.swift
[1087/1120] Compiling SwiftGodot Window.swift
[1088/1120] Compiling SwiftGodot WorkerThreadPool.swift
[1089/1120] Compiling SwiftGodot World2D.swift
[1090/1120] Compiling SwiftGodot World3D.swift
[1091/1120] Compiling SwiftGodot WorldBoundaryShape2D.swift
[1092/1120] Compiling SwiftGodot WorldBoundaryShape3D.swift
[1093/1120] Compiling SwiftGodot StreamPeerBuffer.swift
[1094/1120] Compiling SwiftGodot StreamPeerExtension.swift
[1095/1120] Compiling SwiftGodot StreamPeerGZIP.swift
[1096/1120] Compiling SwiftGodot StreamPeerTCP.swift
[1097/1120] Compiling SwiftGodot StreamPeerTLS.swift
[1098/1120] Compiling SwiftGodot StyleBox.swift
[1099/1120] Compiling SwiftGodot StyleBoxEmpty.swift
[1100/1120] Compiling SwiftGodot StyleBoxFlat.swift
[1101/1120] Compiling SwiftGodot StyleBoxLine.swift
[1102/1120] Compiling SwiftGodot StyleBoxTexture.swift
[1103/1120] Compiling SwiftGodot SubViewport.swift
[1104/1120] Compiling SwiftGodot SubViewportContainer.swift
[1105/1120] Compiling SwiftGodot SurfaceTool.swift
[1106/1120] Compiling SwiftGodot SyntaxHighlighter.swift
[1107/1120] Compiling SwiftGodot SystemFont.swift
[1108/1120] Compiling SwiftGodot TCPServer.swift
[1109/1120] Compiling SwiftGodot TLSOptions.swift
[1110/1120] Compiling SwiftGodot TabBar.swift
[1111/1120] Compiling SwiftGodot TabContainer.swift
[1112/1120] Compiling SwiftGodot TextEdit.swift
[1113/1120] Compiling SwiftGodot TextLine.swift
[1114/1120] Compiling SwiftGodot TextMesh.swift
[1115/1120] Compiling SwiftGodot TextParagraph.swift
[1116/1120] Compiling SwiftGodot TextServer.swift
[1117/1120] Compiling SwiftGodot TextServerAdvanced.swift
BUILD FAILURE 6.1 wasm