Build Information
Failed to build SwiftGodotKit, reference 4.3.5 (1a720b
), with Swift 6.1 for Wasm on 29 May 2025 19:03:53 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
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) }
[360/516] Compiling SwiftGodot VariantCollection.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) }
[361/516] Compiling SwiftGodot VariantRepresentable.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) }
[362/516] 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) }
[363/516] 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) }
[364/516] 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) }
[365/516] 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) }
[366/516] 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) }
[367/516] 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) }
[368/516] 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) }
[369/516] 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) }
[370/516] 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) }
[371/516] 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) }
[372/516] 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) }
[373/516] Compiling SwiftGodot PhysicsDirectSpaceState3D+IntersectRayResult.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) }
[374/516] Compiling SwiftGodot RefCountedExtensions.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) }
[375/566] Compiling SwiftGodot CSGCylinder3D.swift
[376/566] Compiling SwiftGodot CSGMesh3D.swift
[377/566] Compiling SwiftGodot CSGPolygon3D.swift
[378/566] Compiling SwiftGodot CSGPrimitive3D.swift
[379/566] Compiling SwiftGodot CSGShape3D.swift
[380/566] Compiling SwiftGodot CSGSphere3D.swift
[381/566] Compiling SwiftGodot CSGTorus3D.swift
[382/566] Compiling SwiftGodot CallbackTweener.swift
[383/566] Compiling SwiftGodot Camera2D.swift
[384/566] Compiling SwiftGodot Camera3D.swift
[385/566] Compiling SwiftGodot CameraAttributes.swift
[386/566] Compiling SwiftGodot CameraAttributesPhysical.swift
[387/566] Compiling SwiftGodot CameraAttributesPractical.swift
[388/566] Compiling SwiftGodot CameraFeed.swift
[389/566] Compiling SwiftGodot CameraServer.swift
[390/566] Compiling SwiftGodot CameraTexture.swift
[391/566] Compiling SwiftGodot CanvasGroup.swift
[392/566] Compiling SwiftGodot CanvasItem.swift
[393/566] Compiling SwiftGodot CanvasItemMaterial.swift
[394/566] Compiling SwiftGodot CanvasLayer.swift
[395/566] Compiling SwiftGodot CanvasModulate.swift
[396/566] Compiling SwiftGodot CanvasTexture.swift
[397/566] Compiling SwiftGodot CapsuleMesh.swift
[398/566] Compiling SwiftGodot CapsuleShape2D.swift
[399/566] Compiling SwiftGodot CapsuleShape3D.swift
[400/591] Compiling SwiftGodot CenterContainer.swift
[401/591] Compiling SwiftGodot CharFXTransform.swift
[402/591] Compiling SwiftGodot CharacterBody2D.swift
[403/591] Compiling SwiftGodot CharacterBody3D.swift
[404/591] Compiling SwiftGodot CheckBox.swift
[405/591] Compiling SwiftGodot CheckButton.swift
[406/591] Compiling SwiftGodot CircleShape2D.swift
[407/591] Compiling SwiftGodot ClassDB.swift
[408/591] Compiling SwiftGodot CodeEdit.swift
[409/591] Compiling SwiftGodot CodeHighlighter.swift
[410/591] Compiling SwiftGodot CollisionObject2D.swift
[411/591] Compiling SwiftGodot CollisionObject3D.swift
[412/591] Compiling SwiftGodot CollisionPolygon2D.swift
[413/591] Compiling SwiftGodot CollisionPolygon3D.swift
[414/591] Compiling SwiftGodot CollisionShape2D.swift
[415/591] Compiling SwiftGodot CollisionShape3D.swift
[416/591] Compiling SwiftGodot ColorPicker.swift
[417/591] Compiling SwiftGodot ColorPickerButton.swift
[418/591] Compiling SwiftGodot ColorRect.swift
[419/591] Compiling SwiftGodot CompressedCubemap.swift
[420/591] Compiling SwiftGodot CompressedCubemapArray.swift
[421/591] Compiling SwiftGodot CompressedTexture2D.swift
[422/591] Compiling SwiftGodot CompressedTexture2DArray.swift
[423/591] Compiling SwiftGodot CompressedTexture3D.swift
[424/591] Compiling SwiftGodot CompressedTextureLayered.swift
[425/616] Compiling SwiftGodot ConcavePolygonShape2D.swift
[426/616] Compiling SwiftGodot ConcavePolygonShape3D.swift
[427/616] Compiling SwiftGodot ConeTwistJoint3D.swift
[428/616] Compiling SwiftGodot ConfigFile.swift
[429/616] Compiling SwiftGodot ConfirmationDialog.swift
[430/616] Compiling SwiftGodot Container.swift
[431/616] Compiling SwiftGodot Control.swift
[432/616] Compiling SwiftGodot ConvexPolygonShape2D.swift
[433/616] Compiling SwiftGodot ConvexPolygonShape3D.swift
[434/616] Compiling SwiftGodot Crypto.swift
[435/616] Compiling SwiftGodot CryptoKey.swift
[436/616] Compiling SwiftGodot Cubemap.swift
[437/616] Compiling SwiftGodot CubemapArray.swift
[438/616] Compiling SwiftGodot Curve.swift
[439/616] Compiling SwiftGodot Curve2D.swift
[440/616] Compiling SwiftGodot Curve3D.swift
[441/616] Compiling SwiftGodot CurveTexture.swift
[442/616] Compiling SwiftGodot CurveXYZTexture.swift
[443/616] Compiling SwiftGodot CylinderMesh.swift
[444/616] Compiling SwiftGodot CylinderShape3D.swift
[445/616] Compiling SwiftGodot DTLSServer.swift
[446/616] Compiling SwiftGodot DampedSpringJoint2D.swift
[447/616] Compiling SwiftGodot Decal.swift
[448/616] Compiling SwiftGodot DirAccess.swift
[449/616] Compiling SwiftGodot DirectionalLight2D.swift
[450/641] Compiling SwiftGodot DirectionalLight3D.swift
[451/641] Compiling SwiftGodot DisplayServer.swift
[452/641] Compiling SwiftGodot ENetConnection.swift
[453/641] Compiling SwiftGodot ENetMultiplayerPeer.swift
[454/641] Compiling SwiftGodot ENetPacketPeer.swift
[455/641] Compiling SwiftGodot EditorCommandPalette.swift
[456/641] Compiling SwiftGodot EditorDebuggerPlugin.swift
[457/641] Compiling SwiftGodot EditorDebuggerSession.swift
[458/641] Compiling SwiftGodot EditorExportPlatform.swift
[459/641] Compiling SwiftGodot EditorExportPlatformAndroid.swift
[460/641] Compiling SwiftGodot EditorExportPlatformIOS.swift
[461/641] Compiling SwiftGodot EditorExportPlatformLinuxBSD.swift
[462/641] Compiling SwiftGodot EditorExportPlatformMacOS.swift
[463/641] Compiling SwiftGodot EditorExportPlatformPC.swift
[464/641] Compiling SwiftGodot EditorExportPlatformWeb.swift
[465/641] Compiling SwiftGodot EditorExportPlatformWindows.swift
[466/641] Compiling SwiftGodot EditorExportPlugin.swift
[467/641] Compiling SwiftGodot EditorFeatureProfile.swift
[468/641] Compiling SwiftGodot EditorFileDialog.swift
[469/641] Compiling SwiftGodot EditorFileSystem.swift
[470/641] Compiling SwiftGodot EditorFileSystemDirectory.swift
[471/641] Compiling SwiftGodot EditorFileSystemImportFormatSupportQuery.swift
[472/641] Compiling SwiftGodot EditorImportPlugin.swift
[473/641] Compiling SwiftGodot EditorInspector.swift
[474/641] Compiling SwiftGodot EditorInspectorPlugin.swift
[475/666] Compiling SwiftGodot EditorInterface.swift
[476/666] Compiling SwiftGodot EditorNode3DGizmo.swift
[477/666] Compiling SwiftGodot EditorNode3DGizmoPlugin.swift
[478/666] Compiling SwiftGodot EditorPaths.swift
[479/666] Compiling SwiftGodot EditorPlugin.swift
[480/666] Compiling SwiftGodot EditorProperty.swift
[481/666] Compiling SwiftGodot EditorResourceConversionPlugin.swift
[482/666] Compiling SwiftGodot EditorResourcePicker.swift
[483/666] Compiling SwiftGodot EditorResourcePreview.swift
[484/666] Compiling SwiftGodot EditorResourcePreviewGenerator.swift
[485/666] Compiling SwiftGodot EditorResourceTooltipPlugin.swift
[486/666] Compiling SwiftGodot EditorSceneFormatImporter.swift
[487/666] Compiling SwiftGodot EditorSceneFormatImporterBlend.swift
[488/666] Compiling SwiftGodot EditorSceneFormatImporterFBX.swift
[489/666] Compiling SwiftGodot EditorSceneFormatImporterGLTF.swift
[490/666] Compiling SwiftGodot EditorScenePostImport.swift
[491/666] Compiling SwiftGodot EditorScenePostImportPlugin.swift
[492/666] Compiling SwiftGodot EditorScript.swift
[493/666] Compiling SwiftGodot EditorScriptPicker.swift
[494/666] Compiling SwiftGodot EditorSelection.swift
[495/666] Compiling SwiftGodot EditorSettings.swift
[496/666] Compiling SwiftGodot EditorSpinSlider.swift
[497/666] Compiling SwiftGodot EditorSyntaxHighlighter.swift
[498/666] Compiling SwiftGodot EditorTranslationParserPlugin.swift
[499/666] Compiling SwiftGodot EditorUndoRedoManager.swift
[500/691] Compiling SwiftGodot AudioEffectHighShelfFilter.swift
[501/691] Compiling SwiftGodot AudioEffectInstance.swift
[502/691] Compiling SwiftGodot AudioEffectLimiter.swift
[503/691] Compiling SwiftGodot AudioEffectLowPassFilter.swift
[504/691] Compiling SwiftGodot AudioEffectLowShelfFilter.swift
[505/691] Compiling SwiftGodot AudioEffectNotchFilter.swift
[506/691] Compiling SwiftGodot AudioEffectPanner.swift
[507/691] Compiling SwiftGodot AudioEffectPhaser.swift
[508/691] Compiling SwiftGodot AudioEffectPitchShift.swift
[509/691] Compiling SwiftGodot AudioEffectRecord.swift
[510/691] Compiling SwiftGodot AudioEffectReverb.swift
[511/691] Compiling SwiftGodot AudioEffectSpectrumAnalyzer.swift
[512/691] Compiling SwiftGodot AudioEffectSpectrumAnalyzerInstance.swift
[513/691] Compiling SwiftGodot AudioEffectStereoEnhance.swift
[514/691] Compiling SwiftGodot AudioListener2D.swift
[515/691] Compiling SwiftGodot AudioListener3D.swift
[516/691] Compiling SwiftGodot AudioServer.swift
[517/691] Compiling SwiftGodot AudioStream.swift
[518/691] Compiling SwiftGodot AudioStreamGenerator.swift
[519/691] Compiling SwiftGodot AudioStreamGeneratorPlayback.swift
[520/691] Compiling SwiftGodot AudioStreamMP3.swift
[521/691] Compiling SwiftGodot AudioStreamMicrophone.swift
[522/691] Compiling SwiftGodot AudioStreamOggVorbis.swift
[523/691] Compiling SwiftGodot AudioStreamPlayback.swift
[524/691] Compiling SwiftGodot AudioStreamPlaybackOggVorbis.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[525/691] Compiling SwiftGodot Projection.swift
[526/691] Compiling SwiftGodot Quaternion.swift
[527/691] Compiling SwiftGodot RID.swift
[528/691] Compiling SwiftGodot Rect2.swift
[529/691] Compiling SwiftGodot Rect2i.swift
[530/691] Compiling SwiftGodot Signal.swift
[531/691] Compiling SwiftGodot String.swift
[532/691] Compiling SwiftGodot StringName.swift
[533/691] Compiling SwiftGodot Transform2D.swift
[534/691] Compiling SwiftGodot Transform3D.swift
[535/691] Compiling SwiftGodot Vector2.swift
[536/691] Compiling SwiftGodot Vector2i.swift
[537/691] Compiling SwiftGodot Vector3.swift
[538/691] Compiling SwiftGodot Vector3i.swift
[539/691] Compiling SwiftGodot Vector4.swift
[540/691] Compiling SwiftGodot Vector4i.swift
[541/691] Compiling SwiftGodot core-defs.swift
[542/691] Compiling SwiftGodot utility.swift
[543/691] Compiling SwiftGodot AESContext.swift
[544/691] Compiling SwiftGodot AStar2D.swift
[545/691] Compiling SwiftGodot AStar3D.swift
[546/691] Compiling SwiftGodot AStarGrid2D.swift
[547/691] Compiling SwiftGodot AcceptDialog.swift
[548/691] Compiling SwiftGodot AnimatableBody2D.swift
[549/691] Compiling SwiftGodot AnimatableBody3D.swift
[550/691] Compiling SwiftGodot AnimationPlayer.swift
[551/691] Compiling SwiftGodot AnimationRootNode.swift
[552/691] Compiling SwiftGodot AnimationTree.swift
[553/691] Compiling SwiftGodot Area2D.swift
[554/691] Compiling SwiftGodot Area3D.swift
[555/691] Compiling SwiftGodot ArrayMesh.swift
[556/691] Compiling SwiftGodot ArrayOccluder3D.swift
[557/691] Compiling SwiftGodot AspectRatioContainer.swift
[558/691] Compiling SwiftGodot AtlasTexture.swift
[559/691] Compiling SwiftGodot AudioBusLayout.swift
[560/691] Compiling SwiftGodot AudioEffect.swift
[561/691] Compiling SwiftGodot AudioEffectAmplify.swift
[562/691] Compiling SwiftGodot AudioEffectBandLimitFilter.swift
[563/691] Compiling SwiftGodot AudioEffectBandPassFilter.swift
[564/691] Compiling SwiftGodot AudioEffectCapture.swift
[565/691] Compiling SwiftGodot AudioEffectChorus.swift
[566/691] Compiling SwiftGodot AudioEffectCompressor.swift
[567/691] Compiling SwiftGodot AudioEffectDelay.swift
[568/691] Compiling SwiftGodot AudioEffectDistortion.swift
[569/691] Compiling SwiftGodot AudioEffectEQ.swift
[570/691] Compiling SwiftGodot AudioEffectEQ10.swift
[571/691] Compiling SwiftGodot AudioEffectEQ21.swift
[572/691] Compiling SwiftGodot AudioEffectEQ6.swift
[573/691] Compiling SwiftGodot AudioEffectFilter.swift
[574/691] Compiling SwiftGodot AudioEffectHighPassFilter.swift
[575/691] 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) }
[576/791] Compiling SwiftGodot GLTFDocumentExtension.swift
[577/791] Compiling SwiftGodot GLTFDocumentExtensionConvertImporterMesh.swift
[578/791] Compiling SwiftGodot GLTFLight.swift
[579/791] Compiling SwiftGodot GLTFMesh.swift
[580/791] Compiling SwiftGodot GLTFNode.swift
[581/791] Compiling SwiftGodot GLTFPhysicsBody.swift
[582/791] Compiling SwiftGodot GLTFPhysicsShape.swift
[583/791] Compiling SwiftGodot GLTFSkeleton.swift
[584/791] Compiling SwiftGodot GLTFSkin.swift
[585/791] Compiling SwiftGodot GLTFSpecGloss.swift
[586/791] Compiling SwiftGodot GLTFState.swift
[587/791] Compiling SwiftGodot GLTFTexture.swift
[588/791] Compiling SwiftGodot GLTFTextureSampler.swift
[589/791] Compiling SwiftGodot GPUParticles2D.swift
[590/791] Compiling SwiftGodot GPUParticles3D.swift
[591/791] Compiling SwiftGodot GPUParticlesAttractor3D.swift
[592/791] Compiling SwiftGodot GPUParticlesAttractorBox3D.swift
[593/791] Compiling SwiftGodot GPUParticlesAttractorSphere3D.swift
[594/791] Compiling SwiftGodot GPUParticlesAttractorVectorField3D.swift
[595/791] Compiling SwiftGodot GPUParticlesCollision3D.swift
[596/791] Compiling SwiftGodot GPUParticlesCollisionBox3D.swift
[597/791] Compiling SwiftGodot GPUParticlesCollisionHeightField3D.swift
[598/791] Compiling SwiftGodot GPUParticlesCollisionSDF3D.swift
[599/791] Compiling SwiftGodot GPUParticlesCollisionSphere3D.swift
[600/791] Compiling SwiftGodot Generic6DOFJoint3D.swift
[601/816] Compiling SwiftGodot Geometry2D.swift
[602/816] Compiling SwiftGodot Geometry3D.swift
[603/816] Compiling SwiftGodot GeometryInstance3D.swift
[604/816] Compiling SwiftGodot Gradient.swift
[605/816] Compiling SwiftGodot GradientTexture1D.swift
[606/816] Compiling SwiftGodot GradientTexture2D.swift
[607/816] Compiling SwiftGodot GraphEdit.swift
[608/816] Compiling SwiftGodot GraphElement.swift
[609/816] Compiling SwiftGodot GraphNode.swift
[610/816] Compiling SwiftGodot GridContainer.swift
[611/816] Compiling SwiftGodot GridMap.swift
[612/816] Compiling SwiftGodot GrooveJoint2D.swift
[613/816] Compiling SwiftGodot HBoxContainer.swift
[614/816] Compiling SwiftGodot HFlowContainer.swift
[615/816] Compiling SwiftGodot HMACContext.swift
[616/816] Compiling SwiftGodot HScrollBar.swift
[617/816] Compiling SwiftGodot HSeparator.swift
[618/816] Compiling SwiftGodot HSlider.swift
[619/816] Compiling SwiftGodot HSplitContainer.swift
[620/816] Compiling SwiftGodot HTTPClient.swift
[621/816] Compiling SwiftGodot HTTPRequest.swift
[622/816] Compiling SwiftGodot HashingContext.swift
[623/816] Compiling SwiftGodot HeightMapShape3D.swift
[624/816] Compiling SwiftGodot HingeJoint3D.swift
[625/816] Compiling SwiftGodot IP.swift
[626/841] Compiling SwiftGodot Image.swift
[627/841] Compiling SwiftGodot ImageFormatLoader.swift
[628/841] Compiling SwiftGodot ImageFormatLoaderExtension.swift
[629/841] Compiling SwiftGodot ImageTexture.swift
[630/841] Compiling SwiftGodot ImageTexture3D.swift
[631/841] Compiling SwiftGodot ImageTextureLayered.swift
[632/841] Compiling SwiftGodot ImmediateMesh.swift
[633/841] Compiling SwiftGodot ImporterMesh.swift
[634/841] Compiling SwiftGodot ImporterMeshInstance3D.swift
[635/841] Compiling SwiftGodot Input.swift
[636/841] Compiling SwiftGodot InputEvent.swift
[637/841] Compiling SwiftGodot InputEventAction.swift
[638/841] Compiling SwiftGodot InputEventFromWindow.swift
[639/841] Compiling SwiftGodot InputEventGesture.swift
[640/841] Compiling SwiftGodot InputEventJoypadButton.swift
[641/841] Compiling SwiftGodot InputEventJoypadMotion.swift
[642/841] Compiling SwiftGodot InputEventKey.swift
[643/841] Compiling SwiftGodot InputEventMIDI.swift
[644/841] Compiling SwiftGodot InputEventMagnifyGesture.swift
[645/841] Compiling SwiftGodot InputEventMouse.swift
[646/841] Compiling SwiftGodot InputEventMouseButton.swift
[647/841] Compiling SwiftGodot InputEventMouseMotion.swift
[648/841] Compiling SwiftGodot InputEventPanGesture.swift
[649/841] Compiling SwiftGodot InputEventScreenDrag.swift
[650/841] Compiling SwiftGodot InputEventScreenTouch.swift
[651/866] Compiling SwiftGodot EditorVCSInterface.swift
[652/866] Compiling SwiftGodot EncodedObjectAsID.swift
[653/866] Compiling SwiftGodot Engine.swift
[654/866] Compiling SwiftGodot EngineDebugger.swift
[655/866] Compiling SwiftGodot EngineProfiler.swift
[656/866] Compiling SwiftGodot Environment.swift
[657/866] Compiling SwiftGodot Expression.swift
[658/866] Compiling SwiftGodot FastNoiseLite.swift
[659/866] Compiling SwiftGodot FileAccess.swift
[660/866] Compiling SwiftGodot FileDialog.swift
[661/866] Compiling SwiftGodot FileSystemDock.swift
[662/866] Compiling SwiftGodot FlowContainer.swift
[663/866] Compiling SwiftGodot FogMaterial.swift
[664/866] Compiling SwiftGodot FogVolume.swift
[665/866] Compiling SwiftGodot Font.swift
[666/866] Compiling SwiftGodot FontFile.swift
[667/866] Compiling SwiftGodot FontVariation.swift
[668/866] Compiling SwiftGodot GDExtension.swift
[669/866] Compiling SwiftGodot GDExtensionManager.swift
[670/866] Compiling SwiftGodot GDScript.swift
[671/866] Compiling SwiftGodot GLTFAccessor.swift
[672/866] Compiling SwiftGodot GLTFAnimation.swift
[673/866] Compiling SwiftGodot GLTFBufferView.swift
[674/866] Compiling SwiftGodot GLTFCamera.swift
[675/866] Compiling SwiftGodot GLTFDocument.swift
[676/891] Compiling SwiftGodot LightmapProbe.swift
[677/891] Compiling SwiftGodot Lightmapper.swift
[678/891] Compiling SwiftGodot LightmapperRD.swift
[679/891] Compiling SwiftGodot Line2D.swift
[680/891] Compiling SwiftGodot LineEdit.swift
[681/891] Compiling SwiftGodot LinkButton.swift
[682/891] Compiling SwiftGodot MainLoop.swift
[683/891] Compiling SwiftGodot MarginContainer.swift
[684/891] Compiling SwiftGodot Marker2D.swift
[685/891] Compiling SwiftGodot Marker3D.swift
[686/891] Compiling SwiftGodot Marshalls.swift
[687/891] Compiling SwiftGodot Material.swift
[688/891] Compiling SwiftGodot MenuBar.swift
[689/891] Compiling SwiftGodot MenuButton.swift
[690/891] Compiling SwiftGodot Mesh.swift
[691/891] Compiling SwiftGodot MeshConvexDecompositionSettings.swift
[692/891] Compiling SwiftGodot MeshDataTool.swift
[693/891] Compiling SwiftGodot MeshInstance2D.swift
[694/891] Compiling SwiftGodot MeshInstance3D.swift
[695/891] Compiling SwiftGodot MeshLibrary.swift
[696/891] Compiling SwiftGodot MeshTexture.swift
[697/891] Compiling SwiftGodot MethodTweener.swift
[698/891] Compiling SwiftGodot MissingNode.swift
[699/891] Compiling SwiftGodot MissingResource.swift
[700/891] Compiling SwiftGodot MobileVRInterface.swift
[701/916] Compiling SwiftGodot MovieWriter.swift
[702/916] Compiling SwiftGodot MultiMesh.swift
[703/916] Compiling SwiftGodot MultiMeshInstance2D.swift
[704/916] Compiling SwiftGodot MultiMeshInstance3D.swift
[705/916] Compiling SwiftGodot MultiplayerAPI.swift
[706/916] Compiling SwiftGodot MultiplayerAPIExtension.swift
[707/916] Compiling SwiftGodot MultiplayerPeer.swift
[708/916] Compiling SwiftGodot MultiplayerPeerExtension.swift
[709/916] Compiling SwiftGodot MultiplayerSpawner.swift
[710/916] Compiling SwiftGodot MultiplayerSynchronizer.swift
[711/916] Compiling SwiftGodot Mutex.swift
[712/916] Compiling SwiftGodot NavigationAgent2D.swift
[713/916] Compiling SwiftGodot NavigationAgent3D.swift
[714/916] Compiling SwiftGodot NavigationLink2D.swift
[715/916] Compiling SwiftGodot NavigationLink3D.swift
[716/916] Compiling SwiftGodot NavigationMesh.swift
[717/916] Compiling SwiftGodot NavigationMeshGenerator.swift
[718/916] Compiling SwiftGodot NavigationMeshSourceGeometryData2D.swift
[719/916] Compiling SwiftGodot NavigationMeshSourceGeometryData3D.swift
[720/916] Compiling SwiftGodot NavigationObstacle2D.swift
[721/916] Compiling SwiftGodot NavigationObstacle3D.swift
[722/916] Compiling SwiftGodot NavigationPathQueryParameters2D.swift
[723/916] Compiling SwiftGodot NavigationPathQueryParameters3D.swift
[724/916] Compiling SwiftGodot NavigationPathQueryResult2D.swift
[725/916] Compiling SwiftGodot NavigationPathQueryResult3D.swift
[726/941] Compiling SwiftGodot InputEventShortcut.swift
[727/941] Compiling SwiftGodot InputEventWithModifiers.swift
[728/941] Compiling SwiftGodot InputMap.swift
[729/941] Compiling SwiftGodot InstancePlaceholder.swift
[730/941] Compiling SwiftGodot IntervalTweener.swift
[731/941] Compiling SwiftGodot ItemList.swift
[732/941] Compiling SwiftGodot JNISingleton.swift
[733/941] Compiling SwiftGodot JSON.swift
[734/941] Compiling SwiftGodot JSONRPC.swift
[735/941] Compiling SwiftGodot JavaClass.swift
[736/941] Compiling SwiftGodot JavaClassWrapper.swift
[737/941] Compiling SwiftGodot JavaScriptBridge.swift
[738/941] Compiling SwiftGodot JavaScriptObject.swift
[739/941] Compiling SwiftGodot Joint2D.swift
[740/941] Compiling SwiftGodot Joint3D.swift
[741/941] Compiling SwiftGodot KinematicCollision2D.swift
[742/941] Compiling SwiftGodot KinematicCollision3D.swift
[743/941] Compiling SwiftGodot Label.swift
[744/941] Compiling SwiftGodot Label3D.swift
[745/941] Compiling SwiftGodot LabelSettings.swift
[746/941] Compiling SwiftGodot Light2D.swift
[747/941] Compiling SwiftGodot Light3D.swift
[748/941] Compiling SwiftGodot LightOccluder2D.swift
[749/941] Compiling SwiftGodot LightmapGI.swift
[750/941] Compiling SwiftGodot LightmapGIData.swift
[751/966] Compiling SwiftGodot OpenXRActionMap.swift
[752/966] Compiling SwiftGodot OpenXRActionSet.swift
[753/966] Compiling SwiftGodot OpenXRExtensionWrapperExtension.swift
[754/966] Compiling SwiftGodot OpenXRHand.swift
[755/966] Compiling SwiftGodot OpenXRIPBinding.swift
[756/966] Compiling SwiftGodot OpenXRInteractionProfile.swift
[757/966] Compiling SwiftGodot OpenXRInteractionProfileMetadata.swift
[758/966] Compiling SwiftGodot OpenXRInterface.swift
[759/966] Compiling SwiftGodot OptimizedTranslation.swift
[760/966] Compiling SwiftGodot OptionButton.swift
[761/966] Compiling SwiftGodot PCKPacker.swift
[762/966] Compiling SwiftGodot PackedDataContainer.swift
[763/966] Compiling SwiftGodot PackedDataContainerRef.swift
[764/966] Compiling SwiftGodot PackedScene.swift
[765/966] Compiling SwiftGodot PacketPeer.swift
[766/966] Compiling SwiftGodot PacketPeerDTLS.swift
[767/966] Compiling SwiftGodot PacketPeerExtension.swift
[768/966] Compiling SwiftGodot PacketPeerStream.swift
[769/966] Compiling SwiftGodot PacketPeerUDP.swift
[770/966] Compiling SwiftGodot Panel.swift
[771/966] Compiling SwiftGodot PanelContainer.swift
[772/966] Compiling SwiftGodot PanoramaSkyMaterial.swift
[773/966] Compiling SwiftGodot ParallaxBackground.swift
[774/966] Compiling SwiftGodot ParallaxLayer.swift
[775/966] Compiling SwiftGodot ParticleProcessMaterial.swift
[776/991] Compiling SwiftGodot PolygonOccluder3D.swift
[777/991] Compiling SwiftGodot PolygonPathFinder.swift
[778/991] Compiling SwiftGodot Popup.swift
[779/991] Compiling SwiftGodot PopupMenu.swift
[780/991] Compiling SwiftGodot PopupPanel.swift
[781/991] Compiling SwiftGodot PortableCompressedTexture2D.swift
[782/991] Compiling SwiftGodot PrimitiveMesh.swift
[783/991] Compiling SwiftGodot PrismMesh.swift
[784/991] Compiling SwiftGodot ProceduralSkyMaterial.swift
[785/991] Compiling SwiftGodot ProgressBar.swift
[786/991] Compiling SwiftGodot ProjectSettings.swift
[787/991] Compiling SwiftGodot PropertyTweener.swift
[788/991] Compiling SwiftGodot QuadMesh.swift
[789/991] Compiling SwiftGodot QuadOccluder3D.swift
[790/991] Compiling SwiftGodot RDAttachmentFormat.swift
[791/991] Compiling SwiftGodot RDFramebufferPass.swift
[792/991] Compiling SwiftGodot RDPipelineColorBlendState.swift
[793/991] Compiling SwiftGodot RDPipelineColorBlendStateAttachment.swift
[794/991] Compiling SwiftGodot RDPipelineDepthStencilState.swift
[795/991] Compiling SwiftGodot RDPipelineMultisampleState.swift
[796/991] Compiling SwiftGodot RDPipelineRasterizationState.swift
[797/991] Compiling SwiftGodot RDPipelineSpecializationConstant.swift
[798/991] Compiling SwiftGodot RDSamplerState.swift
[799/991] Compiling SwiftGodot RDShaderFile.swift
[800/991] Compiling SwiftGodot RDShaderSPIRV.swift
[801/1016] Compiling SwiftGodot NavigationPolygon.swift
[802/1016] Compiling SwiftGodot NavigationRegion2D.swift
[803/1016] Compiling SwiftGodot NavigationRegion3D.swift
[804/1016] Compiling SwiftGodot NavigationServer2D.swift
[805/1016] Compiling SwiftGodot NavigationServer3D.swift
[806/1016] Compiling SwiftGodot NinePatchRect.swift
[807/1016] Compiling SwiftGodot Node.swift
[808/1016] Compiling SwiftGodot Node2D.swift
[809/1016] Compiling SwiftGodot Node3D.swift
[810/1016] Compiling SwiftGodot Node3DGizmo.swift
[811/1016] Compiling SwiftGodot Noise.swift
[812/1016] Compiling SwiftGodot NoiseTexture2D.swift
[813/1016] Compiling SwiftGodot NoiseTexture3D.swift
[814/1016] Compiling SwiftGodot ORMMaterial3D.swift
[815/1016] Compiling SwiftGodot OS.swift
[816/1016] Compiling SwiftGodot Object.swift
[817/1016] Compiling SwiftGodot Occluder3D.swift
[818/1016] Compiling SwiftGodot OccluderInstance3D.swift
[819/1016] Compiling SwiftGodot OccluderPolygon2D.swift
[820/1016] Compiling SwiftGodot OfflineMultiplayerPeer.swift
[821/1016] Compiling SwiftGodot OggPacketSequence.swift
[822/1016] Compiling SwiftGodot OggPacketSequencePlayback.swift
[823/1016] Compiling SwiftGodot OmniLight3D.swift
[824/1016] Compiling SwiftGodot OpenXRAPIExtension.swift
[825/1016] Compiling SwiftGodot OpenXRAction.swift
[826/1041] Compiling SwiftGodot PhysicsServer2DManager.swift
[827/1041] Compiling SwiftGodot PhysicsServer3D.swift
[828/1041] Compiling SwiftGodot PhysicsServer3DExtension.swift
[829/1041] Compiling SwiftGodot PhysicsServer3DManager.swift
[830/1041] Compiling SwiftGodot PhysicsServer3DRenderingServerHandler.swift
[831/1041] Compiling SwiftGodot PhysicsShapeQueryParameters2D.swift
[832/1041] Compiling SwiftGodot PhysicsShapeQueryParameters3D.swift
[833/1041] Compiling SwiftGodot PhysicsTestMotionParameters2D.swift
[834/1041] Compiling SwiftGodot PhysicsTestMotionParameters3D.swift
[835/1041] Compiling SwiftGodot PhysicsTestMotionResult2D.swift
[836/1041] Compiling SwiftGodot PhysicsTestMotionResult3D.swift
[837/1041] Compiling SwiftGodot PinJoint2D.swift
[838/1041] Compiling SwiftGodot PinJoint3D.swift
[839/1041] Compiling SwiftGodot PlaceholderCubemap.swift
[840/1041] Compiling SwiftGodot PlaceholderCubemapArray.swift
[841/1041] Compiling SwiftGodot PlaceholderMaterial.swift
[842/1041] Compiling SwiftGodot PlaceholderMesh.swift
[843/1041] Compiling SwiftGodot PlaceholderTexture2D.swift
[844/1041] Compiling SwiftGodot PlaceholderTexture2DArray.swift
[845/1041] Compiling SwiftGodot PlaceholderTexture3D.swift
[846/1041] Compiling SwiftGodot PlaceholderTextureLayered.swift
[847/1041] Compiling SwiftGodot PlaneMesh.swift
[848/1041] Compiling SwiftGodot PointLight2D.swift
[849/1041] Compiling SwiftGodot PointMesh.swift
[850/1041] Compiling SwiftGodot Polygon2D.swift
[851/1066] Compiling SwiftGodot ResourceFormatSaver.swift
[852/1066] Compiling SwiftGodot ResourceImporter.swift
[853/1066] Compiling SwiftGodot ResourceImporterBMFont.swift
[854/1066] Compiling SwiftGodot ResourceImporterBitMap.swift
[855/1066] Compiling SwiftGodot ResourceImporterCSVTranslation.swift
[856/1066] Compiling SwiftGodot ResourceImporterDynamicFont.swift
[857/1066] Compiling SwiftGodot ResourceImporterImage.swift
[858/1066] Compiling SwiftGodot ResourceImporterImageFont.swift
[859/1066] Compiling SwiftGodot ResourceImporterLayeredTexture.swift
[860/1066] Compiling SwiftGodot ResourceImporterMP3.swift
[861/1066] Compiling SwiftGodot ResourceImporterOBJ.swift
[862/1066] Compiling SwiftGodot ResourceImporterOggVorbis.swift
[863/1066] Compiling SwiftGodot ResourceImporterScene.swift
[864/1066] Compiling SwiftGodot ResourceImporterShaderFile.swift
[865/1066] Compiling SwiftGodot ResourceImporterTexture.swift
[866/1066] Compiling SwiftGodot ResourceImporterTextureAtlas.swift
[867/1066] Compiling SwiftGodot ResourceImporterWAV.swift
[868/1066] Compiling SwiftGodot ResourceLoader.swift
[869/1066] Compiling SwiftGodot ResourcePreloader.swift
[870/1066] Compiling SwiftGodot ResourceSaver.swift
[871/1066] Compiling SwiftGodot ResourceUID.swift
[872/1066] Compiling SwiftGodot RibbonTrailMesh.swift
[873/1066] Compiling SwiftGodot RichTextEffect.swift
[874/1066] Compiling SwiftGodot RichTextLabel.swift
[875/1066] Compiling SwiftGodot RigidBody2D.swift
[876/1091] Compiling SwiftGodot Path2D.swift
[877/1091] Compiling SwiftGodot Path3D.swift
[878/1091] Compiling SwiftGodot PathFollow2D.swift
[879/1091] Compiling SwiftGodot PathFollow3D.swift
[880/1091] Compiling SwiftGodot Performance.swift
[881/1091] Compiling SwiftGodot PhysicalBone2D.swift
[882/1091] Compiling SwiftGodot PhysicalBone3D.swift
[883/1091] Compiling SwiftGodot PhysicalSkyMaterial.swift
[884/1091] Compiling SwiftGodot PhysicsBody2D.swift
[885/1091] Compiling SwiftGodot PhysicsBody3D.swift
[886/1091] Compiling SwiftGodot PhysicsDirectBodyState2D.swift
[887/1091] Compiling SwiftGodot PhysicsDirectBodyState2DExtension.swift
[888/1091] Compiling SwiftGodot PhysicsDirectBodyState3D.swift
[889/1091] Compiling SwiftGodot PhysicsDirectBodyState3DExtension.swift
[890/1091] Compiling SwiftGodot PhysicsDirectSpaceState2D.swift
[891/1091] Compiling SwiftGodot PhysicsDirectSpaceState2DExtension.swift
[892/1091] Compiling SwiftGodot PhysicsDirectSpaceState3D.swift
[893/1091] Compiling SwiftGodot PhysicsDirectSpaceState3DExtension.swift
[894/1091] Compiling SwiftGodot PhysicsMaterial.swift
[895/1091] Compiling SwiftGodot PhysicsPointQueryParameters2D.swift
[896/1091] Compiling SwiftGodot PhysicsPointQueryParameters3D.swift
[897/1091] Compiling SwiftGodot PhysicsRayQueryParameters2D.swift
[898/1091] Compiling SwiftGodot PhysicsRayQueryParameters3D.swift
[899/1091] Compiling SwiftGodot PhysicsServer2D.swift
[900/1091] Compiling SwiftGodot PhysicsServer2DExtension.swift
[901/1115] Compiling SwiftGodot Shape2D.swift
[902/1115] Compiling SwiftGodot Shape3D.swift
[903/1115] Compiling SwiftGodot ShapeCast2D.swift
[904/1115] Compiling SwiftGodot ShapeCast3D.swift
[905/1115] Compiling SwiftGodot Shortcut.swift
[906/1115] Compiling SwiftGodot Skeleton2D.swift
[907/1115] Compiling SwiftGodot Skeleton3D.swift
[908/1115] Compiling SwiftGodot SkeletonIK3D.swift
[909/1115] Compiling SwiftGodot SkeletonModification2D.swift
[910/1115] Compiling SwiftGodot SkeletonModification2DCCDIK.swift
[911/1115] Compiling SwiftGodot SkeletonModification2DFABRIK.swift
[912/1115] Compiling SwiftGodot SkeletonModification2DJiggle.swift
[913/1115] Compiling SwiftGodot SkeletonModification2DLookAt.swift
[914/1115] Compiling SwiftGodot SkeletonModification2DPhysicalBones.swift
[915/1115] Compiling SwiftGodot SkeletonModification2DStackHolder.swift
[916/1115] Compiling SwiftGodot SkeletonModification2DTwoBoneIK.swift
[917/1115] Compiling SwiftGodot SkeletonModificationStack2D.swift
[918/1115] Compiling SwiftGodot SkeletonProfile.swift
[919/1115] Compiling SwiftGodot SkeletonProfileHumanoid.swift
[920/1115] Compiling SwiftGodot Skin.swift
[921/1115] Compiling SwiftGodot SkinReference.swift
[922/1115] Compiling SwiftGodot Sky.swift
[923/1115] Compiling SwiftGodot Slider.swift
[924/1115] Compiling SwiftGodot SliderJoint3D.swift
[925/1115] Compiling SwiftGodot SoftBody3D.swift
[926/1139] Compiling SwiftGodot RigidBody3D.swift
[927/1139] Compiling SwiftGodot RootMotionView.swift
[928/1139] Compiling SwiftGodot SceneMultiplayer.swift
[929/1139] Compiling SwiftGodot SceneReplicationConfig.swift
[930/1139] Compiling SwiftGodot SceneState.swift
[931/1139] Compiling SwiftGodot SceneTree.swift
[932/1139] Compiling SwiftGodot SceneTreeTimer.swift
[933/1139] Compiling SwiftGodot Script.swift
[934/1139] Compiling SwiftGodot ScriptCreateDialog.swift
[935/1139] Compiling SwiftGodot ScriptEditor.swift
[936/1139] Compiling SwiftGodot ScriptEditorBase.swift
[937/1139] Compiling SwiftGodot ScriptExtension.swift
[938/1139] Compiling SwiftGodot ScriptLanguage.swift
[939/1139] Compiling SwiftGodot ScriptLanguageExtension.swift
[940/1139] Compiling SwiftGodot ScrollBar.swift
[941/1139] Compiling SwiftGodot ScrollContainer.swift
[942/1139] Compiling SwiftGodot SegmentShape2D.swift
[943/1139] Compiling SwiftGodot Semaphore.swift
[944/1139] Compiling SwiftGodot SeparationRayShape2D.swift
[945/1139] Compiling SwiftGodot SeparationRayShape3D.swift
[946/1139] Compiling SwiftGodot Separator.swift
[947/1139] Compiling SwiftGodot Shader.swift
[948/1139] Compiling SwiftGodot ShaderGlobalsOverride.swift
[949/1139] Compiling SwiftGodot ShaderInclude.swift
[950/1139] Compiling SwiftGodot ShaderMaterial.swift
[951/1163] Compiling SwiftGodot SphereMesh.swift
[952/1163] Compiling SwiftGodot SphereOccluder3D.swift
[953/1163] Compiling SwiftGodot SphereShape3D.swift
[954/1163] Compiling SwiftGodot SpinBox.swift
[955/1163] Compiling SwiftGodot SplitContainer.swift
[956/1163] Compiling SwiftGodot SpotLight3D.swift
[957/1163] Compiling SwiftGodot SpringArm3D.swift
[958/1163] Compiling SwiftGodot Sprite2D.swift
[959/1163] Compiling SwiftGodot Sprite3D.swift
[960/1163] Compiling SwiftGodot SpriteBase3D.swift
[961/1163] Compiling SwiftGodot SpriteFrames.swift
[962/1163] Compiling SwiftGodot StandardMaterial3D.swift
[963/1163] Compiling SwiftGodot StaticBody2D.swift
[964/1163] Compiling SwiftGodot StaticBody3D.swift
[965/1163] Compiling SwiftGodot StreamPeer.swift
[966/1163] Compiling SwiftGodot StreamPeerBuffer.swift
[967/1163] Compiling SwiftGodot StreamPeerExtension.swift
[968/1163] Compiling SwiftGodot StreamPeerGZIP.swift
[969/1163] Compiling SwiftGodot StreamPeerTCP.swift
[970/1163] Compiling SwiftGodot StreamPeerTLS.swift
[971/1163] Compiling SwiftGodot StyleBox.swift
[972/1163] Compiling SwiftGodot StyleBoxEmpty.swift
[973/1163] Compiling SwiftGodot StyleBoxFlat.swift
[974/1163] Compiling SwiftGodot StyleBoxLine.swift
[975/1163] Compiling SwiftGodot StyleBoxTexture.swift
[976/1187] Compiling SwiftGodot VisibleOnScreenNotifier3D.swift
[977/1187] Compiling SwiftGodot VisualInstance3D.swift
[978/1187] Compiling SwiftGodot VisualShader.swift
[979/1187] Compiling SwiftGodot VisualShaderNode.swift
[980/1187] Compiling SwiftGodot VisualShaderNodeBillboard.swift
[981/1187] Compiling SwiftGodot VisualShaderNodeBooleanConstant.swift
[982/1187] Compiling SwiftGodot VisualShaderNodeBooleanParameter.swift
[983/1187] Compiling SwiftGodot VisualShaderNodeClamp.swift
[984/1187] Compiling SwiftGodot VisualShaderNodeColorConstant.swift
[985/1187] Compiling SwiftGodot VisualShaderNodeColorFunc.swift
[986/1187] Compiling SwiftGodot VisualShaderNodeColorOp.swift
[987/1187] Compiling SwiftGodot VisualShaderNodeColorParameter.swift
[988/1187] Compiling SwiftGodot VisualShaderNodeComment.swift
[989/1187] Compiling SwiftGodot VisualShaderNodeCompare.swift
[990/1187] Compiling SwiftGodot VisualShaderNodeConstant.swift
[991/1187] Compiling SwiftGodot VisualShaderNodeCubemap.swift
[992/1187] Compiling SwiftGodot VisualShaderNodeCubemapParameter.swift
[993/1187] Compiling SwiftGodot VisualShaderNodeCurveTexture.swift
[994/1187] Compiling SwiftGodot VisualShaderNodeCurveXYZTexture.swift
[995/1187] Compiling SwiftGodot VisualShaderNodeCustom.swift
[996/1187] Compiling SwiftGodot VisualShaderNodeDerivativeFunc.swift
[997/1187] Compiling SwiftGodot VisualShaderNodeDeterminant.swift
[998/1187] Compiling SwiftGodot VisualShaderNodeDistanceFade.swift
[999/1187] Compiling SwiftGodot VisualShaderNodeDotProduct.swift
[1000/1211] Compiling SwiftGodot VisualShaderNodeParticleBoxEmitter.swift
[1001/1211] Compiling SwiftGodot VisualShaderNodeParticleConeVelocity.swift
[1002/1211] Compiling SwiftGodot VisualShaderNodeParticleEmit.swift
[1003/1211] Compiling SwiftGodot VisualShaderNodeParticleEmitter.swift
[1004/1211] Compiling SwiftGodot VisualShaderNodeParticleMeshEmitter.swift
[1005/1211] Compiling SwiftGodot VisualShaderNodeParticleMultiplyByAxisAngle.swift
[1006/1211] Compiling SwiftGodot VisualShaderNodeParticleOutput.swift
[1007/1211] Compiling SwiftGodot VisualShaderNodeParticleRandomness.swift
[1008/1211] Compiling SwiftGodot VisualShaderNodeParticleRingEmitter.swift
[1009/1211] Compiling SwiftGodot VisualShaderNodeParticleSphereEmitter.swift
[1010/1211] Compiling SwiftGodot VisualShaderNodeProximityFade.swift
[1011/1211] Compiling SwiftGodot VisualShaderNodeRandomRange.swift
[1012/1211] Compiling SwiftGodot VisualShaderNodeRemap.swift
[1013/1211] Compiling SwiftGodot VisualShaderNodeResizableBase.swift
[1014/1211] Compiling SwiftGodot VisualShaderNodeRotationByAxis.swift
[1015/1211] Compiling SwiftGodot VisualShaderNodeSDFRaymarch.swift
[1016/1211] Compiling SwiftGodot VisualShaderNodeSDFToScreenUV.swift
[1017/1211] Compiling SwiftGodot VisualShaderNodeSample3D.swift
[1018/1211] Compiling SwiftGodot VisualShaderNodeScreenNormalWorldSpace.swift
[1019/1211] Compiling SwiftGodot VisualShaderNodeScreenUVToSDF.swift
[1020/1211] Compiling SwiftGodot VisualShaderNodeSmoothStep.swift
[1021/1211] Compiling SwiftGodot VisualShaderNodeStep.swift
[1022/1211] Compiling SwiftGodot VisualShaderNodeSwitch.swift
[1023/1211] Compiling SwiftGodot VisualShaderNodeTexture.swift
[1024/1235] Compiling SwiftGodot VisualShaderNodeExpression.swift
[1025/1235] Compiling SwiftGodot VisualShaderNodeFaceForward.swift
[1026/1235] Compiling SwiftGodot VisualShaderNodeFloatConstant.swift
[1027/1235] Compiling SwiftGodot VisualShaderNodeFloatFunc.swift
[1028/1235] Compiling SwiftGodot VisualShaderNodeFloatOp.swift
[1029/1235] Compiling SwiftGodot VisualShaderNodeFloatParameter.swift
[1030/1235] Compiling SwiftGodot VisualShaderNodeFresnel.swift
[1031/1235] Compiling SwiftGodot VisualShaderNodeGlobalExpression.swift
[1032/1235] Compiling SwiftGodot VisualShaderNodeGroupBase.swift
[1033/1235] Compiling SwiftGodot VisualShaderNodeIf.swift
[1034/1235] Compiling SwiftGodot VisualShaderNodeInput.swift
[1035/1235] Compiling SwiftGodot VisualShaderNodeIntConstant.swift
[1036/1235] Compiling SwiftGodot VisualShaderNodeIntFunc.swift
[1037/1235] Compiling SwiftGodot VisualShaderNodeIntOp.swift
[1038/1235] Compiling SwiftGodot VisualShaderNodeIntParameter.swift
[1039/1235] Compiling SwiftGodot VisualShaderNodeIs.swift
[1040/1235] Compiling SwiftGodot VisualShaderNodeLinearSceneDepth.swift
[1041/1235] Compiling SwiftGodot VisualShaderNodeMix.swift
[1042/1235] Compiling SwiftGodot VisualShaderNodeMultiplyAdd.swift
[1043/1235] Compiling SwiftGodot VisualShaderNodeOuterProduct.swift
[1044/1235] Compiling SwiftGodot VisualShaderNodeOutput.swift
[1045/1235] Compiling SwiftGodot VisualShaderNodeParameter.swift
[1046/1235] Compiling SwiftGodot VisualShaderNodeParameterRef.swift
[1047/1235] Compiling SwiftGodot VisualShaderNodeParticleAccelerator.swift
[1048/1235] Compiling SwiftGodot RDShaderSource.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1049/1235] Compiling SwiftGodot RDTextureFormat.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1050/1235] Compiling SwiftGodot RDTextureView.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1051/1235] Compiling SwiftGodot RDUniform.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1052/1235] Compiling SwiftGodot RDVertexAttribute.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1053/1235] Compiling SwiftGodot RandomNumberGenerator.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1054/1235] Compiling SwiftGodot Range.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1055/1235] Compiling SwiftGodot RayCast2D.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1056/1235] Compiling SwiftGodot RayCast3D.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1057/1235] Compiling SwiftGodot RectangleShape2D.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1058/1235] Compiling SwiftGodot RefCounted.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1059/1235] Compiling SwiftGodot ReferenceRect.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1060/1235] Compiling SwiftGodot ReflectionProbe.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1061/1235] Compiling SwiftGodot RegEx.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1062/1235] Compiling SwiftGodot RegExMatch.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1063/1235] Compiling SwiftGodot RemoteTransform2D.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1064/1235] Compiling SwiftGodot RemoteTransform3D.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1065/1235] Compiling SwiftGodot RenderingDevice.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1066/1235] Compiling SwiftGodot RenderingServer.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1067/1235] Compiling SwiftGodot RenderSceneBuffers.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1068/1235] Compiling SwiftGodot RenderSceneBuffersConfiguration.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1069/1235] Compiling SwiftGodot RenderSceneBuffersExtension.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1070/1235] Compiling SwiftGodot RenderSceneBuffersRD.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1071/1235] Compiling SwiftGodot Resource.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1072/1235] Compiling SwiftGodot ResourceFormatLoader.swift
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:273:71: error: integer literal '34359738368' overflows when stored into 'Int'
271 | public static let flagFormatVersionShift = ArrayFormat (rawValue: 35)
272 | /// 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.
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
/host/spi-builder-workspace/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated/RenderingServer.swift:275:77: error: integer literal '34359738368' overflows when stored into 'Int'
273 | public static let flagFormatVersion2 = ArrayFormat (rawValue: 34359738368)
274 | /// Flag used to record the current version that the engine expects. Currently this is the same as .arrayFlagFormatVersion2.
275 | public static let flagFormatCurrentVersion = ArrayFormat (rawValue: 34359738368)
| `- error: integer literal '34359738368' overflows when stored into 'Int'
276 | /// Flag used to isolate the bits used for mesh version after using .arrayFlagFormatVersionShift to shift them into place.
277 | public static let flagFormatVersionMask = ArrayFormat (rawValue: 255)
[1073/1235] Compiling SwiftGodot VisualShaderNodeTexture2DArray.swift
[1074/1235] Compiling SwiftGodot VisualShaderNodeTexture2DArrayParameter.swift
[1075/1235] Compiling SwiftGodot VisualShaderNodeTexture2DParameter.swift
[1076/1235] Compiling SwiftGodot VisualShaderNodeTexture3D.swift
[1077/1235] Compiling SwiftGodot VisualShaderNodeTexture3DParameter.swift
[1078/1235] Compiling SwiftGodot VisualShaderNodeTextureParameter.swift
[1079/1235] Compiling SwiftGodot VisualShaderNodeTextureParameterTriplanar.swift
[1080/1235] Compiling SwiftGodot VisualShaderNodeTextureSDF.swift
[1081/1235] Compiling SwiftGodot VisualShaderNodeTextureSDFNormal.swift
[1082/1235] Compiling SwiftGodot VisualShaderNodeTransformCompose.swift
[1083/1235] Compiling SwiftGodot VisualShaderNodeTransformConstant.swift
[1084/1235] Compiling SwiftGodot VisualShaderNodeTransformDecompose.swift
[1085/1235] Compiling SwiftGodot VisualShaderNodeTransformFunc.swift
[1086/1235] Compiling SwiftGodot VisualShaderNodeTransformOp.swift
[1087/1235] Compiling SwiftGodot VisualShaderNodeTransformParameter.swift
[1088/1235] Compiling SwiftGodot VisualShaderNodeTransformVecMult.swift
[1089/1235] Compiling SwiftGodot VisualShaderNodeUIntConstant.swift
[1090/1235] Compiling SwiftGodot VisualShaderNodeUIntFunc.swift
[1091/1235] Compiling SwiftGodot VisualShaderNodeUIntOp.swift
[1092/1235] Compiling SwiftGodot VisualShaderNodeUIntParameter.swift
[1093/1235] Compiling SwiftGodot VisualShaderNodeUVFunc.swift
[1094/1235] Compiling SwiftGodot VisualShaderNodeUVPolarCoord.swift
[1095/1235] Compiling SwiftGodot VisualShaderNodeVarying.swift
[1096/1235] Compiling SwiftGodot VisualShaderNodeVaryingGetter.swift
[1097/1235] Compiling SwiftGodot TriangleMesh.swift
[1098/1235] Compiling SwiftGodot TubeTrailMesh.swift
[1099/1235] Compiling SwiftGodot Tween.swift
[1100/1235] Compiling SwiftGodot Tweener.swift
[1101/1235] Compiling SwiftGodot UDPServer.swift
[1102/1235] Compiling SwiftGodot UPNP.swift
[1103/1235] Compiling SwiftGodot UPNPDevice.swift
[1104/1235] Compiling SwiftGodot UndoRedo.swift
[1105/1235] Compiling SwiftGodot VBoxContainer.swift
[1106/1235] Compiling SwiftGodot VFlowContainer.swift
[1107/1235] Compiling SwiftGodot VScrollBar.swift
[1108/1235] Compiling SwiftGodot VSeparator.swift
[1109/1235] Compiling SwiftGodot VSlider.swift
[1110/1235] Compiling SwiftGodot VSplitContainer.swift
[1111/1235] Compiling SwiftGodot VehicleBody3D.swift
[1112/1235] Compiling SwiftGodot VehicleWheel3D.swift
[1113/1235] Compiling SwiftGodot VideoStream.swift
[1114/1235] Compiling SwiftGodot VideoStreamPlayback.swift
[1115/1235] Compiling SwiftGodot VideoStreamPlayer.swift
[1116/1235] Compiling SwiftGodot VideoStreamTheora.swift
[1117/1235] Compiling SwiftGodot Viewport.swift
[1118/1235] Compiling SwiftGodot ViewportTexture.swift
[1119/1235] Compiling SwiftGodot VisibleOnScreenEnabler2D.swift
[1120/1235] Compiling SwiftGodot VisibleOnScreenEnabler3D.swift
[1121/1235] Compiling SwiftGodot VisibleOnScreenNotifier2D.swift
[1122/1235] Compiling SwiftGodot VisualShaderNodeVaryingSetter.swift
[1123/1235] Compiling SwiftGodot VisualShaderNodeVec2Constant.swift
[1124/1235] Compiling SwiftGodot VisualShaderNodeVec2Parameter.swift
[1125/1235] Compiling SwiftGodot VisualShaderNodeVec3Constant.swift
[1126/1235] Compiling SwiftGodot VisualShaderNodeVec3Parameter.swift
[1127/1235] Compiling SwiftGodot VisualShaderNodeVec4Constant.swift
[1128/1235] Compiling SwiftGodot VisualShaderNodeVec4Parameter.swift
[1129/1235] Compiling SwiftGodot VisualShaderNodeVectorBase.swift
[1130/1235] Compiling SwiftGodot VisualShaderNodeVectorCompose.swift
[1131/1235] Compiling SwiftGodot VisualShaderNodeVectorDecompose.swift
[1132/1235] Compiling SwiftGodot VisualShaderNodeVectorDistance.swift
[1133/1235] Compiling SwiftGodot VisualShaderNodeVectorFunc.swift
[1134/1235] Compiling SwiftGodot VisualShaderNodeVectorLen.swift
[1135/1235] Compiling SwiftGodot VisualShaderNodeVectorOp.swift
[1136/1235] Compiling SwiftGodot VisualShaderNodeVectorRefract.swift
[1137/1235] Compiling SwiftGodot VisualShaderNodeWorldPositionFromDepth.swift
[1138/1235] Compiling SwiftGodot VoxelGI.swift
[1139/1235] Compiling SwiftGodot VoxelGIData.swift
[1140/1235] Compiling SwiftGodot WeakRef.swift
[1141/1235] Compiling SwiftGodot WebRTCDataChannel.swift
[1142/1235] Compiling SwiftGodot WebRTCDataChannelExtension.swift
[1143/1235] Compiling SwiftGodot WebRTCMultiplayerPeer.swift
[1144/1235] Compiling SwiftGodot WebRTCPeerConnection.swift
[1145/1235] Compiling SwiftGodot WebRTCPeerConnectionExtension.swift
[1146/1235] Compiling SwiftGodot TextureButton.swift
[1147/1235] Compiling SwiftGodot TextureCubemapArrayRD.swift
[1148/1235] Compiling SwiftGodot TextureCubemapRD.swift
[1149/1235] Compiling SwiftGodot TextureLayered.swift
[1150/1235] Compiling SwiftGodot TextureLayeredRD.swift
[1151/1235] Compiling SwiftGodot TextureProgressBar.swift
[1152/1235] Compiling SwiftGodot TextureRect.swift
[1153/1235] Compiling SwiftGodot Theme.swift
[1154/1235] Compiling SwiftGodot ThemeDB.swift
[1155/1235] Compiling SwiftGodot Thread.swift
[1156/1235] Compiling SwiftGodot TileData.swift
[1157/1235] Compiling SwiftGodot TileMap.swift
[1158/1235] Compiling SwiftGodot TileMapPattern.swift
[1159/1235] Compiling SwiftGodot TileSet.swift
[1160/1235] Compiling SwiftGodot TileSetAtlasSource.swift
[1161/1235] Compiling SwiftGodot TileSetScenesCollectionSource.swift
[1162/1235] Compiling SwiftGodot TileSetSource.swift
[1163/1235] Compiling SwiftGodot Time.swift
[1164/1235] Compiling SwiftGodot Timer.swift
[1165/1235] Compiling SwiftGodot TorusMesh.swift
[1166/1235] Compiling SwiftGodot TouchScreenButton.swift
[1167/1235] Compiling SwiftGodot Translation.swift
[1168/1235] Compiling SwiftGodot TranslationServer.swift
[1169/1235] Compiling SwiftGodot Tree.swift
[1170/1235] Compiling SwiftGodot TreeItem.swift
[1171/1235] Compiling SwiftGodot WebSocketMultiplayerPeer.swift
[1172/1235] Compiling SwiftGodot WebSocketPeer.swift
[1173/1235] Compiling SwiftGodot WebXRInterface.swift
[1174/1235] Compiling SwiftGodot Window.swift
[1175/1235] Compiling SwiftGodot WorkerThreadPool.swift
[1176/1235] Compiling SwiftGodot World2D.swift
[1177/1235] Compiling SwiftGodot World3D.swift
[1178/1235] Compiling SwiftGodot WorldBoundaryShape2D.swift
[1179/1235] Compiling SwiftGodot WorldBoundaryShape3D.swift
[1180/1235] Compiling SwiftGodot WorldEnvironment.swift
[1181/1235] Compiling SwiftGodot X509Certificate.swift
[1182/1235] Compiling SwiftGodot XMLParser.swift
[1183/1235] Compiling SwiftGodot XRAnchor3D.swift
[1184/1235] Compiling SwiftGodot XRCamera3D.swift
[1185/1235] Compiling SwiftGodot XRController3D.swift
[1186/1235] Compiling SwiftGodot XRInterface.swift
[1187/1235] Compiling SwiftGodot XRInterfaceExtension.swift
[1188/1235] Compiling SwiftGodot XRNode3D.swift
[1189/1235] Compiling SwiftGodot XROrigin3D.swift
[1190/1235] Compiling SwiftGodot XRPose.swift
[1191/1235] Compiling SwiftGodot XRPositionalTracker.swift
[1192/1235] Compiling SwiftGodot XRServer.swift
[1193/1235] Compiling SwiftGodot ZIPPacker.swift
[1194/1235] Compiling SwiftGodot ZIPReader.swift
[1195/1235] Compiling SwiftGodot SubViewport.swift
[1196/1235] Compiling SwiftGodot SubViewportContainer.swift
[1197/1235] Compiling SwiftGodot SurfaceTool.swift
[1198/1235] Compiling SwiftGodot SyntaxHighlighter.swift
[1199/1235] Compiling SwiftGodot SystemFont.swift
[1200/1235] Compiling SwiftGodot TCPServer.swift
[1201/1235] Compiling SwiftGodot TLSOptions.swift
[1202/1235] Compiling SwiftGodot TabBar.swift
[1203/1235] Compiling SwiftGodot TabContainer.swift
[1204/1235] Compiling SwiftGodot TextEdit.swift
[1205/1235] Compiling SwiftGodot TextLine.swift
[1206/1235] Compiling SwiftGodot TextMesh.swift
[1207/1235] Compiling SwiftGodot TextParagraph.swift
[1208/1235] Compiling SwiftGodot TextServer.swift
[1209/1235] Compiling SwiftGodot TextServerAdvanced.swift
[1210/1235] Compiling SwiftGodot TextServerDummy.swift
[1211/1235] Compiling SwiftGodot TextServerExtension.swift
[1212/1235] Compiling SwiftGodot TextServerManager.swift
[1213/1235] Compiling SwiftGodot Texture.swift
[1214/1235] Compiling SwiftGodot Texture2D.swift
[1215/1235] Compiling SwiftGodot Texture2DArray.swift
[1216/1235] Compiling SwiftGodot Texture2DArrayRD.swift
[1217/1235] Compiling SwiftGodot Texture2DRD.swift
[1218/1235] Compiling SwiftGodot Texture3D.swift
[1219/1235] Compiling SwiftGodot Texture3DRD.swift
BUILD FAILURE 6.1 wasm