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