Build Information
Failed to build Socket, reference main (85fdca
), with Swift 6.1 for Wasm on 8 Sep 2025 20:43:06 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:67: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:274:10: error: cannot find 'freeaddrinfo' in scope
272 | }
273 | #endif
274 | return freeaddrinfo(addrinfo)
| `- error: cannot find 'freeaddrinfo' in scope
275 | }
276 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:281:10: error: cannot find 'gai_strerror' in scope
279 | // FIXME
280 | #endif
281 | return gai_strerror(error)
| `- error: cannot find 'gai_strerror' in scope
282 | }
283 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:295:10: error: cannot find 'listen' in scope
293 | if mockingEnabled { return _mock(socket, backlog) }
294 | #endif
295 | return listen(socket, backlog)
| `- error: cannot find 'listen' in scope
296 | }
297 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:335:10: error: cannot find 'sendto' in scope
333 | }
334 | #endif
335 | return sendto(socket, buffer, length, flags, dest_addr, dest_len)
| `- error: cannot find 'sendto' in scope
336 | }
337 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:351:10: error: cannot find 'recvfrom' in scope
349 | }
350 | #endif
351 | return recvfrom(socket, buffer, length, flags, address, addres_len)
| `- error: cannot find 'recvfrom' in scope
352 | }
353 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:373:10: error: cannot find 'sendmsg' in scope
371 | if mockingEnabled { return _mockInt(socket, message, flags) }
372 | #endif
373 | return sendmsg(socket, message, flags)
| `- error: cannot find 'sendmsg' in scope
374 | }
375 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:384:10: error: cannot find 'recvmsg' in scope
382 | if mockingEnabled { return _mockInt(socket, message, flags) }
383 | #endif
384 | return recvmsg(socket, message, flags)
| `- error: cannot find 'recvmsg' in scope
385 | }
386 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:479:12: error: cannot find 'if_freenameindex' in scope
477 | if mockingEnabled { return _mock(pointer) }
478 | #endif
479 | return if_freenameindex(pointer)
| `- error: cannot find 'if_freenameindex' in scope
480 | }
481 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:516:12: error: cannot find 'getsockname' in scope
514 | if mockingEnabled { return _mock(fd, address) }
515 | #endif
516 | return getsockname(fd, address, length)
| `- error: cannot find 'getsockname' in scope
517 | }
518 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:523:12: error: cannot find 'getpeername' in scope
521 | if mockingEnabled { return _mock(fd, address) }
522 | #endif
523 | return getpeername(fd, address, length)
| `- error: cannot find 'getpeername' in scope
524 | }
525 |
[65/88] Compiling Socket Util.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:176:10: error: cannot find 'socket' in scope
174 | if mockingEnabled { return _mock(fd, fd2, fd3) }
175 | #endif
176 | return socket(fd, fd2, fd3)
| `- error: cannot find 'socket' in scope
177 | }
178 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:183:10: error: cannot find 'setsockopt' in scope
181 | if mockingEnabled { return _mock(fd, fd2, fd3, pointer, dataLength) }
182 | #endif
183 | return setsockopt(fd, fd2, fd3, pointer, dataLength)
| `- error: cannot find 'setsockopt' in scope
184 | }
185 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:207:10: error: cannot find 'bind' in scope
205 | if mockingEnabled { return _mock(socket, address, length) }
206 | #endif
207 | return bind(socket, address, length)
| `- error: cannot find 'bind' in scope
208 | }
209 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:218:10: error: cannot find 'connect' in scope
216 | if mockingEnabled { return _mock(socket, addr, len) }
217 | #endif
218 | return connect(socket, addr, len)
| `- error: cannot find 'connect' in scope
219 | }
220 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:245:10: error: cannot find 'getaddrinfo' in scope
243 | }
244 | #endif
245 | return getaddrinfo(hostname, servname, hints, res)
| `- error: cannot find 'getaddrinfo' in scope
246 | }
247 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:10: error: cannot find 'getnameinfo' in scope
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: cannot find 'getnameinfo' in scope
263 | }
264 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:39: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:67: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:274:10: error: cannot find 'freeaddrinfo' in scope
272 | }
273 | #endif
274 | return freeaddrinfo(addrinfo)
| `- error: cannot find 'freeaddrinfo' in scope
275 | }
276 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:281:10: error: cannot find 'gai_strerror' in scope
279 | // FIXME
280 | #endif
281 | return gai_strerror(error)
| `- error: cannot find 'gai_strerror' in scope
282 | }
283 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:295:10: error: cannot find 'listen' in scope
293 | if mockingEnabled { return _mock(socket, backlog) }
294 | #endif
295 | return listen(socket, backlog)
| `- error: cannot find 'listen' in scope
296 | }
297 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:335:10: error: cannot find 'sendto' in scope
333 | }
334 | #endif
335 | return sendto(socket, buffer, length, flags, dest_addr, dest_len)
| `- error: cannot find 'sendto' in scope
336 | }
337 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:351:10: error: cannot find 'recvfrom' in scope
349 | }
350 | #endif
351 | return recvfrom(socket, buffer, length, flags, address, addres_len)
| `- error: cannot find 'recvfrom' in scope
352 | }
353 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:373:10: error: cannot find 'sendmsg' in scope
371 | if mockingEnabled { return _mockInt(socket, message, flags) }
372 | #endif
373 | return sendmsg(socket, message, flags)
| `- error: cannot find 'sendmsg' in scope
374 | }
375 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:384:10: error: cannot find 'recvmsg' in scope
382 | if mockingEnabled { return _mockInt(socket, message, flags) }
383 | #endif
384 | return recvmsg(socket, message, flags)
| `- error: cannot find 'recvmsg' in scope
385 | }
386 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:479:12: error: cannot find 'if_freenameindex' in scope
477 | if mockingEnabled { return _mock(pointer) }
478 | #endif
479 | return if_freenameindex(pointer)
| `- error: cannot find 'if_freenameindex' in scope
480 | }
481 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:516:12: error: cannot find 'getsockname' in scope
514 | if mockingEnabled { return _mock(fd, address) }
515 | #endif
516 | return getsockname(fd, address, length)
| `- error: cannot find 'getsockname' in scope
517 | }
518 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:523:12: error: cannot find 'getpeername' in scope
521 | if mockingEnabled { return _mock(fd, address) }
522 | #endif
523 | return getpeername(fd, address, length)
| `- error: cannot find 'getpeername' in scope
524 | }
525 |
[66/88] Compiling Socket SocketFlags.swift
[67/88] Compiling Socket SocketHelpers.swift
[68/88] Compiling Socket SocketOperations.swift
[69/88] Compiling Socket SocketOption.swift
[70/88] Compiling Socket SocketOptionID.swift
[71/88] Compiling Socket IPv6SocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[72/88] Compiling Socket LinkLayerSocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[73/88] Compiling Socket UnixSocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[74/88] Compiling Socket SocketAddressFamily.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[75/88] Compiling Socket SocketDescriptor.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[76/88] Compiling Socket SocketEvent.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[77/88] Compiling Socket MessageFlags.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[78/88] Compiling Socket NetworkInterface.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[79/88] Compiling Socket NetworkOrder.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[80/88] Compiling Socket Poll.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[81/88] Compiling Socket SocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[82/88] Compiling Socket IPv4SocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[83/88] Compiling Socket Socket.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[84/88] Compiling Socket SocketContinuation.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[85/88] Compiling Socket SocketManager.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[86/88] Compiling Socket AsyncSocketManager.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[87/88] Compiling Socket CFSocketManager.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[88/88] Compiling Socket CInternetAddress.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:eb0758f51dbd6991fb9e51dedbfbcbec142ffc0d3b9b8ad91fa19d35e5136f0a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/32] Compiling SystemPackage IORing.swift
[3/32] Compiling SystemPackage RawIORequest.swift
[4/32] Compiling SystemPackage Backcompat.swift
[5/32] Compiling SystemPackage CInterop.swift
[6/32] Compiling SystemPackage FilePathWindows.swift
[7/32] Compiling SystemPackage FilePermissions.swift
[8/32] Compiling SystemPackage IOCompletion.swift
[9/32] Compiling SystemPackage IORequest.swift
[10/36] Compiling SystemPackage Constants.swift
[11/36] Compiling SystemPackage Exports.swift
[12/36] Compiling SystemPackage Mocking.swift
[13/36] Compiling SystemPackage RawBuffer.swift
[14/36] Emitting module SystemPackage
[15/36] Compiling SystemPackage Errno.swift
[16/36] Compiling SystemPackage ErrnoWindows.swift
[17/36] Compiling SystemPackage FileDescriptor.swift
[18/36] Compiling SystemPackage FileHelpers.swift
[19/36] Compiling SystemPackage FileOperations.swift
[20/36] Compiling SystemPackage FilePathSyntax.swift
[21/36] Compiling SystemPackage FilePathTemp.swift
[22/36] Compiling SystemPackage FilePathTempPosix.swift
[23/36] Compiling SystemPackage FilePathTempWindows.swift
[24/36] Compiling SystemPackage Syscalls.swift
[25/36] Compiling SystemPackage WindowsSyscallAdapters.swift
[26/36] Compiling SystemPackage MachPort.swift
[27/36] Compiling SystemPackage PlatformString.swift
[28/36] Compiling SystemPackage FilePath.swift
[29/36] Compiling SystemPackage FilePathComponentView.swift
[30/36] Compiling SystemPackage FilePathComponents.swift
[31/36] Compiling SystemPackage FilePathParsing.swift
[32/36] Compiling SystemPackage FilePathString.swift
[33/36] Compiling SystemPackage SystemString.swift
[34/36] Compiling SystemPackage Util+StringArray.swift
[35/36] Compiling SystemPackage Util.swift
[36/36] Compiling SystemPackage UtilConsumers.swift
[38/78] Compiling Socket IPv6SocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[39/78] Compiling Socket LinkLayerSocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[40/78] Compiling Socket UnixSocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[41/78] Compiling Socket SocketAddressFamily.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[42/78] Compiling Socket SocketDescriptor.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[43/78] Compiling Socket SocketEvent.swift
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:24:43: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
22 |
23 | internal init(_ cValue: CInterop.UnixSocketAddress) {
24 | self = withUnsafeBytes(of: cValue.sun_path) { pathPointer in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
25 | Self.init(path: FilePath(platformString: pathPointer.baseAddress!.assumingMemoryBound(to: CInterop.PlatformChar.self)))
26 | }
/host/spi-builder-workspace/Sources/Socket/System/SocketAddress/UnixSocketAddress.swift:35:55: error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
33 | var socketAddress = CInterop.UnixSocketAddress()
34 | socketAddress.sun_family = numericCast(Self.family.rawValue)
35 | withUnsafeMutableBytes(of: &socketAddress.sun_path) { pathBytes in
| `- error: value of type 'CInterop.UnixSocketAddress' (aka 'sockaddr_un') has no member 'sun_path'
36 | pathBytes
37 | .bindMemory(to: CInterop.PlatformChar.self)
[44/78] Compiling Socket MessageFlags.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[45/78] Compiling Socket NetworkInterface.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[46/78] Compiling Socket NetworkOrder.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[47/78] Compiling Socket Poll.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[48/78] Compiling Socket SocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[49/78] Compiling Socket IPv4SocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:59: error: missing argument label 'index:' in call
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument label 'index:' in call
108 | }
109 | }
/host/spi-builder-workspace/Sources/Socket/System/NetworkInterface.swift:107:70: error: missing argument for parameter 'name' in call
81 | // MARK: - Supporting Types
82 |
83 | public struct NetworkInterfaceID: Equatable, Hashable, Sendable {
| `- note: 'init(index:name:)' declared here
84 |
85 | /// Interface index.
:
105 | }
106 | // get interfaces
107 | return (0 ..< count).map { NetworkInterfaceID(pointer[$0]) }
| `- error: missing argument for parameter 'name' in call
108 | }
109 | }
[50/83] Compiling Socket CInterop.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:43:34: error: cannot find 'O_NONBLOCK' in scope
41 |
42 | @_alwaysEmitIntoClient
43 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
44 | #endif
45 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:47:32: error: cannot find 'O_APPEND' in scope
45 |
46 | @_alwaysEmitIntoClient
47 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
48 |
49 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:60:31: error: cannot find 'O_ASYNC' in scope
58 | // TODO: API?
59 | @_alwaysEmitIntoClient
60 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:67:31: error: cannot find 'O_CREAT' in scope
65 |
66 | @_alwaysEmitIntoClient
67 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
68 |
69 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:13:9: note: macro 'O_CREAT' unavailable: structure not supported
11 | #define O_RSYNC __WASI_FDFLAGS_RSYNC
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
| `- note: macro 'O_CREAT' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:70:31: error: cannot find 'O_TRUNC' in scope
68 |
69 | @_alwaysEmitIntoClient
70 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
71 |
72 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:16:9: note: macro 'O_TRUNC' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
| `- note: macro 'O_TRUNC' unavailable: structure not supported
17 |
18 | #define O_NOFOLLOW (0x01000000)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:73:30: error: cannot find 'O_EXCL' in scope
71 |
72 | @_alwaysEmitIntoClient
73 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
74 |
75 | #if canImport(Darwin)
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:15:9: note: macro 'O_EXCL' unavailable: structure not supported
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
| `- note: macro 'O_EXCL' unavailable: structure not supported
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
17 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:86:35: error: cannot find 'O_DIRECTORY' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
87 | #endif
88 |
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:14:9: note: macro 'O_DIRECTORY' unavailable: structure not supported
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
| `- note: macro 'O_DIRECTORY' unavailable: structure not supported
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:120:31: error: cannot find 'F_DUPFD' in scope
118 |
119 | @_alwaysEmitIntoClient
120 | internal var _F_DUPFD: CInt { F_DUPFD }
| `- error: cannot find 'F_DUPFD' in scope
121 |
122 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:123:39: error: cannot find 'F_DUPFD_CLOEXEC' in scope
121 |
122 | @_alwaysEmitIntoClient
123 | internal var _F_DUPFD_CLOEXEC: CInt { F_DUPFD_CLOEXEC }
| `- error: cannot find 'F_DUPFD_CLOEXEC' in scope
124 |
125 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:141:31: error: cannot find 'POLLPRI' in scope
139 |
140 | @_alwaysEmitIntoClient
141 | internal var _POLLPRI: CInt { POLLPRI }
| `- error: cannot find 'POLLPRI' in scope
142 |
143 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:153:34: error: cannot find 'POLLRDBAND' in scope
151 |
152 | @_alwaysEmitIntoClient
153 | internal var _POLLRDBAND: CInt { POLLRDBAND }
| `- error: cannot find 'POLLRDBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:156:34: error: cannot find 'POLLWRBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
156 | internal var _POLLWRBAND: CInt { POLLWRBAND }
| `- error: cannot find 'POLLWRBAND' in scope
157 |
158 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:200:30: error: cannot find 'AF_IPX' in scope
198 |
199 | @_alwaysEmitIntoClient
200 | internal var _AF_IPX: CInt { AF_IPX }
| `- error: cannot find 'AF_IPX' in scope
201 |
202 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:203:36: error: cannot find 'AF_APPLETALK' in scope
201 |
202 | @_alwaysEmitIntoClient
203 | internal var _AF_APPLETALK: CInt { AF_APPLETALK }
| `- error: cannot find 'AF_APPLETALK' in scope
204 |
205 | #if !os(Windows)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:207:33: error: cannot find 'AF_DECnet' in scope
205 | #if !os(Windows)
206 | @_alwaysEmitIntoClient
207 | internal var _AF_DECnet: CInt { AF_DECnet }
| `- error: cannot find 'AF_DECnet' in scope
208 |
209 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:210:32: error: cannot find 'AF_VSOCK' in scope
208 |
209 | @_alwaysEmitIntoClient
210 | internal var _AF_VSOCK: CInt { AF_VSOCK }
| `- error: cannot find 'AF_VSOCK' in scope
211 |
212 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:213:31: error: cannot find 'AF_ISDN' in scope
211 |
212 | @_alwaysEmitIntoClient
213 | internal var _AF_ISDN: CInt { AF_ISDN }
| `- error: cannot find 'AF_ISDN' in scope
214 | #endif
215 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:341:33: error: cannot find 'SOMAXCONN' in scope
339 | /// Maximum queue length specifiable by listen.
340 | @_alwaysEmitIntoClient
341 | internal var _SOMAXCONN: CInt { SOMAXCONN }
| `- error: cannot find 'SOMAXCONN' in scope
342 |
343 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:347:32: error: cannot find 'SO_DEBUG' in scope
345 |
346 | @_alwaysEmitIntoClient
347 | internal var _SO_DEBUG: CInt { SO_DEBUG }
| `- error: cannot find 'SO_DEBUG' in scope
348 |
349 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:350:37: error: cannot find 'SO_ACCEPTCONN' in scope
348 |
349 | @_alwaysEmitIntoClient
350 | internal var _SO_ACCEPTCONN: CInt { SO_ACCEPTCONN }
| `- error: cannot find 'SO_ACCEPTCONN' in scope
351 |
352 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:353:36: error: cannot find 'SO_REUSEADDR' in scope
351 |
352 | @_alwaysEmitIntoClient
353 | internal var _SO_REUSEADDR: CInt { SO_REUSEADDR }
| `- error: cannot find 'SO_REUSEADDR' in scope
354 |
355 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:356:36: error: cannot find 'SO_KEEPALIVE' in scope
354 |
355 | @_alwaysEmitIntoClient
356 | internal var _SO_KEEPALIVE: CInt { SO_KEEPALIVE }
| `- error: cannot find 'SO_KEEPALIVE' in scope
357 |
358 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:359:36: error: cannot find 'SO_DONTROUTE' in scope
357 |
358 | @_alwaysEmitIntoClient
359 | internal var _SO_DONTROUTE: CInt { SO_DONTROUTE }
| `- error: cannot find 'SO_DONTROUTE' in scope
360 |
361 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:362:36: error: cannot find 'SO_BROADCAST' in scope
360 |
361 | @_alwaysEmitIntoClient
362 | internal var _SO_BROADCAST: CInt { SO_BROADCAST }
| `- error: cannot find 'SO_BROADCAST' in scope
363 |
364 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:370:33: error: cannot find 'SO_LINGER' in scope
368 |
369 | @_alwaysEmitIntoClient
370 | internal var _SO_LINGER: CInt { SO_LINGER }
| `- error: cannot find 'SO_LINGER' in scope
371 |
372 | #if os(Linux)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:384:50: error: cannot find 'SOCK_STREAM' in scope
382 |
383 | @_alwaysEmitIntoClient
384 | internal var _SOCK_STREAM: CInterop.SocketType { SOCK_STREAM }
| `- error: cannot find 'SOCK_STREAM' in scope
385 |
386 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:387:49: error: cannot find 'SOCK_DGRAM' in scope
385 |
386 | @_alwaysEmitIntoClient
387 | internal var _SOCK_DGRAM: CInterop.SocketType { SOCK_DGRAM }
| `- error: cannot find 'SOCK_DGRAM' in scope
388 |
389 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:390:47: error: cannot find 'SOCK_RAW' in scope
388 |
389 | @_alwaysEmitIntoClient
390 | internal var _SOCK_RAW: CInterop.SocketType { SOCK_RAW }
| `- error: cannot find 'SOCK_RAW' in scope
391 |
392 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:393:47: error: cannot find 'SOCK_RDM' in scope
391 |
392 | @_alwaysEmitIntoClient
393 | internal var _SOCK_RDM: CInterop.SocketType { SOCK_RDM }
| `- error: cannot find 'SOCK_RDM' in scope
394 |
395 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:396:53: error: cannot find 'SOCK_SEQPACKET' in scope
394 |
395 | @_alwaysEmitIntoClient
396 | internal var _SOCK_SEQPACKET: CInterop.SocketType { SOCK_SEQPACKET }
| `- error: cannot find 'SOCK_SEQPACKET' in scope
397 |
398 | #if os(Linux) || os(Android)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:410:49: error: cannot find 'MSG_DONTROUTE' in scope
408 |
409 | @_alwaysEmitIntoClient
410 | internal var _MSG_DONTROUTE: CInt { numericCast(MSG_DONTROUTE) } /* send without using routing tables */
| `- error: cannot find 'MSG_DONTROUTE' in scope
411 |
412 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:413:43: error: cannot find 'MSG_EOR' in scope
411 |
412 | @_alwaysEmitIntoClient
413 | internal var _MSG_EOR: CInt { numericCast(MSG_EOR) } /* data completes record */
| `- error: cannot find 'MSG_EOR' in scope
414 |
415 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:416:43: error: cannot find 'MSG_OOB' in scope
414 |
415 | @_alwaysEmitIntoClient
416 | internal var _MSG_OOB: CInt { numericCast(MSG_OOB) } /* process out-of-band data */
| `- error: cannot find 'MSG_OOB' in scope
417 |
418 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:419:44: error: cannot find 'MSG_PEEK' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
| `- error: cannot find 'MSG_PEEK' in scope
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:421:45: error: cannot find 'MSG_TRUNC' in scope
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
| `- error: cannot find 'MSG_TRUNC' in scope
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:423:46: error: cannot find 'MSG_CTRUNC' in scope
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
| `- error: cannot find 'MSG_CTRUNC' in scope
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:425:47: error: cannot find 'MSG_WAITALL' in scope
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
| `- error: cannot find 'MSG_WAITALL' in scope
426 |
427 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:428:48: error: cannot find 'MSG_DONTWAIT' in scope
426 |
427 | @_alwaysEmitIntoClient
428 | internal var _MSG_DONTWAIT: CInt { numericCast(MSG_DONTWAIT) } /* this message should be nonblocking */
| `- error: cannot find 'MSG_DONTWAIT' in scope
429 |
430 | #if canImport(Darwin)
[51/83] Compiling Socket CSocketAddress.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:43:34: error: cannot find 'O_NONBLOCK' in scope
41 |
42 | @_alwaysEmitIntoClient
43 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
44 | #endif
45 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:47:32: error: cannot find 'O_APPEND' in scope
45 |
46 | @_alwaysEmitIntoClient
47 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
48 |
49 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:60:31: error: cannot find 'O_ASYNC' in scope
58 | // TODO: API?
59 | @_alwaysEmitIntoClient
60 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:67:31: error: cannot find 'O_CREAT' in scope
65 |
66 | @_alwaysEmitIntoClient
67 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
68 |
69 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:13:9: note: macro 'O_CREAT' unavailable: structure not supported
11 | #define O_RSYNC __WASI_FDFLAGS_RSYNC
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
| `- note: macro 'O_CREAT' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:70:31: error: cannot find 'O_TRUNC' in scope
68 |
69 | @_alwaysEmitIntoClient
70 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
71 |
72 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:16:9: note: macro 'O_TRUNC' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
| `- note: macro 'O_TRUNC' unavailable: structure not supported
17 |
18 | #define O_NOFOLLOW (0x01000000)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:73:30: error: cannot find 'O_EXCL' in scope
71 |
72 | @_alwaysEmitIntoClient
73 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
74 |
75 | #if canImport(Darwin)
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:15:9: note: macro 'O_EXCL' unavailable: structure not supported
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
| `- note: macro 'O_EXCL' unavailable: structure not supported
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
17 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:86:35: error: cannot find 'O_DIRECTORY' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
87 | #endif
88 |
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:14:9: note: macro 'O_DIRECTORY' unavailable: structure not supported
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
| `- note: macro 'O_DIRECTORY' unavailable: structure not supported
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:120:31: error: cannot find 'F_DUPFD' in scope
118 |
119 | @_alwaysEmitIntoClient
120 | internal var _F_DUPFD: CInt { F_DUPFD }
| `- error: cannot find 'F_DUPFD' in scope
121 |
122 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:123:39: error: cannot find 'F_DUPFD_CLOEXEC' in scope
121 |
122 | @_alwaysEmitIntoClient
123 | internal var _F_DUPFD_CLOEXEC: CInt { F_DUPFD_CLOEXEC }
| `- error: cannot find 'F_DUPFD_CLOEXEC' in scope
124 |
125 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:141:31: error: cannot find 'POLLPRI' in scope
139 |
140 | @_alwaysEmitIntoClient
141 | internal var _POLLPRI: CInt { POLLPRI }
| `- error: cannot find 'POLLPRI' in scope
142 |
143 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:153:34: error: cannot find 'POLLRDBAND' in scope
151 |
152 | @_alwaysEmitIntoClient
153 | internal var _POLLRDBAND: CInt { POLLRDBAND }
| `- error: cannot find 'POLLRDBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:156:34: error: cannot find 'POLLWRBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
156 | internal var _POLLWRBAND: CInt { POLLWRBAND }
| `- error: cannot find 'POLLWRBAND' in scope
157 |
158 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:200:30: error: cannot find 'AF_IPX' in scope
198 |
199 | @_alwaysEmitIntoClient
200 | internal var _AF_IPX: CInt { AF_IPX }
| `- error: cannot find 'AF_IPX' in scope
201 |
202 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:203:36: error: cannot find 'AF_APPLETALK' in scope
201 |
202 | @_alwaysEmitIntoClient
203 | internal var _AF_APPLETALK: CInt { AF_APPLETALK }
| `- error: cannot find 'AF_APPLETALK' in scope
204 |
205 | #if !os(Windows)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:207:33: error: cannot find 'AF_DECnet' in scope
205 | #if !os(Windows)
206 | @_alwaysEmitIntoClient
207 | internal var _AF_DECnet: CInt { AF_DECnet }
| `- error: cannot find 'AF_DECnet' in scope
208 |
209 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:210:32: error: cannot find 'AF_VSOCK' in scope
208 |
209 | @_alwaysEmitIntoClient
210 | internal var _AF_VSOCK: CInt { AF_VSOCK }
| `- error: cannot find 'AF_VSOCK' in scope
211 |
212 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:213:31: error: cannot find 'AF_ISDN' in scope
211 |
212 | @_alwaysEmitIntoClient
213 | internal var _AF_ISDN: CInt { AF_ISDN }
| `- error: cannot find 'AF_ISDN' in scope
214 | #endif
215 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:341:33: error: cannot find 'SOMAXCONN' in scope
339 | /// Maximum queue length specifiable by listen.
340 | @_alwaysEmitIntoClient
341 | internal var _SOMAXCONN: CInt { SOMAXCONN }
| `- error: cannot find 'SOMAXCONN' in scope
342 |
343 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:347:32: error: cannot find 'SO_DEBUG' in scope
345 |
346 | @_alwaysEmitIntoClient
347 | internal var _SO_DEBUG: CInt { SO_DEBUG }
| `- error: cannot find 'SO_DEBUG' in scope
348 |
349 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:350:37: error: cannot find 'SO_ACCEPTCONN' in scope
348 |
349 | @_alwaysEmitIntoClient
350 | internal var _SO_ACCEPTCONN: CInt { SO_ACCEPTCONN }
| `- error: cannot find 'SO_ACCEPTCONN' in scope
351 |
352 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:353:36: error: cannot find 'SO_REUSEADDR' in scope
351 |
352 | @_alwaysEmitIntoClient
353 | internal var _SO_REUSEADDR: CInt { SO_REUSEADDR }
| `- error: cannot find 'SO_REUSEADDR' in scope
354 |
355 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:356:36: error: cannot find 'SO_KEEPALIVE' in scope
354 |
355 | @_alwaysEmitIntoClient
356 | internal var _SO_KEEPALIVE: CInt { SO_KEEPALIVE }
| `- error: cannot find 'SO_KEEPALIVE' in scope
357 |
358 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:359:36: error: cannot find 'SO_DONTROUTE' in scope
357 |
358 | @_alwaysEmitIntoClient
359 | internal var _SO_DONTROUTE: CInt { SO_DONTROUTE }
| `- error: cannot find 'SO_DONTROUTE' in scope
360 |
361 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:362:36: error: cannot find 'SO_BROADCAST' in scope
360 |
361 | @_alwaysEmitIntoClient
362 | internal var _SO_BROADCAST: CInt { SO_BROADCAST }
| `- error: cannot find 'SO_BROADCAST' in scope
363 |
364 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:370:33: error: cannot find 'SO_LINGER' in scope
368 |
369 | @_alwaysEmitIntoClient
370 | internal var _SO_LINGER: CInt { SO_LINGER }
| `- error: cannot find 'SO_LINGER' in scope
371 |
372 | #if os(Linux)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:384:50: error: cannot find 'SOCK_STREAM' in scope
382 |
383 | @_alwaysEmitIntoClient
384 | internal var _SOCK_STREAM: CInterop.SocketType { SOCK_STREAM }
| `- error: cannot find 'SOCK_STREAM' in scope
385 |
386 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:387:49: error: cannot find 'SOCK_DGRAM' in scope
385 |
386 | @_alwaysEmitIntoClient
387 | internal var _SOCK_DGRAM: CInterop.SocketType { SOCK_DGRAM }
| `- error: cannot find 'SOCK_DGRAM' in scope
388 |
389 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:390:47: error: cannot find 'SOCK_RAW' in scope
388 |
389 | @_alwaysEmitIntoClient
390 | internal var _SOCK_RAW: CInterop.SocketType { SOCK_RAW }
| `- error: cannot find 'SOCK_RAW' in scope
391 |
392 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:393:47: error: cannot find 'SOCK_RDM' in scope
391 |
392 | @_alwaysEmitIntoClient
393 | internal var _SOCK_RDM: CInterop.SocketType { SOCK_RDM }
| `- error: cannot find 'SOCK_RDM' in scope
394 |
395 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:396:53: error: cannot find 'SOCK_SEQPACKET' in scope
394 |
395 | @_alwaysEmitIntoClient
396 | internal var _SOCK_SEQPACKET: CInterop.SocketType { SOCK_SEQPACKET }
| `- error: cannot find 'SOCK_SEQPACKET' in scope
397 |
398 | #if os(Linux) || os(Android)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:410:49: error: cannot find 'MSG_DONTROUTE' in scope
408 |
409 | @_alwaysEmitIntoClient
410 | internal var _MSG_DONTROUTE: CInt { numericCast(MSG_DONTROUTE) } /* send without using routing tables */
| `- error: cannot find 'MSG_DONTROUTE' in scope
411 |
412 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:413:43: error: cannot find 'MSG_EOR' in scope
411 |
412 | @_alwaysEmitIntoClient
413 | internal var _MSG_EOR: CInt { numericCast(MSG_EOR) } /* data completes record */
| `- error: cannot find 'MSG_EOR' in scope
414 |
415 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:416:43: error: cannot find 'MSG_OOB' in scope
414 |
415 | @_alwaysEmitIntoClient
416 | internal var _MSG_OOB: CInt { numericCast(MSG_OOB) } /* process out-of-band data */
| `- error: cannot find 'MSG_OOB' in scope
417 |
418 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:419:44: error: cannot find 'MSG_PEEK' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
| `- error: cannot find 'MSG_PEEK' in scope
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:421:45: error: cannot find 'MSG_TRUNC' in scope
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
| `- error: cannot find 'MSG_TRUNC' in scope
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:423:46: error: cannot find 'MSG_CTRUNC' in scope
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
| `- error: cannot find 'MSG_CTRUNC' in scope
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:425:47: error: cannot find 'MSG_WAITALL' in scope
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
| `- error: cannot find 'MSG_WAITALL' in scope
426 |
427 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:428:48: error: cannot find 'MSG_DONTWAIT' in scope
426 |
427 | @_alwaysEmitIntoClient
428 | internal var _MSG_DONTWAIT: CInt { numericCast(MSG_DONTWAIT) } /* this message should be nonblocking */
| `- error: cannot find 'MSG_DONTWAIT' in scope
429 |
430 | #if canImport(Darwin)
[52/83] Compiling Socket Constants.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:43:34: error: cannot find 'O_NONBLOCK' in scope
41 |
42 | @_alwaysEmitIntoClient
43 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
44 | #endif
45 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:47:32: error: cannot find 'O_APPEND' in scope
45 |
46 | @_alwaysEmitIntoClient
47 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
48 |
49 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:60:31: error: cannot find 'O_ASYNC' in scope
58 | // TODO: API?
59 | @_alwaysEmitIntoClient
60 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:67:31: error: cannot find 'O_CREAT' in scope
65 |
66 | @_alwaysEmitIntoClient
67 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
68 |
69 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:13:9: note: macro 'O_CREAT' unavailable: structure not supported
11 | #define O_RSYNC __WASI_FDFLAGS_RSYNC
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
| `- note: macro 'O_CREAT' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:70:31: error: cannot find 'O_TRUNC' in scope
68 |
69 | @_alwaysEmitIntoClient
70 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
71 |
72 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:16:9: note: macro 'O_TRUNC' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
| `- note: macro 'O_TRUNC' unavailable: structure not supported
17 |
18 | #define O_NOFOLLOW (0x01000000)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:73:30: error: cannot find 'O_EXCL' in scope
71 |
72 | @_alwaysEmitIntoClient
73 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
74 |
75 | #if canImport(Darwin)
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:15:9: note: macro 'O_EXCL' unavailable: structure not supported
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
| `- note: macro 'O_EXCL' unavailable: structure not supported
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
17 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:86:35: error: cannot find 'O_DIRECTORY' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
87 | #endif
88 |
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:14:9: note: macro 'O_DIRECTORY' unavailable: structure not supported
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
| `- note: macro 'O_DIRECTORY' unavailable: structure not supported
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:120:31: error: cannot find 'F_DUPFD' in scope
118 |
119 | @_alwaysEmitIntoClient
120 | internal var _F_DUPFD: CInt { F_DUPFD }
| `- error: cannot find 'F_DUPFD' in scope
121 |
122 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:123:39: error: cannot find 'F_DUPFD_CLOEXEC' in scope
121 |
122 | @_alwaysEmitIntoClient
123 | internal var _F_DUPFD_CLOEXEC: CInt { F_DUPFD_CLOEXEC }
| `- error: cannot find 'F_DUPFD_CLOEXEC' in scope
124 |
125 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:141:31: error: cannot find 'POLLPRI' in scope
139 |
140 | @_alwaysEmitIntoClient
141 | internal var _POLLPRI: CInt { POLLPRI }
| `- error: cannot find 'POLLPRI' in scope
142 |
143 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:153:34: error: cannot find 'POLLRDBAND' in scope
151 |
152 | @_alwaysEmitIntoClient
153 | internal var _POLLRDBAND: CInt { POLLRDBAND }
| `- error: cannot find 'POLLRDBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:156:34: error: cannot find 'POLLWRBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
156 | internal var _POLLWRBAND: CInt { POLLWRBAND }
| `- error: cannot find 'POLLWRBAND' in scope
157 |
158 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:200:30: error: cannot find 'AF_IPX' in scope
198 |
199 | @_alwaysEmitIntoClient
200 | internal var _AF_IPX: CInt { AF_IPX }
| `- error: cannot find 'AF_IPX' in scope
201 |
202 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:203:36: error: cannot find 'AF_APPLETALK' in scope
201 |
202 | @_alwaysEmitIntoClient
203 | internal var _AF_APPLETALK: CInt { AF_APPLETALK }
| `- error: cannot find 'AF_APPLETALK' in scope
204 |
205 | #if !os(Windows)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:207:33: error: cannot find 'AF_DECnet' in scope
205 | #if !os(Windows)
206 | @_alwaysEmitIntoClient
207 | internal var _AF_DECnet: CInt { AF_DECnet }
| `- error: cannot find 'AF_DECnet' in scope
208 |
209 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:210:32: error: cannot find 'AF_VSOCK' in scope
208 |
209 | @_alwaysEmitIntoClient
210 | internal var _AF_VSOCK: CInt { AF_VSOCK }
| `- error: cannot find 'AF_VSOCK' in scope
211 |
212 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:213:31: error: cannot find 'AF_ISDN' in scope
211 |
212 | @_alwaysEmitIntoClient
213 | internal var _AF_ISDN: CInt { AF_ISDN }
| `- error: cannot find 'AF_ISDN' in scope
214 | #endif
215 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:341:33: error: cannot find 'SOMAXCONN' in scope
339 | /// Maximum queue length specifiable by listen.
340 | @_alwaysEmitIntoClient
341 | internal var _SOMAXCONN: CInt { SOMAXCONN }
| `- error: cannot find 'SOMAXCONN' in scope
342 |
343 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:347:32: error: cannot find 'SO_DEBUG' in scope
345 |
346 | @_alwaysEmitIntoClient
347 | internal var _SO_DEBUG: CInt { SO_DEBUG }
| `- error: cannot find 'SO_DEBUG' in scope
348 |
349 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:350:37: error: cannot find 'SO_ACCEPTCONN' in scope
348 |
349 | @_alwaysEmitIntoClient
350 | internal var _SO_ACCEPTCONN: CInt { SO_ACCEPTCONN }
| `- error: cannot find 'SO_ACCEPTCONN' in scope
351 |
352 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:353:36: error: cannot find 'SO_REUSEADDR' in scope
351 |
352 | @_alwaysEmitIntoClient
353 | internal var _SO_REUSEADDR: CInt { SO_REUSEADDR }
| `- error: cannot find 'SO_REUSEADDR' in scope
354 |
355 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:356:36: error: cannot find 'SO_KEEPALIVE' in scope
354 |
355 | @_alwaysEmitIntoClient
356 | internal var _SO_KEEPALIVE: CInt { SO_KEEPALIVE }
| `- error: cannot find 'SO_KEEPALIVE' in scope
357 |
358 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:359:36: error: cannot find 'SO_DONTROUTE' in scope
357 |
358 | @_alwaysEmitIntoClient
359 | internal var _SO_DONTROUTE: CInt { SO_DONTROUTE }
| `- error: cannot find 'SO_DONTROUTE' in scope
360 |
361 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:362:36: error: cannot find 'SO_BROADCAST' in scope
360 |
361 | @_alwaysEmitIntoClient
362 | internal var _SO_BROADCAST: CInt { SO_BROADCAST }
| `- error: cannot find 'SO_BROADCAST' in scope
363 |
364 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:370:33: error: cannot find 'SO_LINGER' in scope
368 |
369 | @_alwaysEmitIntoClient
370 | internal var _SO_LINGER: CInt { SO_LINGER }
| `- error: cannot find 'SO_LINGER' in scope
371 |
372 | #if os(Linux)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:384:50: error: cannot find 'SOCK_STREAM' in scope
382 |
383 | @_alwaysEmitIntoClient
384 | internal var _SOCK_STREAM: CInterop.SocketType { SOCK_STREAM }
| `- error: cannot find 'SOCK_STREAM' in scope
385 |
386 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:387:49: error: cannot find 'SOCK_DGRAM' in scope
385 |
386 | @_alwaysEmitIntoClient
387 | internal var _SOCK_DGRAM: CInterop.SocketType { SOCK_DGRAM }
| `- error: cannot find 'SOCK_DGRAM' in scope
388 |
389 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:390:47: error: cannot find 'SOCK_RAW' in scope
388 |
389 | @_alwaysEmitIntoClient
390 | internal var _SOCK_RAW: CInterop.SocketType { SOCK_RAW }
| `- error: cannot find 'SOCK_RAW' in scope
391 |
392 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:393:47: error: cannot find 'SOCK_RDM' in scope
391 |
392 | @_alwaysEmitIntoClient
393 | internal var _SOCK_RDM: CInterop.SocketType { SOCK_RDM }
| `- error: cannot find 'SOCK_RDM' in scope
394 |
395 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:396:53: error: cannot find 'SOCK_SEQPACKET' in scope
394 |
395 | @_alwaysEmitIntoClient
396 | internal var _SOCK_SEQPACKET: CInterop.SocketType { SOCK_SEQPACKET }
| `- error: cannot find 'SOCK_SEQPACKET' in scope
397 |
398 | #if os(Linux) || os(Android)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:410:49: error: cannot find 'MSG_DONTROUTE' in scope
408 |
409 | @_alwaysEmitIntoClient
410 | internal var _MSG_DONTROUTE: CInt { numericCast(MSG_DONTROUTE) } /* send without using routing tables */
| `- error: cannot find 'MSG_DONTROUTE' in scope
411 |
412 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:413:43: error: cannot find 'MSG_EOR' in scope
411 |
412 | @_alwaysEmitIntoClient
413 | internal var _MSG_EOR: CInt { numericCast(MSG_EOR) } /* data completes record */
| `- error: cannot find 'MSG_EOR' in scope
414 |
415 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:416:43: error: cannot find 'MSG_OOB' in scope
414 |
415 | @_alwaysEmitIntoClient
416 | internal var _MSG_OOB: CInt { numericCast(MSG_OOB) } /* process out-of-band data */
| `- error: cannot find 'MSG_OOB' in scope
417 |
418 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:419:44: error: cannot find 'MSG_PEEK' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
| `- error: cannot find 'MSG_PEEK' in scope
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:421:45: error: cannot find 'MSG_TRUNC' in scope
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
| `- error: cannot find 'MSG_TRUNC' in scope
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:423:46: error: cannot find 'MSG_CTRUNC' in scope
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
| `- error: cannot find 'MSG_CTRUNC' in scope
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:425:47: error: cannot find 'MSG_WAITALL' in scope
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
| `- error: cannot find 'MSG_WAITALL' in scope
426 |
427 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:428:48: error: cannot find 'MSG_DONTWAIT' in scope
426 |
427 | @_alwaysEmitIntoClient
428 | internal var _MSG_DONTWAIT: CInt { numericCast(MSG_DONTWAIT) } /* this message should be nonblocking */
| `- error: cannot find 'MSG_DONTWAIT' in scope
429 |
430 | #if canImport(Darwin)
[53/83] Compiling Socket Errno.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:43:34: error: cannot find 'O_NONBLOCK' in scope
41 |
42 | @_alwaysEmitIntoClient
43 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
44 | #endif
45 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:47:32: error: cannot find 'O_APPEND' in scope
45 |
46 | @_alwaysEmitIntoClient
47 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
48 |
49 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:60:31: error: cannot find 'O_ASYNC' in scope
58 | // TODO: API?
59 | @_alwaysEmitIntoClient
60 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:67:31: error: cannot find 'O_CREAT' in scope
65 |
66 | @_alwaysEmitIntoClient
67 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
68 |
69 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:13:9: note: macro 'O_CREAT' unavailable: structure not supported
11 | #define O_RSYNC __WASI_FDFLAGS_RSYNC
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
| `- note: macro 'O_CREAT' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:70:31: error: cannot find 'O_TRUNC' in scope
68 |
69 | @_alwaysEmitIntoClient
70 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
71 |
72 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:16:9: note: macro 'O_TRUNC' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
| `- note: macro 'O_TRUNC' unavailable: structure not supported
17 |
18 | #define O_NOFOLLOW (0x01000000)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:73:30: error: cannot find 'O_EXCL' in scope
71 |
72 | @_alwaysEmitIntoClient
73 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
74 |
75 | #if canImport(Darwin)
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:15:9: note: macro 'O_EXCL' unavailable: structure not supported
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
| `- note: macro 'O_EXCL' unavailable: structure not supported
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
17 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:86:35: error: cannot find 'O_DIRECTORY' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
87 | #endif
88 |
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:14:9: note: macro 'O_DIRECTORY' unavailable: structure not supported
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
| `- note: macro 'O_DIRECTORY' unavailable: structure not supported
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:120:31: error: cannot find 'F_DUPFD' in scope
118 |
119 | @_alwaysEmitIntoClient
120 | internal var _F_DUPFD: CInt { F_DUPFD }
| `- error: cannot find 'F_DUPFD' in scope
121 |
122 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:123:39: error: cannot find 'F_DUPFD_CLOEXEC' in scope
121 |
122 | @_alwaysEmitIntoClient
123 | internal var _F_DUPFD_CLOEXEC: CInt { F_DUPFD_CLOEXEC }
| `- error: cannot find 'F_DUPFD_CLOEXEC' in scope
124 |
125 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:141:31: error: cannot find 'POLLPRI' in scope
139 |
140 | @_alwaysEmitIntoClient
141 | internal var _POLLPRI: CInt { POLLPRI }
| `- error: cannot find 'POLLPRI' in scope
142 |
143 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:153:34: error: cannot find 'POLLRDBAND' in scope
151 |
152 | @_alwaysEmitIntoClient
153 | internal var _POLLRDBAND: CInt { POLLRDBAND }
| `- error: cannot find 'POLLRDBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:156:34: error: cannot find 'POLLWRBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
156 | internal var _POLLWRBAND: CInt { POLLWRBAND }
| `- error: cannot find 'POLLWRBAND' in scope
157 |
158 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:200:30: error: cannot find 'AF_IPX' in scope
198 |
199 | @_alwaysEmitIntoClient
200 | internal var _AF_IPX: CInt { AF_IPX }
| `- error: cannot find 'AF_IPX' in scope
201 |
202 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:203:36: error: cannot find 'AF_APPLETALK' in scope
201 |
202 | @_alwaysEmitIntoClient
203 | internal var _AF_APPLETALK: CInt { AF_APPLETALK }
| `- error: cannot find 'AF_APPLETALK' in scope
204 |
205 | #if !os(Windows)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:207:33: error: cannot find 'AF_DECnet' in scope
205 | #if !os(Windows)
206 | @_alwaysEmitIntoClient
207 | internal var _AF_DECnet: CInt { AF_DECnet }
| `- error: cannot find 'AF_DECnet' in scope
208 |
209 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:210:32: error: cannot find 'AF_VSOCK' in scope
208 |
209 | @_alwaysEmitIntoClient
210 | internal var _AF_VSOCK: CInt { AF_VSOCK }
| `- error: cannot find 'AF_VSOCK' in scope
211 |
212 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:213:31: error: cannot find 'AF_ISDN' in scope
211 |
212 | @_alwaysEmitIntoClient
213 | internal var _AF_ISDN: CInt { AF_ISDN }
| `- error: cannot find 'AF_ISDN' in scope
214 | #endif
215 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:341:33: error: cannot find 'SOMAXCONN' in scope
339 | /// Maximum queue length specifiable by listen.
340 | @_alwaysEmitIntoClient
341 | internal var _SOMAXCONN: CInt { SOMAXCONN }
| `- error: cannot find 'SOMAXCONN' in scope
342 |
343 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:347:32: error: cannot find 'SO_DEBUG' in scope
345 |
346 | @_alwaysEmitIntoClient
347 | internal var _SO_DEBUG: CInt { SO_DEBUG }
| `- error: cannot find 'SO_DEBUG' in scope
348 |
349 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:350:37: error: cannot find 'SO_ACCEPTCONN' in scope
348 |
349 | @_alwaysEmitIntoClient
350 | internal var _SO_ACCEPTCONN: CInt { SO_ACCEPTCONN }
| `- error: cannot find 'SO_ACCEPTCONN' in scope
351 |
352 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:353:36: error: cannot find 'SO_REUSEADDR' in scope
351 |
352 | @_alwaysEmitIntoClient
353 | internal var _SO_REUSEADDR: CInt { SO_REUSEADDR }
| `- error: cannot find 'SO_REUSEADDR' in scope
354 |
355 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:356:36: error: cannot find 'SO_KEEPALIVE' in scope
354 |
355 | @_alwaysEmitIntoClient
356 | internal var _SO_KEEPALIVE: CInt { SO_KEEPALIVE }
| `- error: cannot find 'SO_KEEPALIVE' in scope
357 |
358 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:359:36: error: cannot find 'SO_DONTROUTE' in scope
357 |
358 | @_alwaysEmitIntoClient
359 | internal var _SO_DONTROUTE: CInt { SO_DONTROUTE }
| `- error: cannot find 'SO_DONTROUTE' in scope
360 |
361 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:362:36: error: cannot find 'SO_BROADCAST' in scope
360 |
361 | @_alwaysEmitIntoClient
362 | internal var _SO_BROADCAST: CInt { SO_BROADCAST }
| `- error: cannot find 'SO_BROADCAST' in scope
363 |
364 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:370:33: error: cannot find 'SO_LINGER' in scope
368 |
369 | @_alwaysEmitIntoClient
370 | internal var _SO_LINGER: CInt { SO_LINGER }
| `- error: cannot find 'SO_LINGER' in scope
371 |
372 | #if os(Linux)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:384:50: error: cannot find 'SOCK_STREAM' in scope
382 |
383 | @_alwaysEmitIntoClient
384 | internal var _SOCK_STREAM: CInterop.SocketType { SOCK_STREAM }
| `- error: cannot find 'SOCK_STREAM' in scope
385 |
386 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:387:49: error: cannot find 'SOCK_DGRAM' in scope
385 |
386 | @_alwaysEmitIntoClient
387 | internal var _SOCK_DGRAM: CInterop.SocketType { SOCK_DGRAM }
| `- error: cannot find 'SOCK_DGRAM' in scope
388 |
389 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:390:47: error: cannot find 'SOCK_RAW' in scope
388 |
389 | @_alwaysEmitIntoClient
390 | internal var _SOCK_RAW: CInterop.SocketType { SOCK_RAW }
| `- error: cannot find 'SOCK_RAW' in scope
391 |
392 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:393:47: error: cannot find 'SOCK_RDM' in scope
391 |
392 | @_alwaysEmitIntoClient
393 | internal var _SOCK_RDM: CInterop.SocketType { SOCK_RDM }
| `- error: cannot find 'SOCK_RDM' in scope
394 |
395 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:396:53: error: cannot find 'SOCK_SEQPACKET' in scope
394 |
395 | @_alwaysEmitIntoClient
396 | internal var _SOCK_SEQPACKET: CInterop.SocketType { SOCK_SEQPACKET }
| `- error: cannot find 'SOCK_SEQPACKET' in scope
397 |
398 | #if os(Linux) || os(Android)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:410:49: error: cannot find 'MSG_DONTROUTE' in scope
408 |
409 | @_alwaysEmitIntoClient
410 | internal var _MSG_DONTROUTE: CInt { numericCast(MSG_DONTROUTE) } /* send without using routing tables */
| `- error: cannot find 'MSG_DONTROUTE' in scope
411 |
412 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:413:43: error: cannot find 'MSG_EOR' in scope
411 |
412 | @_alwaysEmitIntoClient
413 | internal var _MSG_EOR: CInt { numericCast(MSG_EOR) } /* data completes record */
| `- error: cannot find 'MSG_EOR' in scope
414 |
415 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:416:43: error: cannot find 'MSG_OOB' in scope
414 |
415 | @_alwaysEmitIntoClient
416 | internal var _MSG_OOB: CInt { numericCast(MSG_OOB) } /* process out-of-band data */
| `- error: cannot find 'MSG_OOB' in scope
417 |
418 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:419:44: error: cannot find 'MSG_PEEK' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
| `- error: cannot find 'MSG_PEEK' in scope
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:421:45: error: cannot find 'MSG_TRUNC' in scope
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
| `- error: cannot find 'MSG_TRUNC' in scope
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:423:46: error: cannot find 'MSG_CTRUNC' in scope
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
| `- error: cannot find 'MSG_CTRUNC' in scope
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:425:47: error: cannot find 'MSG_WAITALL' in scope
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
| `- error: cannot find 'MSG_WAITALL' in scope
426 |
427 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:428:48: error: cannot find 'MSG_DONTWAIT' in scope
426 |
427 | @_alwaysEmitIntoClient
428 | internal var _MSG_DONTWAIT: CInt { numericCast(MSG_DONTWAIT) } /* this message should be nonblocking */
| `- error: cannot find 'MSG_DONTWAIT' in scope
429 |
430 | #if canImport(Darwin)
[54/83] Compiling Socket FileChange.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:43:34: error: cannot find 'O_NONBLOCK' in scope
41 |
42 | @_alwaysEmitIntoClient
43 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
44 | #endif
45 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:47:32: error: cannot find 'O_APPEND' in scope
45 |
46 | @_alwaysEmitIntoClient
47 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
48 |
49 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:60:31: error: cannot find 'O_ASYNC' in scope
58 | // TODO: API?
59 | @_alwaysEmitIntoClient
60 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:67:31: error: cannot find 'O_CREAT' in scope
65 |
66 | @_alwaysEmitIntoClient
67 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
68 |
69 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:13:9: note: macro 'O_CREAT' unavailable: structure not supported
11 | #define O_RSYNC __WASI_FDFLAGS_RSYNC
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
| `- note: macro 'O_CREAT' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:70:31: error: cannot find 'O_TRUNC' in scope
68 |
69 | @_alwaysEmitIntoClient
70 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
71 |
72 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:16:9: note: macro 'O_TRUNC' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
| `- note: macro 'O_TRUNC' unavailable: structure not supported
17 |
18 | #define O_NOFOLLOW (0x01000000)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:73:30: error: cannot find 'O_EXCL' in scope
71 |
72 | @_alwaysEmitIntoClient
73 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
74 |
75 | #if canImport(Darwin)
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:15:9: note: macro 'O_EXCL' unavailable: structure not supported
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
| `- note: macro 'O_EXCL' unavailable: structure not supported
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
17 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:86:35: error: cannot find 'O_DIRECTORY' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
87 | #endif
88 |
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:14:9: note: macro 'O_DIRECTORY' unavailable: structure not supported
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
| `- note: macro 'O_DIRECTORY' unavailable: structure not supported
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:120:31: error: cannot find 'F_DUPFD' in scope
118 |
119 | @_alwaysEmitIntoClient
120 | internal var _F_DUPFD: CInt { F_DUPFD }
| `- error: cannot find 'F_DUPFD' in scope
121 |
122 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:123:39: error: cannot find 'F_DUPFD_CLOEXEC' in scope
121 |
122 | @_alwaysEmitIntoClient
123 | internal var _F_DUPFD_CLOEXEC: CInt { F_DUPFD_CLOEXEC }
| `- error: cannot find 'F_DUPFD_CLOEXEC' in scope
124 |
125 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:141:31: error: cannot find 'POLLPRI' in scope
139 |
140 | @_alwaysEmitIntoClient
141 | internal var _POLLPRI: CInt { POLLPRI }
| `- error: cannot find 'POLLPRI' in scope
142 |
143 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:153:34: error: cannot find 'POLLRDBAND' in scope
151 |
152 | @_alwaysEmitIntoClient
153 | internal var _POLLRDBAND: CInt { POLLRDBAND }
| `- error: cannot find 'POLLRDBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:156:34: error: cannot find 'POLLWRBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
156 | internal var _POLLWRBAND: CInt { POLLWRBAND }
| `- error: cannot find 'POLLWRBAND' in scope
157 |
158 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:200:30: error: cannot find 'AF_IPX' in scope
198 |
199 | @_alwaysEmitIntoClient
200 | internal var _AF_IPX: CInt { AF_IPX }
| `- error: cannot find 'AF_IPX' in scope
201 |
202 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:203:36: error: cannot find 'AF_APPLETALK' in scope
201 |
202 | @_alwaysEmitIntoClient
203 | internal var _AF_APPLETALK: CInt { AF_APPLETALK }
| `- error: cannot find 'AF_APPLETALK' in scope
204 |
205 | #if !os(Windows)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:207:33: error: cannot find 'AF_DECnet' in scope
205 | #if !os(Windows)
206 | @_alwaysEmitIntoClient
207 | internal var _AF_DECnet: CInt { AF_DECnet }
| `- error: cannot find 'AF_DECnet' in scope
208 |
209 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:210:32: error: cannot find 'AF_VSOCK' in scope
208 |
209 | @_alwaysEmitIntoClient
210 | internal var _AF_VSOCK: CInt { AF_VSOCK }
| `- error: cannot find 'AF_VSOCK' in scope
211 |
212 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:213:31: error: cannot find 'AF_ISDN' in scope
211 |
212 | @_alwaysEmitIntoClient
213 | internal var _AF_ISDN: CInt { AF_ISDN }
| `- error: cannot find 'AF_ISDN' in scope
214 | #endif
215 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:341:33: error: cannot find 'SOMAXCONN' in scope
339 | /// Maximum queue length specifiable by listen.
340 | @_alwaysEmitIntoClient
341 | internal var _SOMAXCONN: CInt { SOMAXCONN }
| `- error: cannot find 'SOMAXCONN' in scope
342 |
343 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:347:32: error: cannot find 'SO_DEBUG' in scope
345 |
346 | @_alwaysEmitIntoClient
347 | internal var _SO_DEBUG: CInt { SO_DEBUG }
| `- error: cannot find 'SO_DEBUG' in scope
348 |
349 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:350:37: error: cannot find 'SO_ACCEPTCONN' in scope
348 |
349 | @_alwaysEmitIntoClient
350 | internal var _SO_ACCEPTCONN: CInt { SO_ACCEPTCONN }
| `- error: cannot find 'SO_ACCEPTCONN' in scope
351 |
352 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:353:36: error: cannot find 'SO_REUSEADDR' in scope
351 |
352 | @_alwaysEmitIntoClient
353 | internal var _SO_REUSEADDR: CInt { SO_REUSEADDR }
| `- error: cannot find 'SO_REUSEADDR' in scope
354 |
355 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:356:36: error: cannot find 'SO_KEEPALIVE' in scope
354 |
355 | @_alwaysEmitIntoClient
356 | internal var _SO_KEEPALIVE: CInt { SO_KEEPALIVE }
| `- error: cannot find 'SO_KEEPALIVE' in scope
357 |
358 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:359:36: error: cannot find 'SO_DONTROUTE' in scope
357 |
358 | @_alwaysEmitIntoClient
359 | internal var _SO_DONTROUTE: CInt { SO_DONTROUTE }
| `- error: cannot find 'SO_DONTROUTE' in scope
360 |
361 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:362:36: error: cannot find 'SO_BROADCAST' in scope
360 |
361 | @_alwaysEmitIntoClient
362 | internal var _SO_BROADCAST: CInt { SO_BROADCAST }
| `- error: cannot find 'SO_BROADCAST' in scope
363 |
364 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:370:33: error: cannot find 'SO_LINGER' in scope
368 |
369 | @_alwaysEmitIntoClient
370 | internal var _SO_LINGER: CInt { SO_LINGER }
| `- error: cannot find 'SO_LINGER' in scope
371 |
372 | #if os(Linux)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:384:50: error: cannot find 'SOCK_STREAM' in scope
382 |
383 | @_alwaysEmitIntoClient
384 | internal var _SOCK_STREAM: CInterop.SocketType { SOCK_STREAM }
| `- error: cannot find 'SOCK_STREAM' in scope
385 |
386 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:387:49: error: cannot find 'SOCK_DGRAM' in scope
385 |
386 | @_alwaysEmitIntoClient
387 | internal var _SOCK_DGRAM: CInterop.SocketType { SOCK_DGRAM }
| `- error: cannot find 'SOCK_DGRAM' in scope
388 |
389 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:390:47: error: cannot find 'SOCK_RAW' in scope
388 |
389 | @_alwaysEmitIntoClient
390 | internal var _SOCK_RAW: CInterop.SocketType { SOCK_RAW }
| `- error: cannot find 'SOCK_RAW' in scope
391 |
392 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:393:47: error: cannot find 'SOCK_RDM' in scope
391 |
392 | @_alwaysEmitIntoClient
393 | internal var _SOCK_RDM: CInterop.SocketType { SOCK_RDM }
| `- error: cannot find 'SOCK_RDM' in scope
394 |
395 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:396:53: error: cannot find 'SOCK_SEQPACKET' in scope
394 |
395 | @_alwaysEmitIntoClient
396 | internal var _SOCK_SEQPACKET: CInterop.SocketType { SOCK_SEQPACKET }
| `- error: cannot find 'SOCK_SEQPACKET' in scope
397 |
398 | #if os(Linux) || os(Android)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:410:49: error: cannot find 'MSG_DONTROUTE' in scope
408 |
409 | @_alwaysEmitIntoClient
410 | internal var _MSG_DONTROUTE: CInt { numericCast(MSG_DONTROUTE) } /* send without using routing tables */
| `- error: cannot find 'MSG_DONTROUTE' in scope
411 |
412 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:413:43: error: cannot find 'MSG_EOR' in scope
411 |
412 | @_alwaysEmitIntoClient
413 | internal var _MSG_EOR: CInt { numericCast(MSG_EOR) } /* data completes record */
| `- error: cannot find 'MSG_EOR' in scope
414 |
415 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:416:43: error: cannot find 'MSG_OOB' in scope
414 |
415 | @_alwaysEmitIntoClient
416 | internal var _MSG_OOB: CInt { numericCast(MSG_OOB) } /* process out-of-band data */
| `- error: cannot find 'MSG_OOB' in scope
417 |
418 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:419:44: error: cannot find 'MSG_PEEK' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
| `- error: cannot find 'MSG_PEEK' in scope
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:421:45: error: cannot find 'MSG_TRUNC' in scope
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
| `- error: cannot find 'MSG_TRUNC' in scope
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:423:46: error: cannot find 'MSG_CTRUNC' in scope
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
| `- error: cannot find 'MSG_CTRUNC' in scope
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:425:47: error: cannot find 'MSG_WAITALL' in scope
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
| `- error: cannot find 'MSG_WAITALL' in scope
426 |
427 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:428:48: error: cannot find 'MSG_DONTWAIT' in scope
426 |
427 | @_alwaysEmitIntoClient
428 | internal var _MSG_DONTWAIT: CInt { numericCast(MSG_DONTWAIT) } /* this message should be nonblocking */
| `- error: cannot find 'MSG_DONTWAIT' in scope
429 |
430 | #if canImport(Darwin)
[55/83] Compiling Socket FileEvent.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:43:34: error: cannot find 'O_NONBLOCK' in scope
41 |
42 | @_alwaysEmitIntoClient
43 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
44 | #endif
45 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:47:32: error: cannot find 'O_APPEND' in scope
45 |
46 | @_alwaysEmitIntoClient
47 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
48 |
49 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:60:31: error: cannot find 'O_ASYNC' in scope
58 | // TODO: API?
59 | @_alwaysEmitIntoClient
60 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:67:31: error: cannot find 'O_CREAT' in scope
65 |
66 | @_alwaysEmitIntoClient
67 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
68 |
69 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:13:9: note: macro 'O_CREAT' unavailable: structure not supported
11 | #define O_RSYNC __WASI_FDFLAGS_RSYNC
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
| `- note: macro 'O_CREAT' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:70:31: error: cannot find 'O_TRUNC' in scope
68 |
69 | @_alwaysEmitIntoClient
70 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
71 |
72 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:16:9: note: macro 'O_TRUNC' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
| `- note: macro 'O_TRUNC' unavailable: structure not supported
17 |
18 | #define O_NOFOLLOW (0x01000000)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:73:30: error: cannot find 'O_EXCL' in scope
71 |
72 | @_alwaysEmitIntoClient
73 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
74 |
75 | #if canImport(Darwin)
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:15:9: note: macro 'O_EXCL' unavailable: structure not supported
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
| `- note: macro 'O_EXCL' unavailable: structure not supported
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
17 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:86:35: error: cannot find 'O_DIRECTORY' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
87 | #endif
88 |
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:14:9: note: macro 'O_DIRECTORY' unavailable: structure not supported
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
| `- note: macro 'O_DIRECTORY' unavailable: structure not supported
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:120:31: error: cannot find 'F_DUPFD' in scope
118 |
119 | @_alwaysEmitIntoClient
120 | internal var _F_DUPFD: CInt { F_DUPFD }
| `- error: cannot find 'F_DUPFD' in scope
121 |
122 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:123:39: error: cannot find 'F_DUPFD_CLOEXEC' in scope
121 |
122 | @_alwaysEmitIntoClient
123 | internal var _F_DUPFD_CLOEXEC: CInt { F_DUPFD_CLOEXEC }
| `- error: cannot find 'F_DUPFD_CLOEXEC' in scope
124 |
125 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:141:31: error: cannot find 'POLLPRI' in scope
139 |
140 | @_alwaysEmitIntoClient
141 | internal var _POLLPRI: CInt { POLLPRI }
| `- error: cannot find 'POLLPRI' in scope
142 |
143 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:153:34: error: cannot find 'POLLRDBAND' in scope
151 |
152 | @_alwaysEmitIntoClient
153 | internal var _POLLRDBAND: CInt { POLLRDBAND }
| `- error: cannot find 'POLLRDBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:156:34: error: cannot find 'POLLWRBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
156 | internal var _POLLWRBAND: CInt { POLLWRBAND }
| `- error: cannot find 'POLLWRBAND' in scope
157 |
158 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:200:30: error: cannot find 'AF_IPX' in scope
198 |
199 | @_alwaysEmitIntoClient
200 | internal var _AF_IPX: CInt { AF_IPX }
| `- error: cannot find 'AF_IPX' in scope
201 |
202 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:203:36: error: cannot find 'AF_APPLETALK' in scope
201 |
202 | @_alwaysEmitIntoClient
203 | internal var _AF_APPLETALK: CInt { AF_APPLETALK }
| `- error: cannot find 'AF_APPLETALK' in scope
204 |
205 | #if !os(Windows)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:207:33: error: cannot find 'AF_DECnet' in scope
205 | #if !os(Windows)
206 | @_alwaysEmitIntoClient
207 | internal var _AF_DECnet: CInt { AF_DECnet }
| `- error: cannot find 'AF_DECnet' in scope
208 |
209 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:210:32: error: cannot find 'AF_VSOCK' in scope
208 |
209 | @_alwaysEmitIntoClient
210 | internal var _AF_VSOCK: CInt { AF_VSOCK }
| `- error: cannot find 'AF_VSOCK' in scope
211 |
212 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:213:31: error: cannot find 'AF_ISDN' in scope
211 |
212 | @_alwaysEmitIntoClient
213 | internal var _AF_ISDN: CInt { AF_ISDN }
| `- error: cannot find 'AF_ISDN' in scope
214 | #endif
215 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:341:33: error: cannot find 'SOMAXCONN' in scope
339 | /// Maximum queue length specifiable by listen.
340 | @_alwaysEmitIntoClient
341 | internal var _SOMAXCONN: CInt { SOMAXCONN }
| `- error: cannot find 'SOMAXCONN' in scope
342 |
343 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:347:32: error: cannot find 'SO_DEBUG' in scope
345 |
346 | @_alwaysEmitIntoClient
347 | internal var _SO_DEBUG: CInt { SO_DEBUG }
| `- error: cannot find 'SO_DEBUG' in scope
348 |
349 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:350:37: error: cannot find 'SO_ACCEPTCONN' in scope
348 |
349 | @_alwaysEmitIntoClient
350 | internal var _SO_ACCEPTCONN: CInt { SO_ACCEPTCONN }
| `- error: cannot find 'SO_ACCEPTCONN' in scope
351 |
352 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:353:36: error: cannot find 'SO_REUSEADDR' in scope
351 |
352 | @_alwaysEmitIntoClient
353 | internal var _SO_REUSEADDR: CInt { SO_REUSEADDR }
| `- error: cannot find 'SO_REUSEADDR' in scope
354 |
355 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:356:36: error: cannot find 'SO_KEEPALIVE' in scope
354 |
355 | @_alwaysEmitIntoClient
356 | internal var _SO_KEEPALIVE: CInt { SO_KEEPALIVE }
| `- error: cannot find 'SO_KEEPALIVE' in scope
357 |
358 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:359:36: error: cannot find 'SO_DONTROUTE' in scope
357 |
358 | @_alwaysEmitIntoClient
359 | internal var _SO_DONTROUTE: CInt { SO_DONTROUTE }
| `- error: cannot find 'SO_DONTROUTE' in scope
360 |
361 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:362:36: error: cannot find 'SO_BROADCAST' in scope
360 |
361 | @_alwaysEmitIntoClient
362 | internal var _SO_BROADCAST: CInt { SO_BROADCAST }
| `- error: cannot find 'SO_BROADCAST' in scope
363 |
364 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:370:33: error: cannot find 'SO_LINGER' in scope
368 |
369 | @_alwaysEmitIntoClient
370 | internal var _SO_LINGER: CInt { SO_LINGER }
| `- error: cannot find 'SO_LINGER' in scope
371 |
372 | #if os(Linux)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:384:50: error: cannot find 'SOCK_STREAM' in scope
382 |
383 | @_alwaysEmitIntoClient
384 | internal var _SOCK_STREAM: CInterop.SocketType { SOCK_STREAM }
| `- error: cannot find 'SOCK_STREAM' in scope
385 |
386 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:387:49: error: cannot find 'SOCK_DGRAM' in scope
385 |
386 | @_alwaysEmitIntoClient
387 | internal var _SOCK_DGRAM: CInterop.SocketType { SOCK_DGRAM }
| `- error: cannot find 'SOCK_DGRAM' in scope
388 |
389 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:390:47: error: cannot find 'SOCK_RAW' in scope
388 |
389 | @_alwaysEmitIntoClient
390 | internal var _SOCK_RAW: CInterop.SocketType { SOCK_RAW }
| `- error: cannot find 'SOCK_RAW' in scope
391 |
392 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:393:47: error: cannot find 'SOCK_RDM' in scope
391 |
392 | @_alwaysEmitIntoClient
393 | internal var _SOCK_RDM: CInterop.SocketType { SOCK_RDM }
| `- error: cannot find 'SOCK_RDM' in scope
394 |
395 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:396:53: error: cannot find 'SOCK_SEQPACKET' in scope
394 |
395 | @_alwaysEmitIntoClient
396 | internal var _SOCK_SEQPACKET: CInterop.SocketType { SOCK_SEQPACKET }
| `- error: cannot find 'SOCK_SEQPACKET' in scope
397 |
398 | #if os(Linux) || os(Android)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:410:49: error: cannot find 'MSG_DONTROUTE' in scope
408 |
409 | @_alwaysEmitIntoClient
410 | internal var _MSG_DONTROUTE: CInt { numericCast(MSG_DONTROUTE) } /* send without using routing tables */
| `- error: cannot find 'MSG_DONTROUTE' in scope
411 |
412 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:413:43: error: cannot find 'MSG_EOR' in scope
411 |
412 | @_alwaysEmitIntoClient
413 | internal var _MSG_EOR: CInt { numericCast(MSG_EOR) } /* data completes record */
| `- error: cannot find 'MSG_EOR' in scope
414 |
415 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:416:43: error: cannot find 'MSG_OOB' in scope
414 |
415 | @_alwaysEmitIntoClient
416 | internal var _MSG_OOB: CInt { numericCast(MSG_OOB) } /* process out-of-band data */
| `- error: cannot find 'MSG_OOB' in scope
417 |
418 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:419:44: error: cannot find 'MSG_PEEK' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
| `- error: cannot find 'MSG_PEEK' in scope
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:421:45: error: cannot find 'MSG_TRUNC' in scope
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
| `- error: cannot find 'MSG_TRUNC' in scope
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:423:46: error: cannot find 'MSG_CTRUNC' in scope
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
| `- error: cannot find 'MSG_CTRUNC' in scope
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:425:47: error: cannot find 'MSG_WAITALL' in scope
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
| `- error: cannot find 'MSG_WAITALL' in scope
426 |
427 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:428:48: error: cannot find 'MSG_DONTWAIT' in scope
426 |
427 | @_alwaysEmitIntoClient
428 | internal var _MSG_DONTWAIT: CInt { numericCast(MSG_DONTWAIT) } /* this message should be nonblocking */
| `- error: cannot find 'MSG_DONTWAIT' in scope
429 |
430 | #if canImport(Darwin)
error: emit-module command failed with exit code 1 (use -v to see invocation)
[56/83] Emitting module Socket
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:43:34: error: cannot find 'O_NONBLOCK' in scope
41 |
42 | @_alwaysEmitIntoClient
43 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
44 | #endif
45 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:47:32: error: cannot find 'O_APPEND' in scope
45 |
46 | @_alwaysEmitIntoClient
47 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
48 |
49 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:60:31: error: cannot find 'O_ASYNC' in scope
58 | // TODO: API?
59 | @_alwaysEmitIntoClient
60 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:67:31: error: cannot find 'O_CREAT' in scope
65 |
66 | @_alwaysEmitIntoClient
67 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
68 |
69 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:13:9: note: macro 'O_CREAT' unavailable: structure not supported
11 | #define O_RSYNC __WASI_FDFLAGS_RSYNC
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
| `- note: macro 'O_CREAT' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:70:31: error: cannot find 'O_TRUNC' in scope
68 |
69 | @_alwaysEmitIntoClient
70 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
71 |
72 | @_alwaysEmitIntoClient
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:16:9: note: macro 'O_TRUNC' unavailable: structure not supported
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
| `- note: macro 'O_TRUNC' unavailable: structure not supported
17 |
18 | #define O_NOFOLLOW (0x01000000)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:73:30: error: cannot find 'O_EXCL' in scope
71 |
72 | @_alwaysEmitIntoClient
73 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
74 |
75 | #if canImport(Darwin)
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:15:9: note: macro 'O_EXCL' unavailable: structure not supported
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
| `- note: macro 'O_EXCL' unavailable: structure not supported
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
17 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:86:35: error: cannot find 'O_DIRECTORY' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
87 | #endif
88 |
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__header_fcntl.h:14:9: note: macro 'O_DIRECTORY' unavailable: structure not supported
12 | #define O_SYNC __WASI_FDFLAGS_SYNC
13 | #define O_CREAT (__WASI_OFLAGS_CREAT << 12)
14 | #define O_DIRECTORY (__WASI_OFLAGS_DIRECTORY << 12)
| `- note: macro 'O_DIRECTORY' unavailable: structure not supported
15 | #define O_EXCL (__WASI_OFLAGS_EXCL << 12)
16 | #define O_TRUNC (__WASI_OFLAGS_TRUNC << 12)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:120:31: error: cannot find 'F_DUPFD' in scope
118 |
119 | @_alwaysEmitIntoClient
120 | internal var _F_DUPFD: CInt { F_DUPFD }
| `- error: cannot find 'F_DUPFD' in scope
121 |
122 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:123:39: error: cannot find 'F_DUPFD_CLOEXEC' in scope
121 |
122 | @_alwaysEmitIntoClient
123 | internal var _F_DUPFD_CLOEXEC: CInt { F_DUPFD_CLOEXEC }
| `- error: cannot find 'F_DUPFD_CLOEXEC' in scope
124 |
125 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:141:31: error: cannot find 'POLLPRI' in scope
139 |
140 | @_alwaysEmitIntoClient
141 | internal var _POLLPRI: CInt { POLLPRI }
| `- error: cannot find 'POLLPRI' in scope
142 |
143 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:153:34: error: cannot find 'POLLRDBAND' in scope
151 |
152 | @_alwaysEmitIntoClient
153 | internal var _POLLRDBAND: CInt { POLLRDBAND }
| `- error: cannot find 'POLLRDBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:156:34: error: cannot find 'POLLWRBAND' in scope
154 |
155 | @_alwaysEmitIntoClient
156 | internal var _POLLWRBAND: CInt { POLLWRBAND }
| `- error: cannot find 'POLLWRBAND' in scope
157 |
158 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:200:30: error: cannot find 'AF_IPX' in scope
198 |
199 | @_alwaysEmitIntoClient
200 | internal var _AF_IPX: CInt { AF_IPX }
| `- error: cannot find 'AF_IPX' in scope
201 |
202 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:203:36: error: cannot find 'AF_APPLETALK' in scope
201 |
202 | @_alwaysEmitIntoClient
203 | internal var _AF_APPLETALK: CInt { AF_APPLETALK }
| `- error: cannot find 'AF_APPLETALK' in scope
204 |
205 | #if !os(Windows)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:207:33: error: cannot find 'AF_DECnet' in scope
205 | #if !os(Windows)
206 | @_alwaysEmitIntoClient
207 | internal var _AF_DECnet: CInt { AF_DECnet }
| `- error: cannot find 'AF_DECnet' in scope
208 |
209 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:210:32: error: cannot find 'AF_VSOCK' in scope
208 |
209 | @_alwaysEmitIntoClient
210 | internal var _AF_VSOCK: CInt { AF_VSOCK }
| `- error: cannot find 'AF_VSOCK' in scope
211 |
212 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:213:31: error: cannot find 'AF_ISDN' in scope
211 |
212 | @_alwaysEmitIntoClient
213 | internal var _AF_ISDN: CInt { AF_ISDN }
| `- error: cannot find 'AF_ISDN' in scope
214 | #endif
215 |
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:341:33: error: cannot find 'SOMAXCONN' in scope
339 | /// Maximum queue length specifiable by listen.
340 | @_alwaysEmitIntoClient
341 | internal var _SOMAXCONN: CInt { SOMAXCONN }
| `- error: cannot find 'SOMAXCONN' in scope
342 |
343 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:347:32: error: cannot find 'SO_DEBUG' in scope
345 |
346 | @_alwaysEmitIntoClient
347 | internal var _SO_DEBUG: CInt { SO_DEBUG }
| `- error: cannot find 'SO_DEBUG' in scope
348 |
349 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:350:37: error: cannot find 'SO_ACCEPTCONN' in scope
348 |
349 | @_alwaysEmitIntoClient
350 | internal var _SO_ACCEPTCONN: CInt { SO_ACCEPTCONN }
| `- error: cannot find 'SO_ACCEPTCONN' in scope
351 |
352 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:353:36: error: cannot find 'SO_REUSEADDR' in scope
351 |
352 | @_alwaysEmitIntoClient
353 | internal var _SO_REUSEADDR: CInt { SO_REUSEADDR }
| `- error: cannot find 'SO_REUSEADDR' in scope
354 |
355 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:356:36: error: cannot find 'SO_KEEPALIVE' in scope
354 |
355 | @_alwaysEmitIntoClient
356 | internal var _SO_KEEPALIVE: CInt { SO_KEEPALIVE }
| `- error: cannot find 'SO_KEEPALIVE' in scope
357 |
358 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:359:36: error: cannot find 'SO_DONTROUTE' in scope
357 |
358 | @_alwaysEmitIntoClient
359 | internal var _SO_DONTROUTE: CInt { SO_DONTROUTE }
| `- error: cannot find 'SO_DONTROUTE' in scope
360 |
361 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:362:36: error: cannot find 'SO_BROADCAST' in scope
360 |
361 | @_alwaysEmitIntoClient
362 | internal var _SO_BROADCAST: CInt { SO_BROADCAST }
| `- error: cannot find 'SO_BROADCAST' in scope
363 |
364 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:370:33: error: cannot find 'SO_LINGER' in scope
368 |
369 | @_alwaysEmitIntoClient
370 | internal var _SO_LINGER: CInt { SO_LINGER }
| `- error: cannot find 'SO_LINGER' in scope
371 |
372 | #if os(Linux)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:384:50: error: cannot find 'SOCK_STREAM' in scope
382 |
383 | @_alwaysEmitIntoClient
384 | internal var _SOCK_STREAM: CInterop.SocketType { SOCK_STREAM }
| `- error: cannot find 'SOCK_STREAM' in scope
385 |
386 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:387:49: error: cannot find 'SOCK_DGRAM' in scope
385 |
386 | @_alwaysEmitIntoClient
387 | internal var _SOCK_DGRAM: CInterop.SocketType { SOCK_DGRAM }
| `- error: cannot find 'SOCK_DGRAM' in scope
388 |
389 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:390:47: error: cannot find 'SOCK_RAW' in scope
388 |
389 | @_alwaysEmitIntoClient
390 | internal var _SOCK_RAW: CInterop.SocketType { SOCK_RAW }
| `- error: cannot find 'SOCK_RAW' in scope
391 |
392 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:393:47: error: cannot find 'SOCK_RDM' in scope
391 |
392 | @_alwaysEmitIntoClient
393 | internal var _SOCK_RDM: CInterop.SocketType { SOCK_RDM }
| `- error: cannot find 'SOCK_RDM' in scope
394 |
395 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:396:53: error: cannot find 'SOCK_SEQPACKET' in scope
394 |
395 | @_alwaysEmitIntoClient
396 | internal var _SOCK_SEQPACKET: CInterop.SocketType { SOCK_SEQPACKET }
| `- error: cannot find 'SOCK_SEQPACKET' in scope
397 |
398 | #if os(Linux) || os(Android)
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:410:49: error: cannot find 'MSG_DONTROUTE' in scope
408 |
409 | @_alwaysEmitIntoClient
410 | internal var _MSG_DONTROUTE: CInt { numericCast(MSG_DONTROUTE) } /* send without using routing tables */
| `- error: cannot find 'MSG_DONTROUTE' in scope
411 |
412 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:413:43: error: cannot find 'MSG_EOR' in scope
411 |
412 | @_alwaysEmitIntoClient
413 | internal var _MSG_EOR: CInt { numericCast(MSG_EOR) } /* data completes record */
| `- error: cannot find 'MSG_EOR' in scope
414 |
415 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:416:43: error: cannot find 'MSG_OOB' in scope
414 |
415 | @_alwaysEmitIntoClient
416 | internal var _MSG_OOB: CInt { numericCast(MSG_OOB) } /* process out-of-band data */
| `- error: cannot find 'MSG_OOB' in scope
417 |
418 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:419:44: error: cannot find 'MSG_PEEK' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
| `- error: cannot find 'MSG_PEEK' in scope
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:421:45: error: cannot find 'MSG_TRUNC' in scope
419 | internal var _MSG_PEEK: CInt { numericCast(MSG_PEEK) } /* peek at incoming message */
420 | @_alwaysEmitIntoClient
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
| `- error: cannot find 'MSG_TRUNC' in scope
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:423:46: error: cannot find 'MSG_CTRUNC' in scope
421 | internal var _MSG_TRUNC: CInt { numericCast(MSG_TRUNC) } /* data discarded before delivery */
422 | @_alwaysEmitIntoClient
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
| `- error: cannot find 'MSG_CTRUNC' in scope
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:425:47: error: cannot find 'MSG_WAITALL' in scope
423 | internal var _MSG_CTRUNC: CInt { numericCast(MSG_CTRUNC) } /* control data lost before delivery */
424 | @_alwaysEmitIntoClient
425 | internal var _MSG_WAITALL: CInt { numericCast(MSG_WAITALL) } /* wait for full request or error */
| `- error: cannot find 'MSG_WAITALL' in scope
426 |
427 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/Sources/Socket/System/Constants.swift:428:48: error: cannot find 'MSG_DONTWAIT' in scope
426 |
427 | @_alwaysEmitIntoClient
428 | internal var _MSG_DONTWAIT: CInt { numericCast(MSG_DONTWAIT) } /* this message should be nonblocking */
| `- error: cannot find 'MSG_DONTWAIT' in scope
429 |
430 | #if canImport(Darwin)
[57/83] Compiling Socket Socket.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[58/83] Compiling Socket SocketContinuation.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[59/83] Compiling Socket SocketManager.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[60/83] Compiling Socket AsyncSocketManager.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[61/83] Compiling Socket CFSocketManager.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[62/83] Compiling Socket CInternetAddress.swift
/host/spi-builder-workspace/Sources/Socket/SocketManager/AsyncSocketManager.swift:280:25: error: type 'Errno' has no member 'socketShutdown'
278 | ) throws -> AsyncSocketManager.SocketState {
279 | guard let socket = state.sockets[fileDescriptor] else {
280 | throw Errno.socketShutdown
| `- error: type 'Errno' has no member 'socketShutdown'
281 | }
282 | return socket
[63/83] Compiling Socket UnixProtocol.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:176:10: error: cannot find 'socket' in scope
174 | if mockingEnabled { return _mock(fd, fd2, fd3) }
175 | #endif
176 | return socket(fd, fd2, fd3)
| `- error: cannot find 'socket' in scope
177 | }
178 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:183:10: error: cannot find 'setsockopt' in scope
181 | if mockingEnabled { return _mock(fd, fd2, fd3, pointer, dataLength) }
182 | #endif
183 | return setsockopt(fd, fd2, fd3, pointer, dataLength)
| `- error: cannot find 'setsockopt' in scope
184 | }
185 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:207:10: error: cannot find 'bind' in scope
205 | if mockingEnabled { return _mock(socket, address, length) }
206 | #endif
207 | return bind(socket, address, length)
| `- error: cannot find 'bind' in scope
208 | }
209 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:218:10: error: cannot find 'connect' in scope
216 | if mockingEnabled { return _mock(socket, addr, len) }
217 | #endif
218 | return connect(socket, addr, len)
| `- error: cannot find 'connect' in scope
219 | }
220 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:245:10: error: cannot find 'getaddrinfo' in scope
243 | }
244 | #endif
245 | return getaddrinfo(hostname, servname, hints, res)
| `- error: cannot find 'getaddrinfo' in scope
246 | }
247 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:10: error: cannot find 'getnameinfo' in scope
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: cannot find 'getnameinfo' in scope
263 | }
264 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:39: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:67: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:274:10: error: cannot find 'freeaddrinfo' in scope
272 | }
273 | #endif
274 | return freeaddrinfo(addrinfo)
| `- error: cannot find 'freeaddrinfo' in scope
275 | }
276 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:281:10: error: cannot find 'gai_strerror' in scope
279 | // FIXME
280 | #endif
281 | return gai_strerror(error)
| `- error: cannot find 'gai_strerror' in scope
282 | }
283 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:295:10: error: cannot find 'listen' in scope
293 | if mockingEnabled { return _mock(socket, backlog) }
294 | #endif
295 | return listen(socket, backlog)
| `- error: cannot find 'listen' in scope
296 | }
297 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:335:10: error: cannot find 'sendto' in scope
333 | }
334 | #endif
335 | return sendto(socket, buffer, length, flags, dest_addr, dest_len)
| `- error: cannot find 'sendto' in scope
336 | }
337 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:351:10: error: cannot find 'recvfrom' in scope
349 | }
350 | #endif
351 | return recvfrom(socket, buffer, length, flags, address, addres_len)
| `- error: cannot find 'recvfrom' in scope
352 | }
353 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:373:10: error: cannot find 'sendmsg' in scope
371 | if mockingEnabled { return _mockInt(socket, message, flags) }
372 | #endif
373 | return sendmsg(socket, message, flags)
| `- error: cannot find 'sendmsg' in scope
374 | }
375 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:384:10: error: cannot find 'recvmsg' in scope
382 | if mockingEnabled { return _mockInt(socket, message, flags) }
383 | #endif
384 | return recvmsg(socket, message, flags)
| `- error: cannot find 'recvmsg' in scope
385 | }
386 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:479:12: error: cannot find 'if_freenameindex' in scope
477 | if mockingEnabled { return _mock(pointer) }
478 | #endif
479 | return if_freenameindex(pointer)
| `- error: cannot find 'if_freenameindex' in scope
480 | }
481 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:516:12: error: cannot find 'getsockname' in scope
514 | if mockingEnabled { return _mock(fd, address) }
515 | #endif
516 | return getsockname(fd, address, length)
| `- error: cannot find 'getsockname' in scope
517 | }
518 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:523:12: error: cannot find 'getpeername' in scope
521 | if mockingEnabled { return _mock(fd, address) }
522 | #endif
523 | return getpeername(fd, address, length)
| `- error: cannot find 'getpeername' in scope
524 | }
525 |
[64/83] Compiling Socket SocketType.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:176:10: error: cannot find 'socket' in scope
174 | if mockingEnabled { return _mock(fd, fd2, fd3) }
175 | #endif
176 | return socket(fd, fd2, fd3)
| `- error: cannot find 'socket' in scope
177 | }
178 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:183:10: error: cannot find 'setsockopt' in scope
181 | if mockingEnabled { return _mock(fd, fd2, fd3, pointer, dataLength) }
182 | #endif
183 | return setsockopt(fd, fd2, fd3, pointer, dataLength)
| `- error: cannot find 'setsockopt' in scope
184 | }
185 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:207:10: error: cannot find 'bind' in scope
205 | if mockingEnabled { return _mock(socket, address, length) }
206 | #endif
207 | return bind(socket, address, length)
| `- error: cannot find 'bind' in scope
208 | }
209 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:218:10: error: cannot find 'connect' in scope
216 | if mockingEnabled { return _mock(socket, addr, len) }
217 | #endif
218 | return connect(socket, addr, len)
| `- error: cannot find 'connect' in scope
219 | }
220 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:245:10: error: cannot find 'getaddrinfo' in scope
243 | }
244 | #endif
245 | return getaddrinfo(hostname, servname, hints, res)
| `- error: cannot find 'getaddrinfo' in scope
246 | }
247 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:10: error: cannot find 'getnameinfo' in scope
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: cannot find 'getnameinfo' in scope
263 | }
264 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:39: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:67: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:274:10: error: cannot find 'freeaddrinfo' in scope
272 | }
273 | #endif
274 | return freeaddrinfo(addrinfo)
| `- error: cannot find 'freeaddrinfo' in scope
275 | }
276 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:281:10: error: cannot find 'gai_strerror' in scope
279 | // FIXME
280 | #endif
281 | return gai_strerror(error)
| `- error: cannot find 'gai_strerror' in scope
282 | }
283 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:295:10: error: cannot find 'listen' in scope
293 | if mockingEnabled { return _mock(socket, backlog) }
294 | #endif
295 | return listen(socket, backlog)
| `- error: cannot find 'listen' in scope
296 | }
297 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:335:10: error: cannot find 'sendto' in scope
333 | }
334 | #endif
335 | return sendto(socket, buffer, length, flags, dest_addr, dest_len)
| `- error: cannot find 'sendto' in scope
336 | }
337 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:351:10: error: cannot find 'recvfrom' in scope
349 | }
350 | #endif
351 | return recvfrom(socket, buffer, length, flags, address, addres_len)
| `- error: cannot find 'recvfrom' in scope
352 | }
353 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:373:10: error: cannot find 'sendmsg' in scope
371 | if mockingEnabled { return _mockInt(socket, message, flags) }
372 | #endif
373 | return sendmsg(socket, message, flags)
| `- error: cannot find 'sendmsg' in scope
374 | }
375 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:384:10: error: cannot find 'recvmsg' in scope
382 | if mockingEnabled { return _mockInt(socket, message, flags) }
383 | #endif
384 | return recvmsg(socket, message, flags)
| `- error: cannot find 'recvmsg' in scope
385 | }
386 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:479:12: error: cannot find 'if_freenameindex' in scope
477 | if mockingEnabled { return _mock(pointer) }
478 | #endif
479 | return if_freenameindex(pointer)
| `- error: cannot find 'if_freenameindex' in scope
480 | }
481 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:516:12: error: cannot find 'getsockname' in scope
514 | if mockingEnabled { return _mock(fd, address) }
515 | #endif
516 | return getsockname(fd, address, length)
| `- error: cannot find 'getsockname' in scope
517 | }
518 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:523:12: error: cannot find 'getpeername' in scope
521 | if mockingEnabled { return _mock(fd, address) }
522 | #endif
523 | return getpeername(fd, address, length)
| `- error: cannot find 'getpeername' in scope
524 | }
525 |
[65/83] Compiling Socket Syscalls.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:176:10: error: cannot find 'socket' in scope
174 | if mockingEnabled { return _mock(fd, fd2, fd3) }
175 | #endif
176 | return socket(fd, fd2, fd3)
| `- error: cannot find 'socket' in scope
177 | }
178 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:183:10: error: cannot find 'setsockopt' in scope
181 | if mockingEnabled { return _mock(fd, fd2, fd3, pointer, dataLength) }
182 | #endif
183 | return setsockopt(fd, fd2, fd3, pointer, dataLength)
| `- error: cannot find 'setsockopt' in scope
184 | }
185 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:207:10: error: cannot find 'bind' in scope
205 | if mockingEnabled { return _mock(socket, address, length) }
206 | #endif
207 | return bind(socket, address, length)
| `- error: cannot find 'bind' in scope
208 | }
209 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:218:10: error: cannot find 'connect' in scope
216 | if mockingEnabled { return _mock(socket, addr, len) }
217 | #endif
218 | return connect(socket, addr, len)
| `- error: cannot find 'connect' in scope
219 | }
220 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:245:10: error: cannot find 'getaddrinfo' in scope
243 | }
244 | #endif
245 | return getaddrinfo(hostname, servname, hints, res)
| `- error: cannot find 'getaddrinfo' in scope
246 | }
247 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:10: error: cannot find 'getnameinfo' in scope
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: cannot find 'getnameinfo' in scope
263 | }
264 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:39: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:67: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:274:10: error: cannot find 'freeaddrinfo' in scope
272 | }
273 | #endif
274 | return freeaddrinfo(addrinfo)
| `- error: cannot find 'freeaddrinfo' in scope
275 | }
276 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:281:10: error: cannot find 'gai_strerror' in scope
279 | // FIXME
280 | #endif
281 | return gai_strerror(error)
| `- error: cannot find 'gai_strerror' in scope
282 | }
283 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:295:10: error: cannot find 'listen' in scope
293 | if mockingEnabled { return _mock(socket, backlog) }
294 | #endif
295 | return listen(socket, backlog)
| `- error: cannot find 'listen' in scope
296 | }
297 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:335:10: error: cannot find 'sendto' in scope
333 | }
334 | #endif
335 | return sendto(socket, buffer, length, flags, dest_addr, dest_len)
| `- error: cannot find 'sendto' in scope
336 | }
337 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:351:10: error: cannot find 'recvfrom' in scope
349 | }
350 | #endif
351 | return recvfrom(socket, buffer, length, flags, address, addres_len)
| `- error: cannot find 'recvfrom' in scope
352 | }
353 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:373:10: error: cannot find 'sendmsg' in scope
371 | if mockingEnabled { return _mockInt(socket, message, flags) }
372 | #endif
373 | return sendmsg(socket, message, flags)
| `- error: cannot find 'sendmsg' in scope
374 | }
375 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:384:10: error: cannot find 'recvmsg' in scope
382 | if mockingEnabled { return _mockInt(socket, message, flags) }
383 | #endif
384 | return recvmsg(socket, message, flags)
| `- error: cannot find 'recvmsg' in scope
385 | }
386 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:479:12: error: cannot find 'if_freenameindex' in scope
477 | if mockingEnabled { return _mock(pointer) }
478 | #endif
479 | return if_freenameindex(pointer)
| `- error: cannot find 'if_freenameindex' in scope
480 | }
481 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:516:12: error: cannot find 'getsockname' in scope
514 | if mockingEnabled { return _mock(fd, address) }
515 | #endif
516 | return getsockname(fd, address, length)
| `- error: cannot find 'getsockname' in scope
517 | }
518 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:523:12: error: cannot find 'getpeername' in scope
521 | if mockingEnabled { return _mock(fd, address) }
522 | #endif
523 | return getpeername(fd, address, length)
| `- error: cannot find 'getpeername' in scope
524 | }
525 |
[66/83] Compiling Socket TCPSocketOption.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:176:10: error: cannot find 'socket' in scope
174 | if mockingEnabled { return _mock(fd, fd2, fd3) }
175 | #endif
176 | return socket(fd, fd2, fd3)
| `- error: cannot find 'socket' in scope
177 | }
178 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:183:10: error: cannot find 'setsockopt' in scope
181 | if mockingEnabled { return _mock(fd, fd2, fd3, pointer, dataLength) }
182 | #endif
183 | return setsockopt(fd, fd2, fd3, pointer, dataLength)
| `- error: cannot find 'setsockopt' in scope
184 | }
185 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:207:10: error: cannot find 'bind' in scope
205 | if mockingEnabled { return _mock(socket, address, length) }
206 | #endif
207 | return bind(socket, address, length)
| `- error: cannot find 'bind' in scope
208 | }
209 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:218:10: error: cannot find 'connect' in scope
216 | if mockingEnabled { return _mock(socket, addr, len) }
217 | #endif
218 | return connect(socket, addr, len)
| `- error: cannot find 'connect' in scope
219 | }
220 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:245:10: error: cannot find 'getaddrinfo' in scope
243 | }
244 | #endif
245 | return getaddrinfo(hostname, servname, hints, res)
| `- error: cannot find 'getaddrinfo' in scope
246 | }
247 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:10: error: cannot find 'getnameinfo' in scope
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: cannot find 'getnameinfo' in scope
263 | }
264 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:39: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:67: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:274:10: error: cannot find 'freeaddrinfo' in scope
272 | }
273 | #endif
274 | return freeaddrinfo(addrinfo)
| `- error: cannot find 'freeaddrinfo' in scope
275 | }
276 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:281:10: error: cannot find 'gai_strerror' in scope
279 | // FIXME
280 | #endif
281 | return gai_strerror(error)
| `- error: cannot find 'gai_strerror' in scope
282 | }
283 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:295:10: error: cannot find 'listen' in scope
293 | if mockingEnabled { return _mock(socket, backlog) }
294 | #endif
295 | return listen(socket, backlog)
| `- error: cannot find 'listen' in scope
296 | }
297 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:335:10: error: cannot find 'sendto' in scope
333 | }
334 | #endif
335 | return sendto(socket, buffer, length, flags, dest_addr, dest_len)
| `- error: cannot find 'sendto' in scope
336 | }
337 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:351:10: error: cannot find 'recvfrom' in scope
349 | }
350 | #endif
351 | return recvfrom(socket, buffer, length, flags, address, addres_len)
| `- error: cannot find 'recvfrom' in scope
352 | }
353 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:373:10: error: cannot find 'sendmsg' in scope
371 | if mockingEnabled { return _mockInt(socket, message, flags) }
372 | #endif
373 | return sendmsg(socket, message, flags)
| `- error: cannot find 'sendmsg' in scope
374 | }
375 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:384:10: error: cannot find 'recvmsg' in scope
382 | if mockingEnabled { return _mockInt(socket, message, flags) }
383 | #endif
384 | return recvmsg(socket, message, flags)
| `- error: cannot find 'recvmsg' in scope
385 | }
386 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:479:12: error: cannot find 'if_freenameindex' in scope
477 | if mockingEnabled { return _mock(pointer) }
478 | #endif
479 | return if_freenameindex(pointer)
| `- error: cannot find 'if_freenameindex' in scope
480 | }
481 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:516:12: error: cannot find 'getsockname' in scope
514 | if mockingEnabled { return _mock(fd, address) }
515 | #endif
516 | return getsockname(fd, address, length)
| `- error: cannot find 'getsockname' in scope
517 | }
518 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:523:12: error: cannot find 'getpeername' in scope
521 | if mockingEnabled { return _mock(fd, address) }
522 | #endif
523 | return getpeername(fd, address, length)
| `- error: cannot find 'getpeername' in scope
524 | }
525 |
[67/83] Compiling Socket Util.swift
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:58:29: error: cannot find type 'addrinfo' in scope
56 |
57 | /// The C `addrinfo` type
58 | typealias AddressInfo = addrinfo
| `- error: cannot find type 'addrinfo' in scope
59 |
60 | /// The C `in_addr` type
/host/spi-builder-workspace/Sources/Socket/System/CInterop.swift:89:36: error: cannot find type 'if_nameindex' in scope
87 |
88 | /// The C `if_nameindex` type
89 | typealias InterfaceNameIndex = if_nameindex
| `- error: cannot find type 'if_nameindex' in scope
90 |
91 | /// The C `ifaddrs` type
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:176:10: error: cannot find 'socket' in scope
174 | if mockingEnabled { return _mock(fd, fd2, fd3) }
175 | #endif
176 | return socket(fd, fd2, fd3)
| `- error: cannot find 'socket' in scope
177 | }
178 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:183:10: error: cannot find 'setsockopt' in scope
181 | if mockingEnabled { return _mock(fd, fd2, fd3, pointer, dataLength) }
182 | #endif
183 | return setsockopt(fd, fd2, fd3, pointer, dataLength)
| `- error: cannot find 'setsockopt' in scope
184 | }
185 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:207:10: error: cannot find 'bind' in scope
205 | if mockingEnabled { return _mock(socket, address, length) }
206 | #endif
207 | return bind(socket, address, length)
| `- error: cannot find 'bind' in scope
208 | }
209 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:218:10: error: cannot find 'connect' in scope
216 | if mockingEnabled { return _mock(socket, addr, len) }
217 | #endif
218 | return connect(socket, addr, len)
| `- error: cannot find 'connect' in scope
219 | }
220 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:245:10: error: cannot find 'getaddrinfo' in scope
243 | }
244 | #endif
245 | return getaddrinfo(hostname, servname, hints, res)
| `- error: cannot find 'getaddrinfo' in scope
246 | }
247 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:10: error: cannot find 'getnameinfo' in scope
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: cannot find 'getnameinfo' in scope
263 | }
264 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:39: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:262:67: error: generic parameter 'U' could not be inferred
260 | }
261 | #endif
262 | return getnameinfo(sa, salen, host, numericCast(hostlen), serv, numericCast(servlen), flags)
| `- error: generic parameter 'U' could not be inferred
263 | }
264 |
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:274:10: error: cannot find 'freeaddrinfo' in scope
272 | }
273 | #endif
274 | return freeaddrinfo(addrinfo)
| `- error: cannot find 'freeaddrinfo' in scope
275 | }
276 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:281:10: error: cannot find 'gai_strerror' in scope
279 | // FIXME
280 | #endif
281 | return gai_strerror(error)
| `- error: cannot find 'gai_strerror' in scope
282 | }
283 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:295:10: error: cannot find 'listen' in scope
293 | if mockingEnabled { return _mock(socket, backlog) }
294 | #endif
295 | return listen(socket, backlog)
| `- error: cannot find 'listen' in scope
296 | }
297 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:335:10: error: cannot find 'sendto' in scope
333 | }
334 | #endif
335 | return sendto(socket, buffer, length, flags, dest_addr, dest_len)
| `- error: cannot find 'sendto' in scope
336 | }
337 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:351:10: error: cannot find 'recvfrom' in scope
349 | }
350 | #endif
351 | return recvfrom(socket, buffer, length, flags, address, addres_len)
| `- error: cannot find 'recvfrom' in scope
352 | }
353 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:373:10: error: cannot find 'sendmsg' in scope
371 | if mockingEnabled { return _mockInt(socket, message, flags) }
372 | #endif
373 | return sendmsg(socket, message, flags)
| `- error: cannot find 'sendmsg' in scope
374 | }
375 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:384:10: error: cannot find 'recvmsg' in scope
382 | if mockingEnabled { return _mockInt(socket, message, flags) }
383 | #endif
384 | return recvmsg(socket, message, flags)
| `- error: cannot find 'recvmsg' in scope
385 | }
386 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:479:12: error: cannot find 'if_freenameindex' in scope
477 | if mockingEnabled { return _mock(pointer) }
478 | #endif
479 | return if_freenameindex(pointer)
| `- error: cannot find 'if_freenameindex' in scope
480 | }
481 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:516:12: error: cannot find 'getsockname' in scope
514 | if mockingEnabled { return _mock(fd, address) }
515 | #endif
516 | return getsockname(fd, address, length)
| `- error: cannot find 'getsockname' in scope
517 | }
518 |
/host/spi-builder-workspace/Sources/Socket/System/Syscalls.swift:523:12: error: cannot find 'getpeername' in scope
521 | if mockingEnabled { return _mock(fd, address) }
522 | #endif
523 | return getpeername(fd, address, length)
| `- error: cannot find 'getpeername' in scope
524 | }
525 |
[68/83] Compiling Socket FileFlags.swift
[69/83] Compiling Socket IOControl.swift
[70/83] Compiling Socket IODirection.swift
[71/83] Compiling Socket IOOperations.swift
[72/83] Compiling Socket IOType.swift
[73/83] Compiling Socket InternetProtocol.swift
[74/83] Compiling Socket SocketOptionLevel.swift
[75/83] Compiling Socket SocketProtocol.swift
[76/83] Compiling Socket IPv4Protocol.swift
[77/83] Compiling Socket IPv6Protocol.swift
[78/83] Compiling Socket LinkLayerProtocol.swift
[79/83] Compiling Socket SocketFlags.swift
[80/83] Compiling Socket SocketHelpers.swift
[81/83] Compiling Socket SocketOperations.swift
[82/83] Compiling Socket SocketOption.swift
[83/83] Compiling Socket SocketOptionID.swift
BUILD FAILURE 6.1 wasm