Build Information
Failed to build xcparse, reference 2.3.2 (fdba6f
), with Swift 6.1 for Wasm on 29 May 2025 21:33:27 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
24 | public let rawValue: CInterop.Mode
| `- note: cannot automatically synthesize 'Decodable' because 'CInterop.Mode' does not conform to 'Decodable'
25 |
26 | /// Create a strongly-typed file permission from a raw C value.
Swift.Decodable.init:2:1: note: protocol requires initializer 'init(from:)' with type 'Decodable'
1 | protocol Decodable {
2 | init(from decoder: any Decoder) throws}
| `- note: protocol requires initializer 'init(from:)' with type 'Decodable'
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:31:49: error: extraneous argument label 'rawValue:' in call
29 |
30 | @_alwaysEmitIntoClient
31 | private init(_ raw: CInterop.Mode) { self.init(rawValue: raw) }
| `- error: extraneous argument label 'rawValue:' in call
32 |
33 | /// Indicates that other users have read-only permission.
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:35:50: error: no exact matches in call to initializer
33 | /// Indicates that other users have read-only permission.
34 | @_alwaysEmitIntoClient
35 | public static var otherRead: FilePermissions { FilePermissions(0o4) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
36 |
37 | /// Indicates that other users have write-only permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:39:51: error: no exact matches in call to initializer
37 | /// Indicates that other users have write-only permission.
38 | @_alwaysEmitIntoClient
39 | public static var otherWrite: FilePermissions { FilePermissions(0o2) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
40 |
41 | /// Indicates that other users have execute-only permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:43:53: error: no exact matches in call to initializer
41 | /// Indicates that other users have execute-only permission.
42 | @_alwaysEmitIntoClient
43 | public static var otherExecute: FilePermissions { FilePermissions(0o1) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
44 |
45 | /// Indicates that other users have read-write permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:47:55: error: no exact matches in call to initializer
45 | /// Indicates that other users have read-write permission.
46 | @_alwaysEmitIntoClient
47 | public static var otherReadWrite: FilePermissions { FilePermissions(0o6) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
48 |
49 | /// Indicates that other users have read-execute permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:51:57: error: no exact matches in call to initializer
49 | /// Indicates that other users have read-execute permission.
50 | @_alwaysEmitIntoClient
51 | public static var otherReadExecute: FilePermissions { FilePermissions(0o5) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
52 |
53 | /// Indicates that other users have write-execute permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:55:58: error: no exact matches in call to initializer
53 | /// Indicates that other users have write-execute permission.
54 | @_alwaysEmitIntoClient
55 | public static var otherWriteExecute: FilePermissions { FilePermissions(0o3) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
56 |
57 | /// Indicates that other users have read, write, and execute permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:59:62: error: no exact matches in call to initializer
57 | /// Indicates that other users have read, write, and execute permission.
58 | @_alwaysEmitIntoClient
59 | public static var otherReadWriteExecute: FilePermissions { FilePermissions(0o7) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
60 |
61 | /// Indicates that the group has read-only permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:63:50: error: no exact matches in call to initializer
61 | /// Indicates that the group has read-only permission.
62 | @_alwaysEmitIntoClient
63 | public static var groupRead: FilePermissions { FilePermissions(0o40) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
64 |
65 | /// Indicates that the group has write-only permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:67:51: error: no exact matches in call to initializer
65 | /// Indicates that the group has write-only permission.
66 | @_alwaysEmitIntoClient
67 | public static var groupWrite: FilePermissions { FilePermissions(0o20) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
68 |
69 | /// Indicates that the group has execute-only permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:71:53: error: no exact matches in call to initializer
69 | /// Indicates that the group has execute-only permission.
70 | @_alwaysEmitIntoClient
71 | public static var groupExecute: FilePermissions { FilePermissions(0o10) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
72 |
73 | /// Indicates that the group has read-write permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:75:55: error: no exact matches in call to initializer
73 | /// Indicates that the group has read-write permission.
74 | @_alwaysEmitIntoClient
75 | public static var groupReadWrite: FilePermissions { FilePermissions(0o60) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
76 |
77 | /// Indicates that the group has read-execute permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:79:57: error: no exact matches in call to initializer
77 | /// Indicates that the group has read-execute permission.
78 | @_alwaysEmitIntoClient
79 | public static var groupReadExecute: FilePermissions { FilePermissions(0o50) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
80 |
81 | /// Indicates that the group has write-execute permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:83:58: error: no exact matches in call to initializer
81 | /// Indicates that the group has write-execute permission.
82 | @_alwaysEmitIntoClient
83 | public static var groupWriteExecute: FilePermissions { FilePermissions(0o30) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
84 |
85 | /// Indicates that the group has read, write, and execute permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:87:62: error: no exact matches in call to initializer
85 | /// Indicates that the group has read, write, and execute permission.
86 | @_alwaysEmitIntoClient
87 | public static var groupReadWriteExecute: FilePermissions { FilePermissions(0o70) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
88 |
89 | /// Indicates that the owner has read-only permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:91:50: error: no exact matches in call to initializer
89 | /// Indicates that the owner has read-only permission.
90 | @_alwaysEmitIntoClient
91 | public static var ownerRead: FilePermissions { FilePermissions(0o400) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
92 |
93 | /// Indicates that the owner has write-only permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:95:51: error: no exact matches in call to initializer
93 | /// Indicates that the owner has write-only permission.
94 | @_alwaysEmitIntoClient
95 | public static var ownerWrite: FilePermissions { FilePermissions(0o200) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
96 |
97 | /// Indicates that the owner has execute-only permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:99:53: error: no exact matches in call to initializer
97 | /// Indicates that the owner has execute-only permission.
98 | @_alwaysEmitIntoClient
99 | public static var ownerExecute: FilePermissions { FilePermissions(0o100) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
100 |
101 | /// Indicates that the owner has read-write permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:103:55: error: no exact matches in call to initializer
101 | /// Indicates that the owner has read-write permission.
102 | @_alwaysEmitIntoClient
103 | public static var ownerReadWrite: FilePermissions { FilePermissions(0o600) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
104 |
105 | /// Indicates that the owner has read-execute permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:107:57: error: no exact matches in call to initializer
105 | /// Indicates that the owner has read-execute permission.
106 | @_alwaysEmitIntoClient
107 | public static var ownerReadExecute: FilePermissions { FilePermissions(0o500) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
108 |
109 | /// Indicates that the owner has write-execute permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:111:58: error: no exact matches in call to initializer
109 | /// Indicates that the owner has write-execute permission.
110 | @_alwaysEmitIntoClient
111 | public static var ownerWriteExecute: FilePermissions { FilePermissions(0o300) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
112 |
113 | /// Indicates that the owner has read, write, and execute permission.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:115:62: error: no exact matches in call to initializer
113 | /// Indicates that the owner has read, write, and execute permission.
114 | @_alwaysEmitIntoClient
115 | public static var ownerReadWriteExecute: FilePermissions { FilePermissions(0o700) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
116 |
117 | /// Indicates that the file is executed as the owner.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:121:50: error: no exact matches in call to initializer
119 | /// For more information, see the `setuid(2)` man page.
120 | @_alwaysEmitIntoClient
121 | public static var setUserID: FilePermissions { FilePermissions(0o4000) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
122 |
123 | /// Indicates that the file is executed as the group.
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:127:51: error: no exact matches in call to initializer
125 | /// For more information, see the `setgid(2)` man page.
126 | @_alwaysEmitIntoClient
127 | public static var setGroupID: FilePermissions { FilePermissions(0o2000) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
128 |
129 | /// Indicates that executable's text segment
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePermissions.swift:135:49: error: no exact matches in call to initializer
133 | /// discussion of `S_ISVTX` (the sticky bit).
134 | @_alwaysEmitIntoClient
135 | public static var saveText: FilePermissions { FilePermissions(0o1000) }
| |- error: no exact matches in call to initializer
| `- note: candidate expects value of type 'FilePermissions' for parameter #1 (got 'Int')
136 | }
137 |
Swift.SetAlgebra.init:2:19: note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
1 | protocol SetAlgebra {
2 | @inlinable public init<S>(_ sequence: __owned S) where S : Sequence, Self.Element == S.Element}
| `- note: candidate requires that 'Int' conform to 'Sequence' (requirement specified as 'S' : 'Sequence')
3 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:26:8: error: Unsupported Platform
24 | import ucrt
25 | #else
26 | #error("Unsupported Platform")
| `- error: Unsupported Platform
27 | #endif
28 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:23:8: error: Unsupported Platform
21 | import ucrt
22 | #else
23 | #error("Unsupported Platform")
| `- error: Unsupported Platform
24 | #endif
25 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:33:29: error: cannot find 'EPERM' in scope
31 |
32 | @_alwaysEmitIntoClient
33 | internal var _EPERM: CInt { EPERM }
| `- error: cannot find 'EPERM' in scope
34 |
35 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:36:30: error: cannot find 'ENOENT' in scope
34 |
35 | @_alwaysEmitIntoClient
36 | internal var _ENOENT: CInt { ENOENT }
| `- error: cannot find 'ENOENT' in scope
37 |
38 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:39:29: error: cannot find 'ESRCH' in scope
37 |
38 | @_alwaysEmitIntoClient
39 | internal var _ESRCH: CInt { ESRCH }
| `- error: cannot find 'ESRCH' in scope
40 |
41 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:42:29: error: cannot find 'EINTR' in scope
40 |
41 | @_alwaysEmitIntoClient
42 | internal var _EINTR: CInt { EINTR }
| `- error: cannot find 'EINTR' in scope
43 |
44 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:45:27: error: cannot find 'EIO' in scope
43 |
44 | @_alwaysEmitIntoClient
45 | internal var _EIO: CInt { EIO }
| `- error: cannot find 'EIO' in scope
46 |
47 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:48:29: error: cannot find 'ENXIO' in scope
46 |
47 | @_alwaysEmitIntoClient
48 | internal var _ENXIO: CInt { ENXIO }
| `- error: cannot find 'ENXIO' in scope
49 |
50 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:51:29: error: cannot find 'E2BIG' in scope
49 |
50 | @_alwaysEmitIntoClient
51 | internal var _E2BIG: CInt { E2BIG }
| `- error: cannot find 'E2BIG' in scope
52 |
53 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:54:31: error: cannot find 'ENOEXEC' in scope
52 |
53 | @_alwaysEmitIntoClient
54 | internal var _ENOEXEC: CInt { ENOEXEC }
| `- error: cannot find 'ENOEXEC' in scope
55 |
56 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:57:29: error: cannot find 'EBADF' in scope
55 |
56 | @_alwaysEmitIntoClient
57 | internal var _EBADF: CInt { EBADF }
| `- error: cannot find 'EBADF' in scope
58 |
59 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:60:30: error: cannot find 'ECHILD' in scope
58 |
59 | @_alwaysEmitIntoClient
60 | internal var _ECHILD: CInt { ECHILD }
| `- error: cannot find 'ECHILD' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:63:31: error: cannot find 'EDEADLK' in scope
61 |
62 | @_alwaysEmitIntoClient
63 | internal var _EDEADLK: CInt { EDEADLK }
| `- error: cannot find 'EDEADLK' in scope
64 |
65 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:66:30: error: cannot find 'ENOMEM' in scope
64 |
65 | @_alwaysEmitIntoClient
66 | internal var _ENOMEM: CInt { ENOMEM }
| `- error: cannot find 'ENOMEM' in scope
67 |
68 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:69:30: error: cannot find 'EACCES' in scope
67 |
68 | @_alwaysEmitIntoClient
69 | internal var _EACCES: CInt { EACCES }
| `- error: cannot find 'EACCES' in scope
70 |
71 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:72:30: error: cannot find 'EFAULT' in scope
70 |
71 | @_alwaysEmitIntoClient
72 | internal var _EFAULT: CInt { EFAULT }
| `- error: cannot find 'EFAULT' in scope
73 |
74 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:76:31: error: cannot find 'ENOTBLK' in scope
74 | #if !os(Windows)
75 | @_alwaysEmitIntoClient
76 | internal var _ENOTBLK: CInt { ENOTBLK }
| `- error: cannot find 'ENOTBLK' in scope
77 | #endif
78 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:80:29: error: cannot find 'EBUSY' in scope
78 |
79 | @_alwaysEmitIntoClient
80 | internal var _EBUSY: CInt { EBUSY }
| `- error: cannot find 'EBUSY' in scope
81 |
82 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:83:30: error: cannot find 'EEXIST' in scope
81 |
82 | @_alwaysEmitIntoClient
83 | internal var _EEXIST: CInt { EEXIST }
| `- error: cannot find 'EEXIST' in scope
84 |
85 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:86:29: error: cannot find 'EXDEV' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _EXDEV: CInt { EXDEV }
| `- error: cannot find 'EXDEV' in scope
87 |
88 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:89:30: error: cannot find 'ENODEV' in scope
87 |
88 | @_alwaysEmitIntoClient
89 | internal var _ENODEV: CInt { ENODEV }
| `- error: cannot find 'ENODEV' in scope
90 |
91 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:92:31: error: cannot find 'ENOTDIR' in scope
90 |
91 | @_alwaysEmitIntoClient
92 | internal var _ENOTDIR: CInt { ENOTDIR }
| `- error: cannot find 'ENOTDIR' in scope
93 |
94 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:95:30: error: cannot find 'EISDIR' in scope
93 |
94 | @_alwaysEmitIntoClient
95 | internal var _EISDIR: CInt { EISDIR }
| `- error: cannot find 'EISDIR' in scope
96 |
97 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:98:30: error: cannot find 'EINVAL' in scope
96 |
97 | @_alwaysEmitIntoClient
98 | internal var _EINVAL: CInt { EINVAL }
| `- error: cannot find 'EINVAL' in scope
99 |
100 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:101:30: error: cannot find 'ENFILE' in scope
99 |
100 | @_alwaysEmitIntoClient
101 | internal var _ENFILE: CInt { ENFILE }
| `- error: cannot find 'ENFILE' in scope
102 |
103 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:104:30: error: cannot find 'EMFILE' in scope
102 |
103 | @_alwaysEmitIntoClient
104 | internal var _EMFILE: CInt { EMFILE }
| `- error: cannot find 'EMFILE' in scope
105 |
106 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:108:30: error: cannot find 'ENOTTY' in scope
106 | #if !os(Windows)
107 | @_alwaysEmitIntoClient
108 | internal var _ENOTTY: CInt { ENOTTY }
| `- error: cannot find 'ENOTTY' in scope
109 |
110 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:111:31: error: cannot find 'ETXTBSY' in scope
109 |
110 | @_alwaysEmitIntoClient
111 | internal var _ETXTBSY: CInt { ETXTBSY }
| `- error: cannot find 'ETXTBSY' in scope
112 | #endif
113 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:115:29: error: cannot find 'EFBIG' in scope
113 |
114 | @_alwaysEmitIntoClient
115 | internal var _EFBIG: CInt { EFBIG }
| `- error: cannot find 'EFBIG' in scope
116 |
117 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:118:30: error: cannot find 'ENOSPC' in scope
116 |
117 | @_alwaysEmitIntoClient
118 | internal var _ENOSPC: CInt { ENOSPC }
| `- error: cannot find 'ENOSPC' in scope
119 |
120 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:121:30: error: cannot find 'ESPIPE' in scope
119 |
120 | @_alwaysEmitIntoClient
121 | internal var _ESPIPE: CInt { ESPIPE }
| `- error: cannot find 'ESPIPE' in scope
122 |
123 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:124:29: error: cannot find 'EROFS' in scope
122 |
123 | @_alwaysEmitIntoClient
124 | internal var _EROFS: CInt { EROFS }
| `- error: cannot find 'EROFS' in scope
125 |
126 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:127:30: error: cannot find 'EMLINK' in scope
125 |
126 | @_alwaysEmitIntoClient
127 | internal var _EMLINK: CInt { EMLINK }
| `- error: cannot find 'EMLINK' in scope
128 |
129 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:130:29: error: cannot find 'EPIPE' in scope
128 |
129 | @_alwaysEmitIntoClient
130 | internal var _EPIPE: CInt { EPIPE }
| `- error: cannot find 'EPIPE' in scope
131 |
132 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:133:28: error: cannot find 'EDOM' in scope
131 |
132 | @_alwaysEmitIntoClient
133 | internal var _EDOM: CInt { EDOM }
| `- error: cannot find 'EDOM' in scope
134 |
135 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:136:30: error: cannot find 'ERANGE' in scope
134 |
135 | @_alwaysEmitIntoClient
136 | internal var _ERANGE: CInt { ERANGE }
| `- error: cannot find 'ERANGE' in scope
137 |
138 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:139:30: error: cannot find 'EAGAIN' in scope
137 |
138 | @_alwaysEmitIntoClient
139 | internal var _EAGAIN: CInt { EAGAIN }
| `- error: cannot find 'EAGAIN' in scope
140 |
141 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:142:35: error: cannot find 'EWOULDBLOCK' in scope
140 |
141 | @_alwaysEmitIntoClient
142 | internal var _EWOULDBLOCK: CInt { EWOULDBLOCK }
| `- error: cannot find 'EWOULDBLOCK' in scope
143 |
144 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:145:35: error: cannot find 'EINPROGRESS' in scope
143 |
144 | @_alwaysEmitIntoClient
145 | internal var _EINPROGRESS: CInt { EINPROGRESS }
| `- error: cannot find 'EINPROGRESS' in scope
146 |
147 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:148:32: error: cannot find 'EALREADY' in scope
146 |
147 | @_alwaysEmitIntoClient
148 | internal var _EALREADY: CInt { EALREADY }
| `- error: cannot find 'EALREADY' in scope
149 |
150 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:151:32: error: cannot find 'ENOTSOCK' in scope
149 |
150 | @_alwaysEmitIntoClient
151 | internal var _ENOTSOCK: CInt { ENOTSOCK }
| `- error: cannot find 'ENOTSOCK' in scope
152 |
153 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:154:36: error: cannot find 'EDESTADDRREQ' in scope
152 |
153 | @_alwaysEmitIntoClient
154 | internal var _EDESTADDRREQ: CInt { EDESTADDRREQ }
| `- error: cannot find 'EDESTADDRREQ' in scope
155 |
156 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:157:32: error: cannot find 'EMSGSIZE' in scope
155 |
156 | @_alwaysEmitIntoClient
157 | internal var _EMSGSIZE: CInt { EMSGSIZE }
| `- error: cannot find 'EMSGSIZE' in scope
158 |
159 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:160:34: error: cannot find 'EPROTOTYPE' in scope
158 |
159 | @_alwaysEmitIntoClient
160 | internal var _EPROTOTYPE: CInt { EPROTOTYPE }
| `- error: cannot find 'EPROTOTYPE' in scope
161 |
162 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:163:35: error: cannot find 'ENOPROTOOPT' in scope
161 |
162 | @_alwaysEmitIntoClient
163 | internal var _ENOPROTOOPT: CInt { ENOPROTOOPT }
| `- error: cannot find 'ENOPROTOOPT' in scope
164 |
165 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:166:39: error: cannot find 'EPROTONOSUPPORT' in scope
164 |
165 | @_alwaysEmitIntoClient
166 | internal var _EPROTONOSUPPORT: CInt { EPROTONOSUPPORT }
| `- error: cannot find 'EPROTONOSUPPORT' in scope
167 |
168 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:173:10: error: cannot find 'ESOCKTNOSUPPORT' in scope
171 | return WSAESOCKTNOSUPPORT
172 | #else
173 | return ESOCKTNOSUPPORT
| `- error: cannot find 'ESOCKTNOSUPPORT' in scope
174 | #endif
175 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:182:10: error: cannot find 'ENOTSUP' in scope
180 | return WSAEOPNOTSUPP
181 | #else
182 | return ENOTSUP
| `- error: cannot find 'ENOTSUP' in scope
183 | #endif
184 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:191:10: error: cannot find 'EPFNOSUPPORT' in scope
189 | return WSAEPFNOSUPPORT
190 | #else
191 | return EPFNOSUPPORT
| `- error: cannot find 'EPFNOSUPPORT' in scope
192 | #endif
193 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:196:36: error: cannot find 'EAFNOSUPPORT' in scope
194 |
195 | @_alwaysEmitIntoClient
196 | internal var _EAFNOSUPPORT: CInt { EAFNOSUPPORT }
| `- error: cannot find 'EAFNOSUPPORT' in scope
197 |
198 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:199:34: error: cannot find 'EADDRINUSE' in scope
197 |
198 | @_alwaysEmitIntoClient
199 | internal var _EADDRINUSE: CInt { EADDRINUSE }
| `- error: cannot find 'EADDRINUSE' in scope
200 |
201 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:202:37: error: cannot find 'EADDRNOTAVAIL' in scope
200 |
201 | @_alwaysEmitIntoClient
202 | internal var _EADDRNOTAVAIL: CInt { EADDRNOTAVAIL }
| `- error: cannot find 'EADDRNOTAVAIL' in scope
203 |
204 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:205:32: error: cannot find 'ENETDOWN' in scope
203 |
204 | @_alwaysEmitIntoClient
205 | internal var _ENETDOWN: CInt { ENETDOWN }
| `- error: cannot find 'ENETDOWN' in scope
206 |
207 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:208:35: error: cannot find 'ENETUNREACH' in scope
206 |
207 | @_alwaysEmitIntoClient
208 | internal var _ENETUNREACH: CInt { ENETUNREACH }
| `- error: cannot find 'ENETUNREACH' in scope
209 |
210 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:211:33: error: cannot find 'ENETRESET' in scope
209 |
210 | @_alwaysEmitIntoClient
211 | internal var _ENETRESET: CInt { ENETRESET }
| `- error: cannot find 'ENETRESET' in scope
212 |
213 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:214:36: error: cannot find 'ECONNABORTED' in scope
212 |
213 | @_alwaysEmitIntoClient
214 | internal var _ECONNABORTED: CInt { ECONNABORTED }
| `- error: cannot find 'ECONNABORTED' in scope
215 |
216 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:217:34: error: cannot find 'ECONNRESET' in scope
215 |
216 | @_alwaysEmitIntoClient
217 | internal var _ECONNRESET: CInt { ECONNRESET }
| `- error: cannot find 'ECONNRESET' in scope
218 |
219 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:220:31: error: cannot find 'ENOBUFS' in scope
218 |
219 | @_alwaysEmitIntoClient
220 | internal var _ENOBUFS: CInt { ENOBUFS }
| `- error: cannot find 'ENOBUFS' in scope
221 |
222 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:223:31: error: cannot find 'EISCONN' in scope
221 |
222 | @_alwaysEmitIntoClient
223 | internal var _EISCONN: CInt { EISCONN }
| `- error: cannot find 'EISCONN' in scope
224 |
225 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:226:32: error: cannot find 'ENOTCONN' in scope
224 |
225 | @_alwaysEmitIntoClient
226 | internal var _ENOTCONN: CInt { ENOTCONN }
| `- error: cannot find 'ENOTCONN' in scope
227 |
228 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:233:10: error: cannot find 'ESHUTDOWN' in scope
231 | return WSAESHUTDOWN
232 | #else
233 | return ESHUTDOWN
| `- error: cannot find 'ESHUTDOWN' in scope
234 | #endif
235 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:242:10: error: cannot find 'ETOOMANYREFS' in scope
240 | return WSAETOOMANYREFS
241 | #else
242 | return ETOOMANYREFS
| `- error: cannot find 'ETOOMANYREFS' in scope
243 | #endif
244 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:247:33: error: cannot find 'ETIMEDOUT' in scope
245 |
246 | @_alwaysEmitIntoClient
247 | internal var _ETIMEDOUT: CInt { ETIMEDOUT }
| `- error: cannot find 'ETIMEDOUT' in scope
248 |
249 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:250:36: error: cannot find 'ECONNREFUSED' in scope
248 |
249 | @_alwaysEmitIntoClient
250 | internal var _ECONNREFUSED: CInt { ECONNREFUSED }
| `- error: cannot find 'ECONNREFUSED' in scope
251 |
252 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:253:29: error: cannot find 'ELOOP' in scope
251 |
252 | @_alwaysEmitIntoClient
253 | internal var _ELOOP: CInt { ELOOP }
| `- error: cannot find 'ELOOP' in scope
254 |
255 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:256:36: error: cannot find 'ENAMETOOLONG' in scope
254 |
255 | @_alwaysEmitIntoClient
256 | internal var _ENAMETOOLONG: CInt { ENAMETOOLONG }
| `- error: cannot find 'ENAMETOOLONG' in scope
257 |
258 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:263:10: error: cannot find 'EHOSTDOWN' in scope
261 | return WSAEHOSTDOWN
262 | #else
263 | return EHOSTDOWN
| `- error: cannot find 'EHOSTDOWN' in scope
264 | #endif
265 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:268:36: error: cannot find 'EHOSTUNREACH' in scope
266 |
267 | @_alwaysEmitIntoClient
268 | internal var _EHOSTUNREACH: CInt { EHOSTUNREACH }
| `- error: cannot find 'EHOSTUNREACH' in scope
269 |
270 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:271:33: error: cannot find 'ENOTEMPTY' in scope
269 |
270 | @_alwaysEmitIntoClient
271 | internal var _ENOTEMPTY: CInt { ENOTEMPTY }
| `- error: cannot find 'ENOTEMPTY' in scope
272 |
273 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:283:10: error: cannot find 'EUSERS' in scope
281 | return WSAEUSERS
282 | #else
283 | return EUSERS
| `- error: cannot find 'EUSERS' in scope
284 | #endif
285 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:292:10: error: cannot find 'EDQUOT' in scope
290 | return WSAEDQUOT
291 | #else
292 | return EDQUOT
| `- error: cannot find 'EDQUOT' in scope
293 | #endif
294 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:301:10: error: cannot find 'ESTALE' in scope
299 | return WSAESTALE
300 | #else
301 | return ESTALE
| `- error: cannot find 'ESTALE' in scope
302 | #endif
303 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:310:10: error: cannot find 'EREMOTE' in scope
308 | return WSAEREMOTE
309 | #else
310 | return EREMOTE
| `- error: cannot find 'EREMOTE' in scope
311 | #endif
312 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:332:30: error: cannot find 'ENOLCK' in scope
330 |
331 | @_alwaysEmitIntoClient
332 | internal var _ENOLCK: CInt { ENOLCK }
| `- error: cannot find 'ENOLCK' in scope
333 |
334 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:335:30: error: cannot find 'ENOSYS' in scope
333 |
334 | @_alwaysEmitIntoClient
335 | internal var _ENOSYS: CInt { ENOSYS }
| `- error: cannot find 'ENOSYS' in scope
336 |
337 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:356:33: error: cannot find 'EOVERFLOW' in scope
354 | #if !os(Windows)
355 | @_alwaysEmitIntoClient
356 | internal var _EOVERFLOW: CInt { EOVERFLOW }
| `- error: cannot find 'EOVERFLOW' in scope
357 | #endif
358 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:374:33: error: cannot find 'ECANCELED' in scope
372 |
373 | @_alwaysEmitIntoClient
374 | internal var _ECANCELED: CInt { ECANCELED }
| `- error: cannot find 'ECANCELED' in scope
375 |
376 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:378:29: error: cannot find 'EIDRM' in scope
376 | #if !os(Windows)
377 | @_alwaysEmitIntoClient
378 | internal var _EIDRM: CInt { EIDRM }
| `- error: cannot find 'EIDRM' in scope
379 |
380 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:381:30: error: cannot find 'ENOMSG' in scope
379 |
380 | @_alwaysEmitIntoClient
381 | internal var _ENOMSG: CInt { ENOMSG }
| `- error: cannot find 'ENOMSG' in scope
382 | #endif
383 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:385:30: error: cannot find 'EILSEQ' in scope
383 |
384 | @_alwaysEmitIntoClient
385 | internal var _EILSEQ: CInt { EILSEQ }
| `- error: cannot find 'EILSEQ' in scope
386 |
387 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:394:31: error: cannot find 'EBADMSG' in scope
392 | #if !os(Windows)
393 | @_alwaysEmitIntoClient
394 | internal var _EBADMSG: CInt { EBADMSG }
| `- error: cannot find 'EBADMSG' in scope
395 |
396 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:397:33: error: cannot find 'EMULTIHOP' in scope
395 |
396 | @_alwaysEmitIntoClient
397 | internal var _EMULTIHOP: CInt { EMULTIHOP }
| `- error: cannot find 'EMULTIHOP' in scope
398 |
399 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:400:31: error: cannot find 'ENODATA' in scope
398 |
399 | @_alwaysEmitIntoClient
400 | internal var _ENODATA: CInt { ENODATA }
| `- error: cannot find 'ENODATA' in scope
401 |
402 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:403:31: error: cannot find 'ENOLINK' in scope
401 |
402 | @_alwaysEmitIntoClient
403 | internal var _ENOLINK: CInt { ENOLINK }
| `- error: cannot find 'ENOLINK' in scope
404 |
405 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:406:29: error: cannot find 'ENOSR' in scope
404 |
405 | @_alwaysEmitIntoClient
406 | internal var _ENOSR: CInt { ENOSR }
| `- error: cannot find 'ENOSR' in scope
407 |
408 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:409:30: error: cannot find 'ENOSTR' in scope
407 |
408 | @_alwaysEmitIntoClient
409 | internal var _ENOSTR: CInt { ENOSTR }
| `- error: cannot find 'ENOSTR' in scope
410 |
411 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:412:30: error: cannot find 'EPROTO' in scope
410 |
411 | @_alwaysEmitIntoClient
412 | internal var _EPROTO: CInt { EPROTO }
| `- error: cannot find 'EPROTO' in scope
413 |
414 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:415:29: error: cannot find 'ETIME' in scope
413 |
414 | @_alwaysEmitIntoClient
415 | internal var _ETIME: CInt { ETIME }
| `- error: cannot find 'ETIME' in scope
416 | #endif
417 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:419:34: error: cannot find 'EOPNOTSUPP' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _EOPNOTSUPP: CInt { EOPNOTSUPP }
| `- error: cannot find 'EOPNOTSUPP' in scope
420 |
421 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:428:39: error: cannot find 'ENOTRECOVERABLE' in scope
426 | #if !os(Windows)
427 | @_alwaysEmitIntoClient
428 | internal var _ENOTRECOVERABLE: CInt { ENOTRECOVERABLE }
| `- error: cannot find 'ENOTRECOVERABLE' in scope
429 |
430 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:431:34: error: cannot find 'EOWNERDEAD' in scope
429 |
430 | @_alwaysEmitIntoClient
431 | internal var _EOWNERDEAD: CInt { EOWNERDEAD }
| `- error: cannot find 'EOWNERDEAD' in scope
432 | #endif
433 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:445:32: error: cannot find 'O_RDONLY' in scope
443 |
444 | @_alwaysEmitIntoClient
445 | internal var _O_RDONLY: CInt { O_RDONLY }
| `- error: cannot find 'O_RDONLY' in scope
446 |
447 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:448:32: error: cannot find 'O_WRONLY' in scope
446 |
447 | @_alwaysEmitIntoClient
448 | internal var _O_WRONLY: CInt { O_WRONLY }
| `- error: cannot find 'O_WRONLY' in scope
449 |
450 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:451:30: error: cannot find 'O_RDWR' in scope
449 |
450 | @_alwaysEmitIntoClient
451 | internal var _O_RDWR: CInt { O_RDWR }
| `- error: cannot find 'O_RDWR' in scope
452 |
453 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:456:33: error: cannot find 'O_ACCMODE' in scope
454 | // TODO: API?
455 | @_alwaysEmitIntoClient
456 | internal var _O_ACCMODE: CInt { O_ACCMODE }
| `- error: cannot find 'O_ACCMODE' in scope
457 |
458 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:459:34: error: cannot find 'O_NONBLOCK' in scope
457 |
458 | @_alwaysEmitIntoClient
459 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
460 | #endif
461 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:463:32: error: cannot find 'O_APPEND' in scope
461 |
462 | @_alwaysEmitIntoClient
463 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
464 |
465 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:476:31: error: cannot find 'O_ASYNC' in scope
474 | // TODO: API?
475 | @_alwaysEmitIntoClient
476 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
477 |
478 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:479:34: error: cannot find 'O_NOFOLLOW' in scope
477 |
478 | @_alwaysEmitIntoClient
479 | internal var _O_NOFOLLOW: CInt { O_NOFOLLOW }
| `- error: cannot find 'O_NOFOLLOW' in scope
480 | #endif
481 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:483:31: error: cannot find 'O_CREAT' in scope
481 |
482 | @_alwaysEmitIntoClient
483 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
484 |
485 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:486:31: error: cannot find 'O_TRUNC' in scope
484 |
485 | @_alwaysEmitIntoClient
486 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
487 |
488 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:489:30: error: cannot find 'O_EXCL' in scope
487 |
488 | @_alwaysEmitIntoClient
489 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
490 |
491 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:499:32: error: cannot find 'O_NOCTTY' in scope
497 | // TODO: API?
498 | @_alwaysEmitIntoClient
499 | internal var _O_NOCTTY: CInt { O_NOCTTY }
| `- error: cannot find 'O_NOCTTY' in scope
500 |
501 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:502:35: error: cannot find 'O_DIRECTORY' in scope
500 |
501 | @_alwaysEmitIntoClient
502 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
503 | #endif
504 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:512:33: error: cannot find 'O_CLOEXEC' in scope
510 | #if !os(Windows)
511 | @_alwaysEmitIntoClient
512 | internal var _O_CLOEXEC: CInt { O_CLOEXEC }
| `- error: cannot find 'O_CLOEXEC' in scope
513 | #endif
514 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:516:32: error: cannot find 'SEEK_SET' in scope
514 |
515 | @_alwaysEmitIntoClient
516 | internal var _SEEK_SET: CInt { SEEK_SET }
| `- error: cannot find 'SEEK_SET' in scope
517 |
518 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:519:32: error: cannot find 'SEEK_CUR' in scope
517 |
518 | @_alwaysEmitIntoClient
519 | internal var _SEEK_CUR: CInt { SEEK_CUR }
| `- error: cannot find 'SEEK_CUR' in scope
520 |
521 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:522:32: error: cannot find 'SEEK_END' in scope
520 |
521 | @_alwaysEmitIntoClient
522 | internal var _SEEK_END: CInt { SEEK_END }
| `- error: cannot find 'SEEK_END' in scope
523 |
524 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:24:8: error: Unsupported Platform
22 | import ucrt
23 | #else
24 | #error("Unsupported Platform")
| `- error: Unsupported Platform
25 | #endif
26 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:27:29: error: cannot find type 'off_t' in scope
25 | #endif
26 |
27 | internal typealias _COffT = off_t
| `- error: cannot find type 'off_t' in scope
28 |
29 | // MARK: syscalls and variables
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:132:38: error: cannot find type 'pthread_key_t' in scope
130 | internal typealias _PlatformTLSKey = DWORD
131 | #else
132 | internal typealias _PlatformTLSKey = pthread_key_t
| `- error: cannot find type 'pthread_key_t' in scope
133 | #endif
134 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:17:8: error: Unsupported Platform
15 | import ucrt
16 | #else
17 | #error("Unsupported Platform")
| `- error: Unsupported Platform
18 | #endif
19 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:67:73: error: cannot find type 'off_t' in scope
65 | // pread
66 | internal func system_pread(
67 | _ fd: Int32, _ buf: UnsafeMutableRawPointer!, _ nbyte: Int, _ offset: off_t
| `- error: cannot find type 'off_t' in scope
68 | ) -> Int {
69 | #if ENABLE_MOCKING
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:78:6: error: cannot find type 'off_t' in scope
76 | internal func system_lseek(
77 | _ fd: Int32, _ off: off_t, _ whence: Int32
78 | ) -> off_t {
| `- error: cannot find type 'off_t' in scope
79 | #if ENABLE_MOCKING
80 | if mockingEnabled { return _mockOffT(fd, off, whence) }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:77:23: error: cannot find type 'off_t' in scope
75 | // lseek
76 | internal func system_lseek(
77 | _ fd: Int32, _ off: off_t, _ whence: Int32
| `- error: cannot find type 'off_t' in scope
78 | ) -> off_t {
79 | #if ENABLE_MOCKING
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:97:66: error: cannot find type 'off_t' in scope
95 | // pwrite
96 | internal func system_pwrite(
97 | _ fd: Int32, _ buf: UnsafeRawPointer!, _ nbyte: Int, _ offset: off_t
| `- error: cannot find type 'off_t' in scope
98 | ) -> Int {
99 | #if ENABLE_MOCKING
[25/49] Compiling SystemPackage Util.swift
[26/49] Compiling SystemPackage UtilConsumers.swift
[27/49] Compiling SystemPackage PlatformString.swift
[28/49] Compiling SystemPackage SystemString.swift
[29/49] Compiling SystemPackage CInterop.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:35:27: error: cannot find type 'mode_t' in scope
33 | public typealias Mode = CInt
34 | #else
35 | public typealias Mode = mode_t
| `- error: cannot find type 'mode_t' in scope
36 | #endif
37 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:26:8: error: Unsupported Platform
24 | import ucrt
25 | #else
26 | #error("Unsupported Platform")
| `- error: Unsupported Platform
27 | #endif
28 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:23:8: error: Unsupported Platform
21 | import ucrt
22 | #else
23 | #error("Unsupported Platform")
| `- error: Unsupported Platform
24 | #endif
25 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:33:29: error: cannot find 'EPERM' in scope
31 |
32 | @_alwaysEmitIntoClient
33 | internal var _EPERM: CInt { EPERM }
| `- error: cannot find 'EPERM' in scope
34 |
35 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:36:30: error: cannot find 'ENOENT' in scope
34 |
35 | @_alwaysEmitIntoClient
36 | internal var _ENOENT: CInt { ENOENT }
| `- error: cannot find 'ENOENT' in scope
37 |
38 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:39:29: error: cannot find 'ESRCH' in scope
37 |
38 | @_alwaysEmitIntoClient
39 | internal var _ESRCH: CInt { ESRCH }
| `- error: cannot find 'ESRCH' in scope
40 |
41 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:42:29: error: cannot find 'EINTR' in scope
40 |
41 | @_alwaysEmitIntoClient
42 | internal var _EINTR: CInt { EINTR }
| `- error: cannot find 'EINTR' in scope
43 |
44 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:45:27: error: cannot find 'EIO' in scope
43 |
44 | @_alwaysEmitIntoClient
45 | internal var _EIO: CInt { EIO }
| `- error: cannot find 'EIO' in scope
46 |
47 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:48:29: error: cannot find 'ENXIO' in scope
46 |
47 | @_alwaysEmitIntoClient
48 | internal var _ENXIO: CInt { ENXIO }
| `- error: cannot find 'ENXIO' in scope
49 |
50 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:51:29: error: cannot find 'E2BIG' in scope
49 |
50 | @_alwaysEmitIntoClient
51 | internal var _E2BIG: CInt { E2BIG }
| `- error: cannot find 'E2BIG' in scope
52 |
53 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:54:31: error: cannot find 'ENOEXEC' in scope
52 |
53 | @_alwaysEmitIntoClient
54 | internal var _ENOEXEC: CInt { ENOEXEC }
| `- error: cannot find 'ENOEXEC' in scope
55 |
56 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:57:29: error: cannot find 'EBADF' in scope
55 |
56 | @_alwaysEmitIntoClient
57 | internal var _EBADF: CInt { EBADF }
| `- error: cannot find 'EBADF' in scope
58 |
59 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:60:30: error: cannot find 'ECHILD' in scope
58 |
59 | @_alwaysEmitIntoClient
60 | internal var _ECHILD: CInt { ECHILD }
| `- error: cannot find 'ECHILD' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:63:31: error: cannot find 'EDEADLK' in scope
61 |
62 | @_alwaysEmitIntoClient
63 | internal var _EDEADLK: CInt { EDEADLK }
| `- error: cannot find 'EDEADLK' in scope
64 |
65 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:66:30: error: cannot find 'ENOMEM' in scope
64 |
65 | @_alwaysEmitIntoClient
66 | internal var _ENOMEM: CInt { ENOMEM }
| `- error: cannot find 'ENOMEM' in scope
67 |
68 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:69:30: error: cannot find 'EACCES' in scope
67 |
68 | @_alwaysEmitIntoClient
69 | internal var _EACCES: CInt { EACCES }
| `- error: cannot find 'EACCES' in scope
70 |
71 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:72:30: error: cannot find 'EFAULT' in scope
70 |
71 | @_alwaysEmitIntoClient
72 | internal var _EFAULT: CInt { EFAULT }
| `- error: cannot find 'EFAULT' in scope
73 |
74 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:76:31: error: cannot find 'ENOTBLK' in scope
74 | #if !os(Windows)
75 | @_alwaysEmitIntoClient
76 | internal var _ENOTBLK: CInt { ENOTBLK }
| `- error: cannot find 'ENOTBLK' in scope
77 | #endif
78 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:80:29: error: cannot find 'EBUSY' in scope
78 |
79 | @_alwaysEmitIntoClient
80 | internal var _EBUSY: CInt { EBUSY }
| `- error: cannot find 'EBUSY' in scope
81 |
82 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:83:30: error: cannot find 'EEXIST' in scope
81 |
82 | @_alwaysEmitIntoClient
83 | internal var _EEXIST: CInt { EEXIST }
| `- error: cannot find 'EEXIST' in scope
84 |
85 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:86:29: error: cannot find 'EXDEV' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _EXDEV: CInt { EXDEV }
| `- error: cannot find 'EXDEV' in scope
87 |
88 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:89:30: error: cannot find 'ENODEV' in scope
87 |
88 | @_alwaysEmitIntoClient
89 | internal var _ENODEV: CInt { ENODEV }
| `- error: cannot find 'ENODEV' in scope
90 |
91 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:92:31: error: cannot find 'ENOTDIR' in scope
90 |
91 | @_alwaysEmitIntoClient
92 | internal var _ENOTDIR: CInt { ENOTDIR }
| `- error: cannot find 'ENOTDIR' in scope
93 |
94 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:95:30: error: cannot find 'EISDIR' in scope
93 |
94 | @_alwaysEmitIntoClient
95 | internal var _EISDIR: CInt { EISDIR }
| `- error: cannot find 'EISDIR' in scope
96 |
97 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:98:30: error: cannot find 'EINVAL' in scope
96 |
97 | @_alwaysEmitIntoClient
98 | internal var _EINVAL: CInt { EINVAL }
| `- error: cannot find 'EINVAL' in scope
99 |
100 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:101:30: error: cannot find 'ENFILE' in scope
99 |
100 | @_alwaysEmitIntoClient
101 | internal var _ENFILE: CInt { ENFILE }
| `- error: cannot find 'ENFILE' in scope
102 |
103 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:104:30: error: cannot find 'EMFILE' in scope
102 |
103 | @_alwaysEmitIntoClient
104 | internal var _EMFILE: CInt { EMFILE }
| `- error: cannot find 'EMFILE' in scope
105 |
106 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:108:30: error: cannot find 'ENOTTY' in scope
106 | #if !os(Windows)
107 | @_alwaysEmitIntoClient
108 | internal var _ENOTTY: CInt { ENOTTY }
| `- error: cannot find 'ENOTTY' in scope
109 |
110 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:111:31: error: cannot find 'ETXTBSY' in scope
109 |
110 | @_alwaysEmitIntoClient
111 | internal var _ETXTBSY: CInt { ETXTBSY }
| `- error: cannot find 'ETXTBSY' in scope
112 | #endif
113 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:115:29: error: cannot find 'EFBIG' in scope
113 |
114 | @_alwaysEmitIntoClient
115 | internal var _EFBIG: CInt { EFBIG }
| `- error: cannot find 'EFBIG' in scope
116 |
117 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:118:30: error: cannot find 'ENOSPC' in scope
116 |
117 | @_alwaysEmitIntoClient
118 | internal var _ENOSPC: CInt { ENOSPC }
| `- error: cannot find 'ENOSPC' in scope
119 |
120 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:121:30: error: cannot find 'ESPIPE' in scope
119 |
120 | @_alwaysEmitIntoClient
121 | internal var _ESPIPE: CInt { ESPIPE }
| `- error: cannot find 'ESPIPE' in scope
122 |
123 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:124:29: error: cannot find 'EROFS' in scope
122 |
123 | @_alwaysEmitIntoClient
124 | internal var _EROFS: CInt { EROFS }
| `- error: cannot find 'EROFS' in scope
125 |
126 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:127:30: error: cannot find 'EMLINK' in scope
125 |
126 | @_alwaysEmitIntoClient
127 | internal var _EMLINK: CInt { EMLINK }
| `- error: cannot find 'EMLINK' in scope
128 |
129 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:130:29: error: cannot find 'EPIPE' in scope
128 |
129 | @_alwaysEmitIntoClient
130 | internal var _EPIPE: CInt { EPIPE }
| `- error: cannot find 'EPIPE' in scope
131 |
132 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:133:28: error: cannot find 'EDOM' in scope
131 |
132 | @_alwaysEmitIntoClient
133 | internal var _EDOM: CInt { EDOM }
| `- error: cannot find 'EDOM' in scope
134 |
135 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:136:30: error: cannot find 'ERANGE' in scope
134 |
135 | @_alwaysEmitIntoClient
136 | internal var _ERANGE: CInt { ERANGE }
| `- error: cannot find 'ERANGE' in scope
137 |
138 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:139:30: error: cannot find 'EAGAIN' in scope
137 |
138 | @_alwaysEmitIntoClient
139 | internal var _EAGAIN: CInt { EAGAIN }
| `- error: cannot find 'EAGAIN' in scope
140 |
141 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:142:35: error: cannot find 'EWOULDBLOCK' in scope
140 |
141 | @_alwaysEmitIntoClient
142 | internal var _EWOULDBLOCK: CInt { EWOULDBLOCK }
| `- error: cannot find 'EWOULDBLOCK' in scope
143 |
144 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:145:35: error: cannot find 'EINPROGRESS' in scope
143 |
144 | @_alwaysEmitIntoClient
145 | internal var _EINPROGRESS: CInt { EINPROGRESS }
| `- error: cannot find 'EINPROGRESS' in scope
146 |
147 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:148:32: error: cannot find 'EALREADY' in scope
146 |
147 | @_alwaysEmitIntoClient
148 | internal var _EALREADY: CInt { EALREADY }
| `- error: cannot find 'EALREADY' in scope
149 |
150 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:151:32: error: cannot find 'ENOTSOCK' in scope
149 |
150 | @_alwaysEmitIntoClient
151 | internal var _ENOTSOCK: CInt { ENOTSOCK }
| `- error: cannot find 'ENOTSOCK' in scope
152 |
153 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:154:36: error: cannot find 'EDESTADDRREQ' in scope
152 |
153 | @_alwaysEmitIntoClient
154 | internal var _EDESTADDRREQ: CInt { EDESTADDRREQ }
| `- error: cannot find 'EDESTADDRREQ' in scope
155 |
156 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:157:32: error: cannot find 'EMSGSIZE' in scope
155 |
156 | @_alwaysEmitIntoClient
157 | internal var _EMSGSIZE: CInt { EMSGSIZE }
| `- error: cannot find 'EMSGSIZE' in scope
158 |
159 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:160:34: error: cannot find 'EPROTOTYPE' in scope
158 |
159 | @_alwaysEmitIntoClient
160 | internal var _EPROTOTYPE: CInt { EPROTOTYPE }
| `- error: cannot find 'EPROTOTYPE' in scope
161 |
162 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:163:35: error: cannot find 'ENOPROTOOPT' in scope
161 |
162 | @_alwaysEmitIntoClient
163 | internal var _ENOPROTOOPT: CInt { ENOPROTOOPT }
| `- error: cannot find 'ENOPROTOOPT' in scope
164 |
165 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:166:39: error: cannot find 'EPROTONOSUPPORT' in scope
164 |
165 | @_alwaysEmitIntoClient
166 | internal var _EPROTONOSUPPORT: CInt { EPROTONOSUPPORT }
| `- error: cannot find 'EPROTONOSUPPORT' in scope
167 |
168 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:173:10: error: cannot find 'ESOCKTNOSUPPORT' in scope
171 | return WSAESOCKTNOSUPPORT
172 | #else
173 | return ESOCKTNOSUPPORT
| `- error: cannot find 'ESOCKTNOSUPPORT' in scope
174 | #endif
175 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:182:10: error: cannot find 'ENOTSUP' in scope
180 | return WSAEOPNOTSUPP
181 | #else
182 | return ENOTSUP
| `- error: cannot find 'ENOTSUP' in scope
183 | #endif
184 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:191:10: error: cannot find 'EPFNOSUPPORT' in scope
189 | return WSAEPFNOSUPPORT
190 | #else
191 | return EPFNOSUPPORT
| `- error: cannot find 'EPFNOSUPPORT' in scope
192 | #endif
193 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:196:36: error: cannot find 'EAFNOSUPPORT' in scope
194 |
195 | @_alwaysEmitIntoClient
196 | internal var _EAFNOSUPPORT: CInt { EAFNOSUPPORT }
| `- error: cannot find 'EAFNOSUPPORT' in scope
197 |
198 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:199:34: error: cannot find 'EADDRINUSE' in scope
197 |
198 | @_alwaysEmitIntoClient
199 | internal var _EADDRINUSE: CInt { EADDRINUSE }
| `- error: cannot find 'EADDRINUSE' in scope
200 |
201 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:202:37: error: cannot find 'EADDRNOTAVAIL' in scope
200 |
201 | @_alwaysEmitIntoClient
202 | internal var _EADDRNOTAVAIL: CInt { EADDRNOTAVAIL }
| `- error: cannot find 'EADDRNOTAVAIL' in scope
203 |
204 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:205:32: error: cannot find 'ENETDOWN' in scope
203 |
204 | @_alwaysEmitIntoClient
205 | internal var _ENETDOWN: CInt { ENETDOWN }
| `- error: cannot find 'ENETDOWN' in scope
206 |
207 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:208:35: error: cannot find 'ENETUNREACH' in scope
206 |
207 | @_alwaysEmitIntoClient
208 | internal var _ENETUNREACH: CInt { ENETUNREACH }
| `- error: cannot find 'ENETUNREACH' in scope
209 |
210 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:211:33: error: cannot find 'ENETRESET' in scope
209 |
210 | @_alwaysEmitIntoClient
211 | internal var _ENETRESET: CInt { ENETRESET }
| `- error: cannot find 'ENETRESET' in scope
212 |
213 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:214:36: error: cannot find 'ECONNABORTED' in scope
212 |
213 | @_alwaysEmitIntoClient
214 | internal var _ECONNABORTED: CInt { ECONNABORTED }
| `- error: cannot find 'ECONNABORTED' in scope
215 |
216 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:217:34: error: cannot find 'ECONNRESET' in scope
215 |
216 | @_alwaysEmitIntoClient
217 | internal var _ECONNRESET: CInt { ECONNRESET }
| `- error: cannot find 'ECONNRESET' in scope
218 |
219 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:220:31: error: cannot find 'ENOBUFS' in scope
218 |
219 | @_alwaysEmitIntoClient
220 | internal var _ENOBUFS: CInt { ENOBUFS }
| `- error: cannot find 'ENOBUFS' in scope
221 |
222 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:223:31: error: cannot find 'EISCONN' in scope
221 |
222 | @_alwaysEmitIntoClient
223 | internal var _EISCONN: CInt { EISCONN }
| `- error: cannot find 'EISCONN' in scope
224 |
225 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:226:32: error: cannot find 'ENOTCONN' in scope
224 |
225 | @_alwaysEmitIntoClient
226 | internal var _ENOTCONN: CInt { ENOTCONN }
| `- error: cannot find 'ENOTCONN' in scope
227 |
228 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:233:10: error: cannot find 'ESHUTDOWN' in scope
231 | return WSAESHUTDOWN
232 | #else
233 | return ESHUTDOWN
| `- error: cannot find 'ESHUTDOWN' in scope
234 | #endif
235 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:242:10: error: cannot find 'ETOOMANYREFS' in scope
240 | return WSAETOOMANYREFS
241 | #else
242 | return ETOOMANYREFS
| `- error: cannot find 'ETOOMANYREFS' in scope
243 | #endif
244 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:247:33: error: cannot find 'ETIMEDOUT' in scope
245 |
246 | @_alwaysEmitIntoClient
247 | internal var _ETIMEDOUT: CInt { ETIMEDOUT }
| `- error: cannot find 'ETIMEDOUT' in scope
248 |
249 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:250:36: error: cannot find 'ECONNREFUSED' in scope
248 |
249 | @_alwaysEmitIntoClient
250 | internal var _ECONNREFUSED: CInt { ECONNREFUSED }
| `- error: cannot find 'ECONNREFUSED' in scope
251 |
252 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:253:29: error: cannot find 'ELOOP' in scope
251 |
252 | @_alwaysEmitIntoClient
253 | internal var _ELOOP: CInt { ELOOP }
| `- error: cannot find 'ELOOP' in scope
254 |
255 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:256:36: error: cannot find 'ENAMETOOLONG' in scope
254 |
255 | @_alwaysEmitIntoClient
256 | internal var _ENAMETOOLONG: CInt { ENAMETOOLONG }
| `- error: cannot find 'ENAMETOOLONG' in scope
257 |
258 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:263:10: error: cannot find 'EHOSTDOWN' in scope
261 | return WSAEHOSTDOWN
262 | #else
263 | return EHOSTDOWN
| `- error: cannot find 'EHOSTDOWN' in scope
264 | #endif
265 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:268:36: error: cannot find 'EHOSTUNREACH' in scope
266 |
267 | @_alwaysEmitIntoClient
268 | internal var _EHOSTUNREACH: CInt { EHOSTUNREACH }
| `- error: cannot find 'EHOSTUNREACH' in scope
269 |
270 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:271:33: error: cannot find 'ENOTEMPTY' in scope
269 |
270 | @_alwaysEmitIntoClient
271 | internal var _ENOTEMPTY: CInt { ENOTEMPTY }
| `- error: cannot find 'ENOTEMPTY' in scope
272 |
273 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:283:10: error: cannot find 'EUSERS' in scope
281 | return WSAEUSERS
282 | #else
283 | return EUSERS
| `- error: cannot find 'EUSERS' in scope
284 | #endif
285 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:292:10: error: cannot find 'EDQUOT' in scope
290 | return WSAEDQUOT
291 | #else
292 | return EDQUOT
| `- error: cannot find 'EDQUOT' in scope
293 | #endif
294 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:301:10: error: cannot find 'ESTALE' in scope
299 | return WSAESTALE
300 | #else
301 | return ESTALE
| `- error: cannot find 'ESTALE' in scope
302 | #endif
303 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:310:10: error: cannot find 'EREMOTE' in scope
308 | return WSAEREMOTE
309 | #else
310 | return EREMOTE
| `- error: cannot find 'EREMOTE' in scope
311 | #endif
312 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:332:30: error: cannot find 'ENOLCK' in scope
330 |
331 | @_alwaysEmitIntoClient
332 | internal var _ENOLCK: CInt { ENOLCK }
| `- error: cannot find 'ENOLCK' in scope
333 |
334 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:335:30: error: cannot find 'ENOSYS' in scope
333 |
334 | @_alwaysEmitIntoClient
335 | internal var _ENOSYS: CInt { ENOSYS }
| `- error: cannot find 'ENOSYS' in scope
336 |
337 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:356:33: error: cannot find 'EOVERFLOW' in scope
354 | #if !os(Windows)
355 | @_alwaysEmitIntoClient
356 | internal var _EOVERFLOW: CInt { EOVERFLOW }
| `- error: cannot find 'EOVERFLOW' in scope
357 | #endif
358 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:374:33: error: cannot find 'ECANCELED' in scope
372 |
373 | @_alwaysEmitIntoClient
374 | internal var _ECANCELED: CInt { ECANCELED }
| `- error: cannot find 'ECANCELED' in scope
375 |
376 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:378:29: error: cannot find 'EIDRM' in scope
376 | #if !os(Windows)
377 | @_alwaysEmitIntoClient
378 | internal var _EIDRM: CInt { EIDRM }
| `- error: cannot find 'EIDRM' in scope
379 |
380 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:381:30: error: cannot find 'ENOMSG' in scope
379 |
380 | @_alwaysEmitIntoClient
381 | internal var _ENOMSG: CInt { ENOMSG }
| `- error: cannot find 'ENOMSG' in scope
382 | #endif
383 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:385:30: error: cannot find 'EILSEQ' in scope
383 |
384 | @_alwaysEmitIntoClient
385 | internal var _EILSEQ: CInt { EILSEQ }
| `- error: cannot find 'EILSEQ' in scope
386 |
387 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:394:31: error: cannot find 'EBADMSG' in scope
392 | #if !os(Windows)
393 | @_alwaysEmitIntoClient
394 | internal var _EBADMSG: CInt { EBADMSG }
| `- error: cannot find 'EBADMSG' in scope
395 |
396 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:397:33: error: cannot find 'EMULTIHOP' in scope
395 |
396 | @_alwaysEmitIntoClient
397 | internal var _EMULTIHOP: CInt { EMULTIHOP }
| `- error: cannot find 'EMULTIHOP' in scope
398 |
399 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:400:31: error: cannot find 'ENODATA' in scope
398 |
399 | @_alwaysEmitIntoClient
400 | internal var _ENODATA: CInt { ENODATA }
| `- error: cannot find 'ENODATA' in scope
401 |
402 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:403:31: error: cannot find 'ENOLINK' in scope
401 |
402 | @_alwaysEmitIntoClient
403 | internal var _ENOLINK: CInt { ENOLINK }
| `- error: cannot find 'ENOLINK' in scope
404 |
405 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:406:29: error: cannot find 'ENOSR' in scope
404 |
405 | @_alwaysEmitIntoClient
406 | internal var _ENOSR: CInt { ENOSR }
| `- error: cannot find 'ENOSR' in scope
407 |
408 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:409:30: error: cannot find 'ENOSTR' in scope
407 |
408 | @_alwaysEmitIntoClient
409 | internal var _ENOSTR: CInt { ENOSTR }
| `- error: cannot find 'ENOSTR' in scope
410 |
411 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:412:30: error: cannot find 'EPROTO' in scope
410 |
411 | @_alwaysEmitIntoClient
412 | internal var _EPROTO: CInt { EPROTO }
| `- error: cannot find 'EPROTO' in scope
413 |
414 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:415:29: error: cannot find 'ETIME' in scope
413 |
414 | @_alwaysEmitIntoClient
415 | internal var _ETIME: CInt { ETIME }
| `- error: cannot find 'ETIME' in scope
416 | #endif
417 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:419:34: error: cannot find 'EOPNOTSUPP' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _EOPNOTSUPP: CInt { EOPNOTSUPP }
| `- error: cannot find 'EOPNOTSUPP' in scope
420 |
421 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:428:39: error: cannot find 'ENOTRECOVERABLE' in scope
426 | #if !os(Windows)
427 | @_alwaysEmitIntoClient
428 | internal var _ENOTRECOVERABLE: CInt { ENOTRECOVERABLE }
| `- error: cannot find 'ENOTRECOVERABLE' in scope
429 |
430 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:431:34: error: cannot find 'EOWNERDEAD' in scope
429 |
430 | @_alwaysEmitIntoClient
431 | internal var _EOWNERDEAD: CInt { EOWNERDEAD }
| `- error: cannot find 'EOWNERDEAD' in scope
432 | #endif
433 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:445:32: error: cannot find 'O_RDONLY' in scope
443 |
444 | @_alwaysEmitIntoClient
445 | internal var _O_RDONLY: CInt { O_RDONLY }
| `- error: cannot find 'O_RDONLY' in scope
446 |
447 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:448:32: error: cannot find 'O_WRONLY' in scope
446 |
447 | @_alwaysEmitIntoClient
448 | internal var _O_WRONLY: CInt { O_WRONLY }
| `- error: cannot find 'O_WRONLY' in scope
449 |
450 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:451:30: error: cannot find 'O_RDWR' in scope
449 |
450 | @_alwaysEmitIntoClient
451 | internal var _O_RDWR: CInt { O_RDWR }
| `- error: cannot find 'O_RDWR' in scope
452 |
453 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:456:33: error: cannot find 'O_ACCMODE' in scope
454 | // TODO: API?
455 | @_alwaysEmitIntoClient
456 | internal var _O_ACCMODE: CInt { O_ACCMODE }
| `- error: cannot find 'O_ACCMODE' in scope
457 |
458 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:459:34: error: cannot find 'O_NONBLOCK' in scope
457 |
458 | @_alwaysEmitIntoClient
459 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
460 | #endif
461 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:463:32: error: cannot find 'O_APPEND' in scope
461 |
462 | @_alwaysEmitIntoClient
463 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
464 |
465 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:476:31: error: cannot find 'O_ASYNC' in scope
474 | // TODO: API?
475 | @_alwaysEmitIntoClient
476 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
477 |
478 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:479:34: error: cannot find 'O_NOFOLLOW' in scope
477 |
478 | @_alwaysEmitIntoClient
479 | internal var _O_NOFOLLOW: CInt { O_NOFOLLOW }
| `- error: cannot find 'O_NOFOLLOW' in scope
480 | #endif
481 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:483:31: error: cannot find 'O_CREAT' in scope
481 |
482 | @_alwaysEmitIntoClient
483 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
484 |
485 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:486:31: error: cannot find 'O_TRUNC' in scope
484 |
485 | @_alwaysEmitIntoClient
486 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
487 |
488 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:489:30: error: cannot find 'O_EXCL' in scope
487 |
488 | @_alwaysEmitIntoClient
489 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
490 |
491 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:499:32: error: cannot find 'O_NOCTTY' in scope
497 | // TODO: API?
498 | @_alwaysEmitIntoClient
499 | internal var _O_NOCTTY: CInt { O_NOCTTY }
| `- error: cannot find 'O_NOCTTY' in scope
500 |
501 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:502:35: error: cannot find 'O_DIRECTORY' in scope
500 |
501 | @_alwaysEmitIntoClient
502 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
503 | #endif
504 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:512:33: error: cannot find 'O_CLOEXEC' in scope
510 | #if !os(Windows)
511 | @_alwaysEmitIntoClient
512 | internal var _O_CLOEXEC: CInt { O_CLOEXEC }
| `- error: cannot find 'O_CLOEXEC' in scope
513 | #endif
514 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:516:32: error: cannot find 'SEEK_SET' in scope
514 |
515 | @_alwaysEmitIntoClient
516 | internal var _SEEK_SET: CInt { SEEK_SET }
| `- error: cannot find 'SEEK_SET' in scope
517 |
518 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:519:32: error: cannot find 'SEEK_CUR' in scope
517 |
518 | @_alwaysEmitIntoClient
519 | internal var _SEEK_CUR: CInt { SEEK_CUR }
| `- error: cannot find 'SEEK_CUR' in scope
520 |
521 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:522:32: error: cannot find 'SEEK_END' in scope
520 |
521 | @_alwaysEmitIntoClient
522 | internal var _SEEK_END: CInt { SEEK_END }
| `- error: cannot find 'SEEK_END' in scope
523 |
524 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:24:8: error: Unsupported Platform
22 | import ucrt
23 | #else
24 | #error("Unsupported Platform")
| `- error: Unsupported Platform
25 | #endif
26 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:27:29: error: cannot find type 'off_t' in scope
25 | #endif
26 |
27 | internal typealias _COffT = off_t
| `- error: cannot find type 'off_t' in scope
28 |
29 | // MARK: syscalls and variables
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:132:38: error: cannot find type 'pthread_key_t' in scope
130 | internal typealias _PlatformTLSKey = DWORD
131 | #else
132 | internal typealias _PlatformTLSKey = pthread_key_t
| `- error: cannot find type 'pthread_key_t' in scope
133 | #endif
134 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:50:9: error: cannot find 'Glibc' in scope
48 | #else
49 | internal var system_errno: CInt {
50 | get { Glibc.errno }
| `- error: cannot find 'Glibc' in scope
51 | set { Glibc.errno = newValue }
52 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:51:9: error: cannot find 'Glibc' in scope
49 | internal var system_errno: CInt {
50 | get { Glibc.errno }
51 | set { Glibc.errno = newValue }
| `- error: cannot find 'Glibc' in scope
52 | }
53 | #endif
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:60:3: error: cannot find 'strerror' in scope
58 |
59 | internal func system_strerror(_ __errnum: Int32) -> UnsafeMutablePointer<Int8>! {
60 | strerror(__errnum)
| `- error: cannot find 'strerror' in scope
61 | }
62 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:64:3: error: cannot find 'strlen' in scope
62 |
63 | internal func system_strlen(_ s: UnsafePointer<Int8>) -> Int {
64 | strlen(s)
| `- error: cannot find 'strlen' in scope
65 | }
66 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:77:10: error: cannot find 'strlen' in scope
75 | return wcslen(s)
76 | #else
77 | return strlen(s)
| `- error: cannot find 'strlen' in scope
78 | #endif
79 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:143:13: error: cannot find 'pthread_key_t' in scope
141 | return raw
142 | #else
143 | var raw = pthread_key_t()
| `- error: cannot find 'pthread_key_t' in scope
144 | guard 0 == pthread_key_create(&raw, nil) else {
145 | fatalError("Unable to create key")
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:144:14: error: cannot find 'pthread_key_create' in scope
142 | #else
143 | var raw = pthread_key_t()
144 | guard 0 == pthread_key_create(&raw, nil) else {
| `- error: cannot find 'pthread_key_create' in scope
145 | fatalError("Unable to create key")
146 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:144:39: error: 'nil' requires a contextual type
142 | #else
143 | var raw = pthread_key_t()
144 | guard 0 == pthread_key_create(&raw, nil) else {
| `- error: 'nil' requires a contextual type
145 | fatalError("Unable to create key")
146 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:156:14: error: cannot find 'pthread_setspecific' in scope
154 | }
155 | #else
156 | guard 0 == pthread_setspecific(key, p) else {
| `- error: cannot find 'pthread_setspecific' in scope
157 | fatalError("Unable to set TLS")
158 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:165:10: error: cannot find 'pthread_getspecific' in scope
163 | return FlsGetValue(key)
164 | #else
165 | return pthread_getspecific(key)
| `- error: cannot find 'pthread_getspecific' in scope
166 | #endif
167 | }
[30/49] Compiling SystemPackage Constants.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:35:27: error: cannot find type 'mode_t' in scope
33 | public typealias Mode = CInt
34 | #else
35 | public typealias Mode = mode_t
| `- error: cannot find type 'mode_t' in scope
36 | #endif
37 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:26:8: error: Unsupported Platform
24 | import ucrt
25 | #else
26 | #error("Unsupported Platform")
| `- error: Unsupported Platform
27 | #endif
28 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:23:8: error: Unsupported Platform
21 | import ucrt
22 | #else
23 | #error("Unsupported Platform")
| `- error: Unsupported Platform
24 | #endif
25 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:33:29: error: cannot find 'EPERM' in scope
31 |
32 | @_alwaysEmitIntoClient
33 | internal var _EPERM: CInt { EPERM }
| `- error: cannot find 'EPERM' in scope
34 |
35 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:36:30: error: cannot find 'ENOENT' in scope
34 |
35 | @_alwaysEmitIntoClient
36 | internal var _ENOENT: CInt { ENOENT }
| `- error: cannot find 'ENOENT' in scope
37 |
38 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:39:29: error: cannot find 'ESRCH' in scope
37 |
38 | @_alwaysEmitIntoClient
39 | internal var _ESRCH: CInt { ESRCH }
| `- error: cannot find 'ESRCH' in scope
40 |
41 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:42:29: error: cannot find 'EINTR' in scope
40 |
41 | @_alwaysEmitIntoClient
42 | internal var _EINTR: CInt { EINTR }
| `- error: cannot find 'EINTR' in scope
43 |
44 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:45:27: error: cannot find 'EIO' in scope
43 |
44 | @_alwaysEmitIntoClient
45 | internal var _EIO: CInt { EIO }
| `- error: cannot find 'EIO' in scope
46 |
47 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:48:29: error: cannot find 'ENXIO' in scope
46 |
47 | @_alwaysEmitIntoClient
48 | internal var _ENXIO: CInt { ENXIO }
| `- error: cannot find 'ENXIO' in scope
49 |
50 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:51:29: error: cannot find 'E2BIG' in scope
49 |
50 | @_alwaysEmitIntoClient
51 | internal var _E2BIG: CInt { E2BIG }
| `- error: cannot find 'E2BIG' in scope
52 |
53 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:54:31: error: cannot find 'ENOEXEC' in scope
52 |
53 | @_alwaysEmitIntoClient
54 | internal var _ENOEXEC: CInt { ENOEXEC }
| `- error: cannot find 'ENOEXEC' in scope
55 |
56 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:57:29: error: cannot find 'EBADF' in scope
55 |
56 | @_alwaysEmitIntoClient
57 | internal var _EBADF: CInt { EBADF }
| `- error: cannot find 'EBADF' in scope
58 |
59 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:60:30: error: cannot find 'ECHILD' in scope
58 |
59 | @_alwaysEmitIntoClient
60 | internal var _ECHILD: CInt { ECHILD }
| `- error: cannot find 'ECHILD' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:63:31: error: cannot find 'EDEADLK' in scope
61 |
62 | @_alwaysEmitIntoClient
63 | internal var _EDEADLK: CInt { EDEADLK }
| `- error: cannot find 'EDEADLK' in scope
64 |
65 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:66:30: error: cannot find 'ENOMEM' in scope
64 |
65 | @_alwaysEmitIntoClient
66 | internal var _ENOMEM: CInt { ENOMEM }
| `- error: cannot find 'ENOMEM' in scope
67 |
68 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:69:30: error: cannot find 'EACCES' in scope
67 |
68 | @_alwaysEmitIntoClient
69 | internal var _EACCES: CInt { EACCES }
| `- error: cannot find 'EACCES' in scope
70 |
71 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:72:30: error: cannot find 'EFAULT' in scope
70 |
71 | @_alwaysEmitIntoClient
72 | internal var _EFAULT: CInt { EFAULT }
| `- error: cannot find 'EFAULT' in scope
73 |
74 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:76:31: error: cannot find 'ENOTBLK' in scope
74 | #if !os(Windows)
75 | @_alwaysEmitIntoClient
76 | internal var _ENOTBLK: CInt { ENOTBLK }
| `- error: cannot find 'ENOTBLK' in scope
77 | #endif
78 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:80:29: error: cannot find 'EBUSY' in scope
78 |
79 | @_alwaysEmitIntoClient
80 | internal var _EBUSY: CInt { EBUSY }
| `- error: cannot find 'EBUSY' in scope
81 |
82 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:83:30: error: cannot find 'EEXIST' in scope
81 |
82 | @_alwaysEmitIntoClient
83 | internal var _EEXIST: CInt { EEXIST }
| `- error: cannot find 'EEXIST' in scope
84 |
85 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:86:29: error: cannot find 'EXDEV' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _EXDEV: CInt { EXDEV }
| `- error: cannot find 'EXDEV' in scope
87 |
88 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:89:30: error: cannot find 'ENODEV' in scope
87 |
88 | @_alwaysEmitIntoClient
89 | internal var _ENODEV: CInt { ENODEV }
| `- error: cannot find 'ENODEV' in scope
90 |
91 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:92:31: error: cannot find 'ENOTDIR' in scope
90 |
91 | @_alwaysEmitIntoClient
92 | internal var _ENOTDIR: CInt { ENOTDIR }
| `- error: cannot find 'ENOTDIR' in scope
93 |
94 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:95:30: error: cannot find 'EISDIR' in scope
93 |
94 | @_alwaysEmitIntoClient
95 | internal var _EISDIR: CInt { EISDIR }
| `- error: cannot find 'EISDIR' in scope
96 |
97 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:98:30: error: cannot find 'EINVAL' in scope
96 |
97 | @_alwaysEmitIntoClient
98 | internal var _EINVAL: CInt { EINVAL }
| `- error: cannot find 'EINVAL' in scope
99 |
100 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:101:30: error: cannot find 'ENFILE' in scope
99 |
100 | @_alwaysEmitIntoClient
101 | internal var _ENFILE: CInt { ENFILE }
| `- error: cannot find 'ENFILE' in scope
102 |
103 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:104:30: error: cannot find 'EMFILE' in scope
102 |
103 | @_alwaysEmitIntoClient
104 | internal var _EMFILE: CInt { EMFILE }
| `- error: cannot find 'EMFILE' in scope
105 |
106 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:108:30: error: cannot find 'ENOTTY' in scope
106 | #if !os(Windows)
107 | @_alwaysEmitIntoClient
108 | internal var _ENOTTY: CInt { ENOTTY }
| `- error: cannot find 'ENOTTY' in scope
109 |
110 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:111:31: error: cannot find 'ETXTBSY' in scope
109 |
110 | @_alwaysEmitIntoClient
111 | internal var _ETXTBSY: CInt { ETXTBSY }
| `- error: cannot find 'ETXTBSY' in scope
112 | #endif
113 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:115:29: error: cannot find 'EFBIG' in scope
113 |
114 | @_alwaysEmitIntoClient
115 | internal var _EFBIG: CInt { EFBIG }
| `- error: cannot find 'EFBIG' in scope
116 |
117 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:118:30: error: cannot find 'ENOSPC' in scope
116 |
117 | @_alwaysEmitIntoClient
118 | internal var _ENOSPC: CInt { ENOSPC }
| `- error: cannot find 'ENOSPC' in scope
119 |
120 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:121:30: error: cannot find 'ESPIPE' in scope
119 |
120 | @_alwaysEmitIntoClient
121 | internal var _ESPIPE: CInt { ESPIPE }
| `- error: cannot find 'ESPIPE' in scope
122 |
123 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:124:29: error: cannot find 'EROFS' in scope
122 |
123 | @_alwaysEmitIntoClient
124 | internal var _EROFS: CInt { EROFS }
| `- error: cannot find 'EROFS' in scope
125 |
126 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:127:30: error: cannot find 'EMLINK' in scope
125 |
126 | @_alwaysEmitIntoClient
127 | internal var _EMLINK: CInt { EMLINK }
| `- error: cannot find 'EMLINK' in scope
128 |
129 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:130:29: error: cannot find 'EPIPE' in scope
128 |
129 | @_alwaysEmitIntoClient
130 | internal var _EPIPE: CInt { EPIPE }
| `- error: cannot find 'EPIPE' in scope
131 |
132 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:133:28: error: cannot find 'EDOM' in scope
131 |
132 | @_alwaysEmitIntoClient
133 | internal var _EDOM: CInt { EDOM }
| `- error: cannot find 'EDOM' in scope
134 |
135 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:136:30: error: cannot find 'ERANGE' in scope
134 |
135 | @_alwaysEmitIntoClient
136 | internal var _ERANGE: CInt { ERANGE }
| `- error: cannot find 'ERANGE' in scope
137 |
138 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:139:30: error: cannot find 'EAGAIN' in scope
137 |
138 | @_alwaysEmitIntoClient
139 | internal var _EAGAIN: CInt { EAGAIN }
| `- error: cannot find 'EAGAIN' in scope
140 |
141 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:142:35: error: cannot find 'EWOULDBLOCK' in scope
140 |
141 | @_alwaysEmitIntoClient
142 | internal var _EWOULDBLOCK: CInt { EWOULDBLOCK }
| `- error: cannot find 'EWOULDBLOCK' in scope
143 |
144 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:145:35: error: cannot find 'EINPROGRESS' in scope
143 |
144 | @_alwaysEmitIntoClient
145 | internal var _EINPROGRESS: CInt { EINPROGRESS }
| `- error: cannot find 'EINPROGRESS' in scope
146 |
147 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:148:32: error: cannot find 'EALREADY' in scope
146 |
147 | @_alwaysEmitIntoClient
148 | internal var _EALREADY: CInt { EALREADY }
| `- error: cannot find 'EALREADY' in scope
149 |
150 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:151:32: error: cannot find 'ENOTSOCK' in scope
149 |
150 | @_alwaysEmitIntoClient
151 | internal var _ENOTSOCK: CInt { ENOTSOCK }
| `- error: cannot find 'ENOTSOCK' in scope
152 |
153 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:154:36: error: cannot find 'EDESTADDRREQ' in scope
152 |
153 | @_alwaysEmitIntoClient
154 | internal var _EDESTADDRREQ: CInt { EDESTADDRREQ }
| `- error: cannot find 'EDESTADDRREQ' in scope
155 |
156 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:157:32: error: cannot find 'EMSGSIZE' in scope
155 |
156 | @_alwaysEmitIntoClient
157 | internal var _EMSGSIZE: CInt { EMSGSIZE }
| `- error: cannot find 'EMSGSIZE' in scope
158 |
159 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:160:34: error: cannot find 'EPROTOTYPE' in scope
158 |
159 | @_alwaysEmitIntoClient
160 | internal var _EPROTOTYPE: CInt { EPROTOTYPE }
| `- error: cannot find 'EPROTOTYPE' in scope
161 |
162 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:163:35: error: cannot find 'ENOPROTOOPT' in scope
161 |
162 | @_alwaysEmitIntoClient
163 | internal var _ENOPROTOOPT: CInt { ENOPROTOOPT }
| `- error: cannot find 'ENOPROTOOPT' in scope
164 |
165 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:166:39: error: cannot find 'EPROTONOSUPPORT' in scope
164 |
165 | @_alwaysEmitIntoClient
166 | internal var _EPROTONOSUPPORT: CInt { EPROTONOSUPPORT }
| `- error: cannot find 'EPROTONOSUPPORT' in scope
167 |
168 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:173:10: error: cannot find 'ESOCKTNOSUPPORT' in scope
171 | return WSAESOCKTNOSUPPORT
172 | #else
173 | return ESOCKTNOSUPPORT
| `- error: cannot find 'ESOCKTNOSUPPORT' in scope
174 | #endif
175 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:182:10: error: cannot find 'ENOTSUP' in scope
180 | return WSAEOPNOTSUPP
181 | #else
182 | return ENOTSUP
| `- error: cannot find 'ENOTSUP' in scope
183 | #endif
184 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:191:10: error: cannot find 'EPFNOSUPPORT' in scope
189 | return WSAEPFNOSUPPORT
190 | #else
191 | return EPFNOSUPPORT
| `- error: cannot find 'EPFNOSUPPORT' in scope
192 | #endif
193 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:196:36: error: cannot find 'EAFNOSUPPORT' in scope
194 |
195 | @_alwaysEmitIntoClient
196 | internal var _EAFNOSUPPORT: CInt { EAFNOSUPPORT }
| `- error: cannot find 'EAFNOSUPPORT' in scope
197 |
198 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:199:34: error: cannot find 'EADDRINUSE' in scope
197 |
198 | @_alwaysEmitIntoClient
199 | internal var _EADDRINUSE: CInt { EADDRINUSE }
| `- error: cannot find 'EADDRINUSE' in scope
200 |
201 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:202:37: error: cannot find 'EADDRNOTAVAIL' in scope
200 |
201 | @_alwaysEmitIntoClient
202 | internal var _EADDRNOTAVAIL: CInt { EADDRNOTAVAIL }
| `- error: cannot find 'EADDRNOTAVAIL' in scope
203 |
204 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:205:32: error: cannot find 'ENETDOWN' in scope
203 |
204 | @_alwaysEmitIntoClient
205 | internal var _ENETDOWN: CInt { ENETDOWN }
| `- error: cannot find 'ENETDOWN' in scope
206 |
207 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:208:35: error: cannot find 'ENETUNREACH' in scope
206 |
207 | @_alwaysEmitIntoClient
208 | internal var _ENETUNREACH: CInt { ENETUNREACH }
| `- error: cannot find 'ENETUNREACH' in scope
209 |
210 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:211:33: error: cannot find 'ENETRESET' in scope
209 |
210 | @_alwaysEmitIntoClient
211 | internal var _ENETRESET: CInt { ENETRESET }
| `- error: cannot find 'ENETRESET' in scope
212 |
213 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:214:36: error: cannot find 'ECONNABORTED' in scope
212 |
213 | @_alwaysEmitIntoClient
214 | internal var _ECONNABORTED: CInt { ECONNABORTED }
| `- error: cannot find 'ECONNABORTED' in scope
215 |
216 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:217:34: error: cannot find 'ECONNRESET' in scope
215 |
216 | @_alwaysEmitIntoClient
217 | internal var _ECONNRESET: CInt { ECONNRESET }
| `- error: cannot find 'ECONNRESET' in scope
218 |
219 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:220:31: error: cannot find 'ENOBUFS' in scope
218 |
219 | @_alwaysEmitIntoClient
220 | internal var _ENOBUFS: CInt { ENOBUFS }
| `- error: cannot find 'ENOBUFS' in scope
221 |
222 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:223:31: error: cannot find 'EISCONN' in scope
221 |
222 | @_alwaysEmitIntoClient
223 | internal var _EISCONN: CInt { EISCONN }
| `- error: cannot find 'EISCONN' in scope
224 |
225 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:226:32: error: cannot find 'ENOTCONN' in scope
224 |
225 | @_alwaysEmitIntoClient
226 | internal var _ENOTCONN: CInt { ENOTCONN }
| `- error: cannot find 'ENOTCONN' in scope
227 |
228 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:233:10: error: cannot find 'ESHUTDOWN' in scope
231 | return WSAESHUTDOWN
232 | #else
233 | return ESHUTDOWN
| `- error: cannot find 'ESHUTDOWN' in scope
234 | #endif
235 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:242:10: error: cannot find 'ETOOMANYREFS' in scope
240 | return WSAETOOMANYREFS
241 | #else
242 | return ETOOMANYREFS
| `- error: cannot find 'ETOOMANYREFS' in scope
243 | #endif
244 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:247:33: error: cannot find 'ETIMEDOUT' in scope
245 |
246 | @_alwaysEmitIntoClient
247 | internal var _ETIMEDOUT: CInt { ETIMEDOUT }
| `- error: cannot find 'ETIMEDOUT' in scope
248 |
249 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:250:36: error: cannot find 'ECONNREFUSED' in scope
248 |
249 | @_alwaysEmitIntoClient
250 | internal var _ECONNREFUSED: CInt { ECONNREFUSED }
| `- error: cannot find 'ECONNREFUSED' in scope
251 |
252 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:253:29: error: cannot find 'ELOOP' in scope
251 |
252 | @_alwaysEmitIntoClient
253 | internal var _ELOOP: CInt { ELOOP }
| `- error: cannot find 'ELOOP' in scope
254 |
255 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:256:36: error: cannot find 'ENAMETOOLONG' in scope
254 |
255 | @_alwaysEmitIntoClient
256 | internal var _ENAMETOOLONG: CInt { ENAMETOOLONG }
| `- error: cannot find 'ENAMETOOLONG' in scope
257 |
258 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:263:10: error: cannot find 'EHOSTDOWN' in scope
261 | return WSAEHOSTDOWN
262 | #else
263 | return EHOSTDOWN
| `- error: cannot find 'EHOSTDOWN' in scope
264 | #endif
265 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:268:36: error: cannot find 'EHOSTUNREACH' in scope
266 |
267 | @_alwaysEmitIntoClient
268 | internal var _EHOSTUNREACH: CInt { EHOSTUNREACH }
| `- error: cannot find 'EHOSTUNREACH' in scope
269 |
270 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:271:33: error: cannot find 'ENOTEMPTY' in scope
269 |
270 | @_alwaysEmitIntoClient
271 | internal var _ENOTEMPTY: CInt { ENOTEMPTY }
| `- error: cannot find 'ENOTEMPTY' in scope
272 |
273 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:283:10: error: cannot find 'EUSERS' in scope
281 | return WSAEUSERS
282 | #else
283 | return EUSERS
| `- error: cannot find 'EUSERS' in scope
284 | #endif
285 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:292:10: error: cannot find 'EDQUOT' in scope
290 | return WSAEDQUOT
291 | #else
292 | return EDQUOT
| `- error: cannot find 'EDQUOT' in scope
293 | #endif
294 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:301:10: error: cannot find 'ESTALE' in scope
299 | return WSAESTALE
300 | #else
301 | return ESTALE
| `- error: cannot find 'ESTALE' in scope
302 | #endif
303 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:310:10: error: cannot find 'EREMOTE' in scope
308 | return WSAEREMOTE
309 | #else
310 | return EREMOTE
| `- error: cannot find 'EREMOTE' in scope
311 | #endif
312 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:332:30: error: cannot find 'ENOLCK' in scope
330 |
331 | @_alwaysEmitIntoClient
332 | internal var _ENOLCK: CInt { ENOLCK }
| `- error: cannot find 'ENOLCK' in scope
333 |
334 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:335:30: error: cannot find 'ENOSYS' in scope
333 |
334 | @_alwaysEmitIntoClient
335 | internal var _ENOSYS: CInt { ENOSYS }
| `- error: cannot find 'ENOSYS' in scope
336 |
337 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:356:33: error: cannot find 'EOVERFLOW' in scope
354 | #if !os(Windows)
355 | @_alwaysEmitIntoClient
356 | internal var _EOVERFLOW: CInt { EOVERFLOW }
| `- error: cannot find 'EOVERFLOW' in scope
357 | #endif
358 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:374:33: error: cannot find 'ECANCELED' in scope
372 |
373 | @_alwaysEmitIntoClient
374 | internal var _ECANCELED: CInt { ECANCELED }
| `- error: cannot find 'ECANCELED' in scope
375 |
376 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:378:29: error: cannot find 'EIDRM' in scope
376 | #if !os(Windows)
377 | @_alwaysEmitIntoClient
378 | internal var _EIDRM: CInt { EIDRM }
| `- error: cannot find 'EIDRM' in scope
379 |
380 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:381:30: error: cannot find 'ENOMSG' in scope
379 |
380 | @_alwaysEmitIntoClient
381 | internal var _ENOMSG: CInt { ENOMSG }
| `- error: cannot find 'ENOMSG' in scope
382 | #endif
383 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:385:30: error: cannot find 'EILSEQ' in scope
383 |
384 | @_alwaysEmitIntoClient
385 | internal var _EILSEQ: CInt { EILSEQ }
| `- error: cannot find 'EILSEQ' in scope
386 |
387 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:394:31: error: cannot find 'EBADMSG' in scope
392 | #if !os(Windows)
393 | @_alwaysEmitIntoClient
394 | internal var _EBADMSG: CInt { EBADMSG }
| `- error: cannot find 'EBADMSG' in scope
395 |
396 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:397:33: error: cannot find 'EMULTIHOP' in scope
395 |
396 | @_alwaysEmitIntoClient
397 | internal var _EMULTIHOP: CInt { EMULTIHOP }
| `- error: cannot find 'EMULTIHOP' in scope
398 |
399 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:400:31: error: cannot find 'ENODATA' in scope
398 |
399 | @_alwaysEmitIntoClient
400 | internal var _ENODATA: CInt { ENODATA }
| `- error: cannot find 'ENODATA' in scope
401 |
402 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:403:31: error: cannot find 'ENOLINK' in scope
401 |
402 | @_alwaysEmitIntoClient
403 | internal var _ENOLINK: CInt { ENOLINK }
| `- error: cannot find 'ENOLINK' in scope
404 |
405 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:406:29: error: cannot find 'ENOSR' in scope
404 |
405 | @_alwaysEmitIntoClient
406 | internal var _ENOSR: CInt { ENOSR }
| `- error: cannot find 'ENOSR' in scope
407 |
408 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:409:30: error: cannot find 'ENOSTR' in scope
407 |
408 | @_alwaysEmitIntoClient
409 | internal var _ENOSTR: CInt { ENOSTR }
| `- error: cannot find 'ENOSTR' in scope
410 |
411 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:412:30: error: cannot find 'EPROTO' in scope
410 |
411 | @_alwaysEmitIntoClient
412 | internal var _EPROTO: CInt { EPROTO }
| `- error: cannot find 'EPROTO' in scope
413 |
414 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:415:29: error: cannot find 'ETIME' in scope
413 |
414 | @_alwaysEmitIntoClient
415 | internal var _ETIME: CInt { ETIME }
| `- error: cannot find 'ETIME' in scope
416 | #endif
417 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:419:34: error: cannot find 'EOPNOTSUPP' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _EOPNOTSUPP: CInt { EOPNOTSUPP }
| `- error: cannot find 'EOPNOTSUPP' in scope
420 |
421 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:428:39: error: cannot find 'ENOTRECOVERABLE' in scope
426 | #if !os(Windows)
427 | @_alwaysEmitIntoClient
428 | internal var _ENOTRECOVERABLE: CInt { ENOTRECOVERABLE }
| `- error: cannot find 'ENOTRECOVERABLE' in scope
429 |
430 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:431:34: error: cannot find 'EOWNERDEAD' in scope
429 |
430 | @_alwaysEmitIntoClient
431 | internal var _EOWNERDEAD: CInt { EOWNERDEAD }
| `- error: cannot find 'EOWNERDEAD' in scope
432 | #endif
433 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:445:32: error: cannot find 'O_RDONLY' in scope
443 |
444 | @_alwaysEmitIntoClient
445 | internal var _O_RDONLY: CInt { O_RDONLY }
| `- error: cannot find 'O_RDONLY' in scope
446 |
447 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:448:32: error: cannot find 'O_WRONLY' in scope
446 |
447 | @_alwaysEmitIntoClient
448 | internal var _O_WRONLY: CInt { O_WRONLY }
| `- error: cannot find 'O_WRONLY' in scope
449 |
450 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:451:30: error: cannot find 'O_RDWR' in scope
449 |
450 | @_alwaysEmitIntoClient
451 | internal var _O_RDWR: CInt { O_RDWR }
| `- error: cannot find 'O_RDWR' in scope
452 |
453 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:456:33: error: cannot find 'O_ACCMODE' in scope
454 | // TODO: API?
455 | @_alwaysEmitIntoClient
456 | internal var _O_ACCMODE: CInt { O_ACCMODE }
| `- error: cannot find 'O_ACCMODE' in scope
457 |
458 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:459:34: error: cannot find 'O_NONBLOCK' in scope
457 |
458 | @_alwaysEmitIntoClient
459 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
460 | #endif
461 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:463:32: error: cannot find 'O_APPEND' in scope
461 |
462 | @_alwaysEmitIntoClient
463 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
464 |
465 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:476:31: error: cannot find 'O_ASYNC' in scope
474 | // TODO: API?
475 | @_alwaysEmitIntoClient
476 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
477 |
478 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:479:34: error: cannot find 'O_NOFOLLOW' in scope
477 |
478 | @_alwaysEmitIntoClient
479 | internal var _O_NOFOLLOW: CInt { O_NOFOLLOW }
| `- error: cannot find 'O_NOFOLLOW' in scope
480 | #endif
481 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:483:31: error: cannot find 'O_CREAT' in scope
481 |
482 | @_alwaysEmitIntoClient
483 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
484 |
485 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:486:31: error: cannot find 'O_TRUNC' in scope
484 |
485 | @_alwaysEmitIntoClient
486 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
487 |
488 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:489:30: error: cannot find 'O_EXCL' in scope
487 |
488 | @_alwaysEmitIntoClient
489 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
490 |
491 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:499:32: error: cannot find 'O_NOCTTY' in scope
497 | // TODO: API?
498 | @_alwaysEmitIntoClient
499 | internal var _O_NOCTTY: CInt { O_NOCTTY }
| `- error: cannot find 'O_NOCTTY' in scope
500 |
501 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:502:35: error: cannot find 'O_DIRECTORY' in scope
500 |
501 | @_alwaysEmitIntoClient
502 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
503 | #endif
504 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:512:33: error: cannot find 'O_CLOEXEC' in scope
510 | #if !os(Windows)
511 | @_alwaysEmitIntoClient
512 | internal var _O_CLOEXEC: CInt { O_CLOEXEC }
| `- error: cannot find 'O_CLOEXEC' in scope
513 | #endif
514 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:516:32: error: cannot find 'SEEK_SET' in scope
514 |
515 | @_alwaysEmitIntoClient
516 | internal var _SEEK_SET: CInt { SEEK_SET }
| `- error: cannot find 'SEEK_SET' in scope
517 |
518 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:519:32: error: cannot find 'SEEK_CUR' in scope
517 |
518 | @_alwaysEmitIntoClient
519 | internal var _SEEK_CUR: CInt { SEEK_CUR }
| `- error: cannot find 'SEEK_CUR' in scope
520 |
521 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:522:32: error: cannot find 'SEEK_END' in scope
520 |
521 | @_alwaysEmitIntoClient
522 | internal var _SEEK_END: CInt { SEEK_END }
| `- error: cannot find 'SEEK_END' in scope
523 |
524 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:24:8: error: Unsupported Platform
22 | import ucrt
23 | #else
24 | #error("Unsupported Platform")
| `- error: Unsupported Platform
25 | #endif
26 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:27:29: error: cannot find type 'off_t' in scope
25 | #endif
26 |
27 | internal typealias _COffT = off_t
| `- error: cannot find type 'off_t' in scope
28 |
29 | // MARK: syscalls and variables
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:132:38: error: cannot find type 'pthread_key_t' in scope
130 | internal typealias _PlatformTLSKey = DWORD
131 | #else
132 | internal typealias _PlatformTLSKey = pthread_key_t
| `- error: cannot find type 'pthread_key_t' in scope
133 | #endif
134 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:50:9: error: cannot find 'Glibc' in scope
48 | #else
49 | internal var system_errno: CInt {
50 | get { Glibc.errno }
| `- error: cannot find 'Glibc' in scope
51 | set { Glibc.errno = newValue }
52 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:51:9: error: cannot find 'Glibc' in scope
49 | internal var system_errno: CInt {
50 | get { Glibc.errno }
51 | set { Glibc.errno = newValue }
| `- error: cannot find 'Glibc' in scope
52 | }
53 | #endif
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:60:3: error: cannot find 'strerror' in scope
58 |
59 | internal func system_strerror(_ __errnum: Int32) -> UnsafeMutablePointer<Int8>! {
60 | strerror(__errnum)
| `- error: cannot find 'strerror' in scope
61 | }
62 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:64:3: error: cannot find 'strlen' in scope
62 |
63 | internal func system_strlen(_ s: UnsafePointer<Int8>) -> Int {
64 | strlen(s)
| `- error: cannot find 'strlen' in scope
65 | }
66 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:77:10: error: cannot find 'strlen' in scope
75 | return wcslen(s)
76 | #else
77 | return strlen(s)
| `- error: cannot find 'strlen' in scope
78 | #endif
79 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:143:13: error: cannot find 'pthread_key_t' in scope
141 | return raw
142 | #else
143 | var raw = pthread_key_t()
| `- error: cannot find 'pthread_key_t' in scope
144 | guard 0 == pthread_key_create(&raw, nil) else {
145 | fatalError("Unable to create key")
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:144:14: error: cannot find 'pthread_key_create' in scope
142 | #else
143 | var raw = pthread_key_t()
144 | guard 0 == pthread_key_create(&raw, nil) else {
| `- error: cannot find 'pthread_key_create' in scope
145 | fatalError("Unable to create key")
146 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:144:39: error: 'nil' requires a contextual type
142 | #else
143 | var raw = pthread_key_t()
144 | guard 0 == pthread_key_create(&raw, nil) else {
| `- error: 'nil' requires a contextual type
145 | fatalError("Unable to create key")
146 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:156:14: error: cannot find 'pthread_setspecific' in scope
154 | }
155 | #else
156 | guard 0 == pthread_setspecific(key, p) else {
| `- error: cannot find 'pthread_setspecific' in scope
157 | fatalError("Unable to set TLS")
158 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:165:10: error: cannot find 'pthread_getspecific' in scope
163 | return FlsGetValue(key)
164 | #else
165 | return pthread_getspecific(key)
| `- error: cannot find 'pthread_getspecific' in scope
166 | #endif
167 | }
[31/49] Compiling SystemPackage Exports.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:35:27: error: cannot find type 'mode_t' in scope
33 | public typealias Mode = CInt
34 | #else
35 | public typealias Mode = mode_t
| `- error: cannot find type 'mode_t' in scope
36 | #endif
37 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:26:8: error: Unsupported Platform
24 | import ucrt
25 | #else
26 | #error("Unsupported Platform")
| `- error: Unsupported Platform
27 | #endif
28 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:23:8: error: Unsupported Platform
21 | import ucrt
22 | #else
23 | #error("Unsupported Platform")
| `- error: Unsupported Platform
24 | #endif
25 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:33:29: error: cannot find 'EPERM' in scope
31 |
32 | @_alwaysEmitIntoClient
33 | internal var _EPERM: CInt { EPERM }
| `- error: cannot find 'EPERM' in scope
34 |
35 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:36:30: error: cannot find 'ENOENT' in scope
34 |
35 | @_alwaysEmitIntoClient
36 | internal var _ENOENT: CInt { ENOENT }
| `- error: cannot find 'ENOENT' in scope
37 |
38 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:39:29: error: cannot find 'ESRCH' in scope
37 |
38 | @_alwaysEmitIntoClient
39 | internal var _ESRCH: CInt { ESRCH }
| `- error: cannot find 'ESRCH' in scope
40 |
41 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:42:29: error: cannot find 'EINTR' in scope
40 |
41 | @_alwaysEmitIntoClient
42 | internal var _EINTR: CInt { EINTR }
| `- error: cannot find 'EINTR' in scope
43 |
44 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:45:27: error: cannot find 'EIO' in scope
43 |
44 | @_alwaysEmitIntoClient
45 | internal var _EIO: CInt { EIO }
| `- error: cannot find 'EIO' in scope
46 |
47 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:48:29: error: cannot find 'ENXIO' in scope
46 |
47 | @_alwaysEmitIntoClient
48 | internal var _ENXIO: CInt { ENXIO }
| `- error: cannot find 'ENXIO' in scope
49 |
50 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:51:29: error: cannot find 'E2BIG' in scope
49 |
50 | @_alwaysEmitIntoClient
51 | internal var _E2BIG: CInt { E2BIG }
| `- error: cannot find 'E2BIG' in scope
52 |
53 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:54:31: error: cannot find 'ENOEXEC' in scope
52 |
53 | @_alwaysEmitIntoClient
54 | internal var _ENOEXEC: CInt { ENOEXEC }
| `- error: cannot find 'ENOEXEC' in scope
55 |
56 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:57:29: error: cannot find 'EBADF' in scope
55 |
56 | @_alwaysEmitIntoClient
57 | internal var _EBADF: CInt { EBADF }
| `- error: cannot find 'EBADF' in scope
58 |
59 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:60:30: error: cannot find 'ECHILD' in scope
58 |
59 | @_alwaysEmitIntoClient
60 | internal var _ECHILD: CInt { ECHILD }
| `- error: cannot find 'ECHILD' in scope
61 |
62 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:63:31: error: cannot find 'EDEADLK' in scope
61 |
62 | @_alwaysEmitIntoClient
63 | internal var _EDEADLK: CInt { EDEADLK }
| `- error: cannot find 'EDEADLK' in scope
64 |
65 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:66:30: error: cannot find 'ENOMEM' in scope
64 |
65 | @_alwaysEmitIntoClient
66 | internal var _ENOMEM: CInt { ENOMEM }
| `- error: cannot find 'ENOMEM' in scope
67 |
68 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:69:30: error: cannot find 'EACCES' in scope
67 |
68 | @_alwaysEmitIntoClient
69 | internal var _EACCES: CInt { EACCES }
| `- error: cannot find 'EACCES' in scope
70 |
71 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:72:30: error: cannot find 'EFAULT' in scope
70 |
71 | @_alwaysEmitIntoClient
72 | internal var _EFAULT: CInt { EFAULT }
| `- error: cannot find 'EFAULT' in scope
73 |
74 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:76:31: error: cannot find 'ENOTBLK' in scope
74 | #if !os(Windows)
75 | @_alwaysEmitIntoClient
76 | internal var _ENOTBLK: CInt { ENOTBLK }
| `- error: cannot find 'ENOTBLK' in scope
77 | #endif
78 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:80:29: error: cannot find 'EBUSY' in scope
78 |
79 | @_alwaysEmitIntoClient
80 | internal var _EBUSY: CInt { EBUSY }
| `- error: cannot find 'EBUSY' in scope
81 |
82 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:83:30: error: cannot find 'EEXIST' in scope
81 |
82 | @_alwaysEmitIntoClient
83 | internal var _EEXIST: CInt { EEXIST }
| `- error: cannot find 'EEXIST' in scope
84 |
85 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:86:29: error: cannot find 'EXDEV' in scope
84 |
85 | @_alwaysEmitIntoClient
86 | internal var _EXDEV: CInt { EXDEV }
| `- error: cannot find 'EXDEV' in scope
87 |
88 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:89:30: error: cannot find 'ENODEV' in scope
87 |
88 | @_alwaysEmitIntoClient
89 | internal var _ENODEV: CInt { ENODEV }
| `- error: cannot find 'ENODEV' in scope
90 |
91 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:92:31: error: cannot find 'ENOTDIR' in scope
90 |
91 | @_alwaysEmitIntoClient
92 | internal var _ENOTDIR: CInt { ENOTDIR }
| `- error: cannot find 'ENOTDIR' in scope
93 |
94 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:95:30: error: cannot find 'EISDIR' in scope
93 |
94 | @_alwaysEmitIntoClient
95 | internal var _EISDIR: CInt { EISDIR }
| `- error: cannot find 'EISDIR' in scope
96 |
97 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:98:30: error: cannot find 'EINVAL' in scope
96 |
97 | @_alwaysEmitIntoClient
98 | internal var _EINVAL: CInt { EINVAL }
| `- error: cannot find 'EINVAL' in scope
99 |
100 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:101:30: error: cannot find 'ENFILE' in scope
99 |
100 | @_alwaysEmitIntoClient
101 | internal var _ENFILE: CInt { ENFILE }
| `- error: cannot find 'ENFILE' in scope
102 |
103 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:104:30: error: cannot find 'EMFILE' in scope
102 |
103 | @_alwaysEmitIntoClient
104 | internal var _EMFILE: CInt { EMFILE }
| `- error: cannot find 'EMFILE' in scope
105 |
106 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:108:30: error: cannot find 'ENOTTY' in scope
106 | #if !os(Windows)
107 | @_alwaysEmitIntoClient
108 | internal var _ENOTTY: CInt { ENOTTY }
| `- error: cannot find 'ENOTTY' in scope
109 |
110 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:111:31: error: cannot find 'ETXTBSY' in scope
109 |
110 | @_alwaysEmitIntoClient
111 | internal var _ETXTBSY: CInt { ETXTBSY }
| `- error: cannot find 'ETXTBSY' in scope
112 | #endif
113 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:115:29: error: cannot find 'EFBIG' in scope
113 |
114 | @_alwaysEmitIntoClient
115 | internal var _EFBIG: CInt { EFBIG }
| `- error: cannot find 'EFBIG' in scope
116 |
117 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:118:30: error: cannot find 'ENOSPC' in scope
116 |
117 | @_alwaysEmitIntoClient
118 | internal var _ENOSPC: CInt { ENOSPC }
| `- error: cannot find 'ENOSPC' in scope
119 |
120 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:121:30: error: cannot find 'ESPIPE' in scope
119 |
120 | @_alwaysEmitIntoClient
121 | internal var _ESPIPE: CInt { ESPIPE }
| `- error: cannot find 'ESPIPE' in scope
122 |
123 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:124:29: error: cannot find 'EROFS' in scope
122 |
123 | @_alwaysEmitIntoClient
124 | internal var _EROFS: CInt { EROFS }
| `- error: cannot find 'EROFS' in scope
125 |
126 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:127:30: error: cannot find 'EMLINK' in scope
125 |
126 | @_alwaysEmitIntoClient
127 | internal var _EMLINK: CInt { EMLINK }
| `- error: cannot find 'EMLINK' in scope
128 |
129 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:130:29: error: cannot find 'EPIPE' in scope
128 |
129 | @_alwaysEmitIntoClient
130 | internal var _EPIPE: CInt { EPIPE }
| `- error: cannot find 'EPIPE' in scope
131 |
132 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:133:28: error: cannot find 'EDOM' in scope
131 |
132 | @_alwaysEmitIntoClient
133 | internal var _EDOM: CInt { EDOM }
| `- error: cannot find 'EDOM' in scope
134 |
135 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:136:30: error: cannot find 'ERANGE' in scope
134 |
135 | @_alwaysEmitIntoClient
136 | internal var _ERANGE: CInt { ERANGE }
| `- error: cannot find 'ERANGE' in scope
137 |
138 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:139:30: error: cannot find 'EAGAIN' in scope
137 |
138 | @_alwaysEmitIntoClient
139 | internal var _EAGAIN: CInt { EAGAIN }
| `- error: cannot find 'EAGAIN' in scope
140 |
141 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:142:35: error: cannot find 'EWOULDBLOCK' in scope
140 |
141 | @_alwaysEmitIntoClient
142 | internal var _EWOULDBLOCK: CInt { EWOULDBLOCK }
| `- error: cannot find 'EWOULDBLOCK' in scope
143 |
144 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:145:35: error: cannot find 'EINPROGRESS' in scope
143 |
144 | @_alwaysEmitIntoClient
145 | internal var _EINPROGRESS: CInt { EINPROGRESS }
| `- error: cannot find 'EINPROGRESS' in scope
146 |
147 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:148:32: error: cannot find 'EALREADY' in scope
146 |
147 | @_alwaysEmitIntoClient
148 | internal var _EALREADY: CInt { EALREADY }
| `- error: cannot find 'EALREADY' in scope
149 |
150 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:151:32: error: cannot find 'ENOTSOCK' in scope
149 |
150 | @_alwaysEmitIntoClient
151 | internal var _ENOTSOCK: CInt { ENOTSOCK }
| `- error: cannot find 'ENOTSOCK' in scope
152 |
153 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:154:36: error: cannot find 'EDESTADDRREQ' in scope
152 |
153 | @_alwaysEmitIntoClient
154 | internal var _EDESTADDRREQ: CInt { EDESTADDRREQ }
| `- error: cannot find 'EDESTADDRREQ' in scope
155 |
156 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:157:32: error: cannot find 'EMSGSIZE' in scope
155 |
156 | @_alwaysEmitIntoClient
157 | internal var _EMSGSIZE: CInt { EMSGSIZE }
| `- error: cannot find 'EMSGSIZE' in scope
158 |
159 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:160:34: error: cannot find 'EPROTOTYPE' in scope
158 |
159 | @_alwaysEmitIntoClient
160 | internal var _EPROTOTYPE: CInt { EPROTOTYPE }
| `- error: cannot find 'EPROTOTYPE' in scope
161 |
162 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:163:35: error: cannot find 'ENOPROTOOPT' in scope
161 |
162 | @_alwaysEmitIntoClient
163 | internal var _ENOPROTOOPT: CInt { ENOPROTOOPT }
| `- error: cannot find 'ENOPROTOOPT' in scope
164 |
165 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:166:39: error: cannot find 'EPROTONOSUPPORT' in scope
164 |
165 | @_alwaysEmitIntoClient
166 | internal var _EPROTONOSUPPORT: CInt { EPROTONOSUPPORT }
| `- error: cannot find 'EPROTONOSUPPORT' in scope
167 |
168 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:173:10: error: cannot find 'ESOCKTNOSUPPORT' in scope
171 | return WSAESOCKTNOSUPPORT
172 | #else
173 | return ESOCKTNOSUPPORT
| `- error: cannot find 'ESOCKTNOSUPPORT' in scope
174 | #endif
175 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:182:10: error: cannot find 'ENOTSUP' in scope
180 | return WSAEOPNOTSUPP
181 | #else
182 | return ENOTSUP
| `- error: cannot find 'ENOTSUP' in scope
183 | #endif
184 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:191:10: error: cannot find 'EPFNOSUPPORT' in scope
189 | return WSAEPFNOSUPPORT
190 | #else
191 | return EPFNOSUPPORT
| `- error: cannot find 'EPFNOSUPPORT' in scope
192 | #endif
193 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:196:36: error: cannot find 'EAFNOSUPPORT' in scope
194 |
195 | @_alwaysEmitIntoClient
196 | internal var _EAFNOSUPPORT: CInt { EAFNOSUPPORT }
| `- error: cannot find 'EAFNOSUPPORT' in scope
197 |
198 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:199:34: error: cannot find 'EADDRINUSE' in scope
197 |
198 | @_alwaysEmitIntoClient
199 | internal var _EADDRINUSE: CInt { EADDRINUSE }
| `- error: cannot find 'EADDRINUSE' in scope
200 |
201 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:202:37: error: cannot find 'EADDRNOTAVAIL' in scope
200 |
201 | @_alwaysEmitIntoClient
202 | internal var _EADDRNOTAVAIL: CInt { EADDRNOTAVAIL }
| `- error: cannot find 'EADDRNOTAVAIL' in scope
203 |
204 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:205:32: error: cannot find 'ENETDOWN' in scope
203 |
204 | @_alwaysEmitIntoClient
205 | internal var _ENETDOWN: CInt { ENETDOWN }
| `- error: cannot find 'ENETDOWN' in scope
206 |
207 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:208:35: error: cannot find 'ENETUNREACH' in scope
206 |
207 | @_alwaysEmitIntoClient
208 | internal var _ENETUNREACH: CInt { ENETUNREACH }
| `- error: cannot find 'ENETUNREACH' in scope
209 |
210 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:211:33: error: cannot find 'ENETRESET' in scope
209 |
210 | @_alwaysEmitIntoClient
211 | internal var _ENETRESET: CInt { ENETRESET }
| `- error: cannot find 'ENETRESET' in scope
212 |
213 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:214:36: error: cannot find 'ECONNABORTED' in scope
212 |
213 | @_alwaysEmitIntoClient
214 | internal var _ECONNABORTED: CInt { ECONNABORTED }
| `- error: cannot find 'ECONNABORTED' in scope
215 |
216 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:217:34: error: cannot find 'ECONNRESET' in scope
215 |
216 | @_alwaysEmitIntoClient
217 | internal var _ECONNRESET: CInt { ECONNRESET }
| `- error: cannot find 'ECONNRESET' in scope
218 |
219 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:220:31: error: cannot find 'ENOBUFS' in scope
218 |
219 | @_alwaysEmitIntoClient
220 | internal var _ENOBUFS: CInt { ENOBUFS }
| `- error: cannot find 'ENOBUFS' in scope
221 |
222 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:223:31: error: cannot find 'EISCONN' in scope
221 |
222 | @_alwaysEmitIntoClient
223 | internal var _EISCONN: CInt { EISCONN }
| `- error: cannot find 'EISCONN' in scope
224 |
225 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:226:32: error: cannot find 'ENOTCONN' in scope
224 |
225 | @_alwaysEmitIntoClient
226 | internal var _ENOTCONN: CInt { ENOTCONN }
| `- error: cannot find 'ENOTCONN' in scope
227 |
228 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:233:10: error: cannot find 'ESHUTDOWN' in scope
231 | return WSAESHUTDOWN
232 | #else
233 | return ESHUTDOWN
| `- error: cannot find 'ESHUTDOWN' in scope
234 | #endif
235 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:242:10: error: cannot find 'ETOOMANYREFS' in scope
240 | return WSAETOOMANYREFS
241 | #else
242 | return ETOOMANYREFS
| `- error: cannot find 'ETOOMANYREFS' in scope
243 | #endif
244 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:247:33: error: cannot find 'ETIMEDOUT' in scope
245 |
246 | @_alwaysEmitIntoClient
247 | internal var _ETIMEDOUT: CInt { ETIMEDOUT }
| `- error: cannot find 'ETIMEDOUT' in scope
248 |
249 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:250:36: error: cannot find 'ECONNREFUSED' in scope
248 |
249 | @_alwaysEmitIntoClient
250 | internal var _ECONNREFUSED: CInt { ECONNREFUSED }
| `- error: cannot find 'ECONNREFUSED' in scope
251 |
252 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:253:29: error: cannot find 'ELOOP' in scope
251 |
252 | @_alwaysEmitIntoClient
253 | internal var _ELOOP: CInt { ELOOP }
| `- error: cannot find 'ELOOP' in scope
254 |
255 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:256:36: error: cannot find 'ENAMETOOLONG' in scope
254 |
255 | @_alwaysEmitIntoClient
256 | internal var _ENAMETOOLONG: CInt { ENAMETOOLONG }
| `- error: cannot find 'ENAMETOOLONG' in scope
257 |
258 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:263:10: error: cannot find 'EHOSTDOWN' in scope
261 | return WSAEHOSTDOWN
262 | #else
263 | return EHOSTDOWN
| `- error: cannot find 'EHOSTDOWN' in scope
264 | #endif
265 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:268:36: error: cannot find 'EHOSTUNREACH' in scope
266 |
267 | @_alwaysEmitIntoClient
268 | internal var _EHOSTUNREACH: CInt { EHOSTUNREACH }
| `- error: cannot find 'EHOSTUNREACH' in scope
269 |
270 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:271:33: error: cannot find 'ENOTEMPTY' in scope
269 |
270 | @_alwaysEmitIntoClient
271 | internal var _ENOTEMPTY: CInt { ENOTEMPTY }
| `- error: cannot find 'ENOTEMPTY' in scope
272 |
273 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:283:10: error: cannot find 'EUSERS' in scope
281 | return WSAEUSERS
282 | #else
283 | return EUSERS
| `- error: cannot find 'EUSERS' in scope
284 | #endif
285 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:292:10: error: cannot find 'EDQUOT' in scope
290 | return WSAEDQUOT
291 | #else
292 | return EDQUOT
| `- error: cannot find 'EDQUOT' in scope
293 | #endif
294 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:301:10: error: cannot find 'ESTALE' in scope
299 | return WSAESTALE
300 | #else
301 | return ESTALE
| `- error: cannot find 'ESTALE' in scope
302 | #endif
303 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:310:10: error: cannot find 'EREMOTE' in scope
308 | return WSAEREMOTE
309 | #else
310 | return EREMOTE
| `- error: cannot find 'EREMOTE' in scope
311 | #endif
312 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:332:30: error: cannot find 'ENOLCK' in scope
330 |
331 | @_alwaysEmitIntoClient
332 | internal var _ENOLCK: CInt { ENOLCK }
| `- error: cannot find 'ENOLCK' in scope
333 |
334 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:335:30: error: cannot find 'ENOSYS' in scope
333 |
334 | @_alwaysEmitIntoClient
335 | internal var _ENOSYS: CInt { ENOSYS }
| `- error: cannot find 'ENOSYS' in scope
336 |
337 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:356:33: error: cannot find 'EOVERFLOW' in scope
354 | #if !os(Windows)
355 | @_alwaysEmitIntoClient
356 | internal var _EOVERFLOW: CInt { EOVERFLOW }
| `- error: cannot find 'EOVERFLOW' in scope
357 | #endif
358 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:374:33: error: cannot find 'ECANCELED' in scope
372 |
373 | @_alwaysEmitIntoClient
374 | internal var _ECANCELED: CInt { ECANCELED }
| `- error: cannot find 'ECANCELED' in scope
375 |
376 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:378:29: error: cannot find 'EIDRM' in scope
376 | #if !os(Windows)
377 | @_alwaysEmitIntoClient
378 | internal var _EIDRM: CInt { EIDRM }
| `- error: cannot find 'EIDRM' in scope
379 |
380 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:381:30: error: cannot find 'ENOMSG' in scope
379 |
380 | @_alwaysEmitIntoClient
381 | internal var _ENOMSG: CInt { ENOMSG }
| `- error: cannot find 'ENOMSG' in scope
382 | #endif
383 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:385:30: error: cannot find 'EILSEQ' in scope
383 |
384 | @_alwaysEmitIntoClient
385 | internal var _EILSEQ: CInt { EILSEQ }
| `- error: cannot find 'EILSEQ' in scope
386 |
387 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:394:31: error: cannot find 'EBADMSG' in scope
392 | #if !os(Windows)
393 | @_alwaysEmitIntoClient
394 | internal var _EBADMSG: CInt { EBADMSG }
| `- error: cannot find 'EBADMSG' in scope
395 |
396 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:397:33: error: cannot find 'EMULTIHOP' in scope
395 |
396 | @_alwaysEmitIntoClient
397 | internal var _EMULTIHOP: CInt { EMULTIHOP }
| `- error: cannot find 'EMULTIHOP' in scope
398 |
399 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:400:31: error: cannot find 'ENODATA' in scope
398 |
399 | @_alwaysEmitIntoClient
400 | internal var _ENODATA: CInt { ENODATA }
| `- error: cannot find 'ENODATA' in scope
401 |
402 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:403:31: error: cannot find 'ENOLINK' in scope
401 |
402 | @_alwaysEmitIntoClient
403 | internal var _ENOLINK: CInt { ENOLINK }
| `- error: cannot find 'ENOLINK' in scope
404 |
405 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:406:29: error: cannot find 'ENOSR' in scope
404 |
405 | @_alwaysEmitIntoClient
406 | internal var _ENOSR: CInt { ENOSR }
| `- error: cannot find 'ENOSR' in scope
407 |
408 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:409:30: error: cannot find 'ENOSTR' in scope
407 |
408 | @_alwaysEmitIntoClient
409 | internal var _ENOSTR: CInt { ENOSTR }
| `- error: cannot find 'ENOSTR' in scope
410 |
411 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:412:30: error: cannot find 'EPROTO' in scope
410 |
411 | @_alwaysEmitIntoClient
412 | internal var _EPROTO: CInt { EPROTO }
| `- error: cannot find 'EPROTO' in scope
413 |
414 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:415:29: error: cannot find 'ETIME' in scope
413 |
414 | @_alwaysEmitIntoClient
415 | internal var _ETIME: CInt { ETIME }
| `- error: cannot find 'ETIME' in scope
416 | #endif
417 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:419:34: error: cannot find 'EOPNOTSUPP' in scope
417 |
418 | @_alwaysEmitIntoClient
419 | internal var _EOPNOTSUPP: CInt { EOPNOTSUPP }
| `- error: cannot find 'EOPNOTSUPP' in scope
420 |
421 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:428:39: error: cannot find 'ENOTRECOVERABLE' in scope
426 | #if !os(Windows)
427 | @_alwaysEmitIntoClient
428 | internal var _ENOTRECOVERABLE: CInt { ENOTRECOVERABLE }
| `- error: cannot find 'ENOTRECOVERABLE' in scope
429 |
430 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:431:34: error: cannot find 'EOWNERDEAD' in scope
429 |
430 | @_alwaysEmitIntoClient
431 | internal var _EOWNERDEAD: CInt { EOWNERDEAD }
| `- error: cannot find 'EOWNERDEAD' in scope
432 | #endif
433 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:445:32: error: cannot find 'O_RDONLY' in scope
443 |
444 | @_alwaysEmitIntoClient
445 | internal var _O_RDONLY: CInt { O_RDONLY }
| `- error: cannot find 'O_RDONLY' in scope
446 |
447 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:448:32: error: cannot find 'O_WRONLY' in scope
446 |
447 | @_alwaysEmitIntoClient
448 | internal var _O_WRONLY: CInt { O_WRONLY }
| `- error: cannot find 'O_WRONLY' in scope
449 |
450 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:451:30: error: cannot find 'O_RDWR' in scope
449 |
450 | @_alwaysEmitIntoClient
451 | internal var _O_RDWR: CInt { O_RDWR }
| `- error: cannot find 'O_RDWR' in scope
452 |
453 | #if !os(Windows)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:456:33: error: cannot find 'O_ACCMODE' in scope
454 | // TODO: API?
455 | @_alwaysEmitIntoClient
456 | internal var _O_ACCMODE: CInt { O_ACCMODE }
| `- error: cannot find 'O_ACCMODE' in scope
457 |
458 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:459:34: error: cannot find 'O_NONBLOCK' in scope
457 |
458 | @_alwaysEmitIntoClient
459 | internal var _O_NONBLOCK: CInt { O_NONBLOCK }
| `- error: cannot find 'O_NONBLOCK' in scope
460 | #endif
461 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:463:32: error: cannot find 'O_APPEND' in scope
461 |
462 | @_alwaysEmitIntoClient
463 | internal var _O_APPEND: CInt { O_APPEND }
| `- error: cannot find 'O_APPEND' in scope
464 |
465 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:476:31: error: cannot find 'O_ASYNC' in scope
474 | // TODO: API?
475 | @_alwaysEmitIntoClient
476 | internal var _O_ASYNC: CInt { O_ASYNC }
| `- error: cannot find 'O_ASYNC' in scope
477 |
478 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:479:34: error: cannot find 'O_NOFOLLOW' in scope
477 |
478 | @_alwaysEmitIntoClient
479 | internal var _O_NOFOLLOW: CInt { O_NOFOLLOW }
| `- error: cannot find 'O_NOFOLLOW' in scope
480 | #endif
481 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:483:31: error: cannot find 'O_CREAT' in scope
481 |
482 | @_alwaysEmitIntoClient
483 | internal var _O_CREAT: CInt { O_CREAT }
| `- error: cannot find 'O_CREAT' in scope
484 |
485 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:486:31: error: cannot find 'O_TRUNC' in scope
484 |
485 | @_alwaysEmitIntoClient
486 | internal var _O_TRUNC: CInt { O_TRUNC }
| `- error: cannot find 'O_TRUNC' in scope
487 |
488 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:489:30: error: cannot find 'O_EXCL' in scope
487 |
488 | @_alwaysEmitIntoClient
489 | internal var _O_EXCL: CInt { O_EXCL }
| `- error: cannot find 'O_EXCL' in scope
490 |
491 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:499:32: error: cannot find 'O_NOCTTY' in scope
497 | // TODO: API?
498 | @_alwaysEmitIntoClient
499 | internal var _O_NOCTTY: CInt { O_NOCTTY }
| `- error: cannot find 'O_NOCTTY' in scope
500 |
501 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:502:35: error: cannot find 'O_DIRECTORY' in scope
500 |
501 | @_alwaysEmitIntoClient
502 | internal var _O_DIRECTORY: CInt { O_DIRECTORY }
| `- error: cannot find 'O_DIRECTORY' in scope
503 | #endif
504 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:512:33: error: cannot find 'O_CLOEXEC' in scope
510 | #if !os(Windows)
511 | @_alwaysEmitIntoClient
512 | internal var _O_CLOEXEC: CInt { O_CLOEXEC }
| `- error: cannot find 'O_CLOEXEC' in scope
513 | #endif
514 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:516:32: error: cannot find 'SEEK_SET' in scope
514 |
515 | @_alwaysEmitIntoClient
516 | internal var _SEEK_SET: CInt { SEEK_SET }
| `- error: cannot find 'SEEK_SET' in scope
517 |
518 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:519:32: error: cannot find 'SEEK_CUR' in scope
517 |
518 | @_alwaysEmitIntoClient
519 | internal var _SEEK_CUR: CInt { SEEK_CUR }
| `- error: cannot find 'SEEK_CUR' in scope
520 |
521 | @_alwaysEmitIntoClient
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Constants.swift:522:32: error: cannot find 'SEEK_END' in scope
520 |
521 | @_alwaysEmitIntoClient
522 | internal var _SEEK_END: CInt { SEEK_END }
| `- error: cannot find 'SEEK_END' in scope
523 |
524 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:24:8: error: Unsupported Platform
22 | import ucrt
23 | #else
24 | #error("Unsupported Platform")
| `- error: Unsupported Platform
25 | #endif
26 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:27:29: error: cannot find type 'off_t' in scope
25 | #endif
26 |
27 | internal typealias _COffT = off_t
| `- error: cannot find type 'off_t' in scope
28 |
29 | // MARK: syscalls and variables
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:132:38: error: cannot find type 'pthread_key_t' in scope
130 | internal typealias _PlatformTLSKey = DWORD
131 | #else
132 | internal typealias _PlatformTLSKey = pthread_key_t
| `- error: cannot find type 'pthread_key_t' in scope
133 | #endif
134 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:50:9: error: cannot find 'Glibc' in scope
48 | #else
49 | internal var system_errno: CInt {
50 | get { Glibc.errno }
| `- error: cannot find 'Glibc' in scope
51 | set { Glibc.errno = newValue }
52 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:51:9: error: cannot find 'Glibc' in scope
49 | internal var system_errno: CInt {
50 | get { Glibc.errno }
51 | set { Glibc.errno = newValue }
| `- error: cannot find 'Glibc' in scope
52 | }
53 | #endif
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:60:3: error: cannot find 'strerror' in scope
58 |
59 | internal func system_strerror(_ __errnum: Int32) -> UnsafeMutablePointer<Int8>! {
60 | strerror(__errnum)
| `- error: cannot find 'strerror' in scope
61 | }
62 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:64:3: error: cannot find 'strlen' in scope
62 |
63 | internal func system_strlen(_ s: UnsafePointer<Int8>) -> Int {
64 | strlen(s)
| `- error: cannot find 'strlen' in scope
65 | }
66 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:77:10: error: cannot find 'strlen' in scope
75 | return wcslen(s)
76 | #else
77 | return strlen(s)
| `- error: cannot find 'strlen' in scope
78 | #endif
79 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:143:13: error: cannot find 'pthread_key_t' in scope
141 | return raw
142 | #else
143 | var raw = pthread_key_t()
| `- error: cannot find 'pthread_key_t' in scope
144 | guard 0 == pthread_key_create(&raw, nil) else {
145 | fatalError("Unable to create key")
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:144:14: error: cannot find 'pthread_key_create' in scope
142 | #else
143 | var raw = pthread_key_t()
144 | guard 0 == pthread_key_create(&raw, nil) else {
| `- error: cannot find 'pthread_key_create' in scope
145 | fatalError("Unable to create key")
146 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:144:39: error: 'nil' requires a contextual type
142 | #else
143 | var raw = pthread_key_t()
144 | guard 0 == pthread_key_create(&raw, nil) else {
| `- error: 'nil' requires a contextual type
145 | fatalError("Unable to create key")
146 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:156:14: error: cannot find 'pthread_setspecific' in scope
154 | }
155 | #else
156 | guard 0 == pthread_setspecific(key, p) else {
| `- error: cannot find 'pthread_setspecific' in scope
157 | fatalError("Unable to set TLS")
158 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:165:10: error: cannot find 'pthread_getspecific' in scope
163 | return FlsGetValue(key)
164 | #else
165 | return pthread_getspecific(key)
| `- error: cannot find 'pthread_getspecific' in scope
166 | #endif
167 | }
[32/49] Compiling SystemPackage FilePathComponents.swift
[33/49] Compiling SystemPackage FilePathParsing.swift
[34/49] Compiling SystemPackage FilePathString.swift
[35/49] Compiling SystemPackage FileOperations.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:35:27: error: cannot find type 'mode_t' in scope
33 | public typealias Mode = CInt
34 | #else
35 | public typealias Mode = mode_t
| `- error: cannot find type 'mode_t' in scope
36 | #endif
37 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FileOperations.swift:68:24: error: type 'FilePermissions' does not conform to protocol 'RawRepresentable'
66 |
67 | @usableFromInline
68 | internal static func _open(
| `- error: type 'FilePermissions' does not conform to protocol 'RawRepresentable'
69 | _ path: UnsafePointer<CInterop.PlatformChar>,
70 | _ mode: FileDescriptor.AccessMode,
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FileOperations.swift:78:53: error: extra argument in call
76 | let descOrError: Result<CInt, Errno> = valueOrErrno(retryOnInterrupt: retryOnInterrupt) {
77 | if let permissions = permissions {
78 | return system_open(path, oFlag, permissions.rawValue)
| `- error: extra argument in call
79 | }
80 | precondition(!options.contains(.create),
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:78:6: error: cannot find type 'off_t' in scope
76 | internal func system_lseek(
77 | _ fd: Int32, _ off: off_t, _ whence: Int32
78 | ) -> off_t {
| `- error: cannot find type 'off_t' in scope
79 | #if ENABLE_MOCKING
80 | if mockingEnabled { return _mockOffT(fd, off, whence) }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:77:23: error: cannot find type 'off_t' in scope
75 | // lseek
76 | internal func system_lseek(
77 | _ fd: Int32, _ off: off_t, _ whence: Int32
| `- error: cannot find type 'off_t' in scope
78 | ) -> off_t {
79 | #if ENABLE_MOCKING
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:27:29: error: cannot find type 'off_t' in scope
25 | #endif
26 |
27 | internal typealias _COffT = off_t
| `- error: cannot find type 'off_t' in scope
28 |
29 | // MARK: syscalls and variables
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:67:73: error: cannot find type 'off_t' in scope
65 | // pread
66 | internal func system_pread(
67 | _ fd: Int32, _ buf: UnsafeMutableRawPointer!, _ nbyte: Int, _ offset: off_t
| `- error: cannot find type 'off_t' in scope
68 | ) -> Int {
69 | #if ENABLE_MOCKING
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:97:66: error: cannot find type 'off_t' in scope
95 | // pwrite
96 | internal func system_pwrite(
97 | _ fd: Int32, _ buf: UnsafeRawPointer!, _ nbyte: Int, _ offset: off_t
| `- error: cannot find type 'off_t' in scope
98 | ) -> Int {
99 | #if ENABLE_MOCKING
[36/49] Compiling SystemPackage FilePath.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:35:27: error: cannot find type 'mode_t' in scope
33 | public typealias Mode = CInt
34 | #else
35 | public typealias Mode = mode_t
| `- error: cannot find type 'mode_t' in scope
36 | #endif
37 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FileOperations.swift:68:24: error: type 'FilePermissions' does not conform to protocol 'RawRepresentable'
66 |
67 | @usableFromInline
68 | internal static func _open(
| `- error: type 'FilePermissions' does not conform to protocol 'RawRepresentable'
69 | _ path: UnsafePointer<CInterop.PlatformChar>,
70 | _ mode: FileDescriptor.AccessMode,
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FileOperations.swift:78:53: error: extra argument in call
76 | let descOrError: Result<CInt, Errno> = valueOrErrno(retryOnInterrupt: retryOnInterrupt) {
77 | if let permissions = permissions {
78 | return system_open(path, oFlag, permissions.rawValue)
| `- error: extra argument in call
79 | }
80 | precondition(!options.contains(.create),
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:78:6: error: cannot find type 'off_t' in scope
76 | internal func system_lseek(
77 | _ fd: Int32, _ off: off_t, _ whence: Int32
78 | ) -> off_t {
| `- error: cannot find type 'off_t' in scope
79 | #if ENABLE_MOCKING
80 | if mockingEnabled { return _mockOffT(fd, off, whence) }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:77:23: error: cannot find type 'off_t' in scope
75 | // lseek
76 | internal func system_lseek(
77 | _ fd: Int32, _ off: off_t, _ whence: Int32
| `- error: cannot find type 'off_t' in scope
78 | ) -> off_t {
79 | #if ENABLE_MOCKING
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:27:29: error: cannot find type 'off_t' in scope
25 | #endif
26 |
27 | internal typealias _COffT = off_t
| `- error: cannot find type 'off_t' in scope
28 |
29 | // MARK: syscalls and variables
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:67:73: error: cannot find type 'off_t' in scope
65 | // pread
66 | internal func system_pread(
67 | _ fd: Int32, _ buf: UnsafeMutableRawPointer!, _ nbyte: Int, _ offset: off_t
| `- error: cannot find type 'off_t' in scope
68 | ) -> Int {
69 | #if ENABLE_MOCKING
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:97:66: error: cannot find type 'off_t' in scope
95 | // pwrite
96 | internal func system_pwrite(
97 | _ fd: Int32, _ buf: UnsafeRawPointer!, _ nbyte: Int, _ offset: off_t
| `- error: cannot find type 'off_t' in scope
98 | ) -> Int {
99 | #if ENABLE_MOCKING
[37/49] Compiling SystemPackage FilePathComponentView.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/CInterop.swift:35:27: error: cannot find type 'mode_t' in scope
33 | public typealias Mode = CInt
34 | #else
35 | public typealias Mode = mode_t
| `- error: cannot find type 'mode_t' in scope
36 | #endif
37 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FileOperations.swift:68:24: error: type 'FilePermissions' does not conform to protocol 'RawRepresentable'
66 |
67 | @usableFromInline
68 | internal static func _open(
| `- error: type 'FilePermissions' does not conform to protocol 'RawRepresentable'
69 | _ path: UnsafePointer<CInterop.PlatformChar>,
70 | _ mode: FileDescriptor.AccessMode,
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FileOperations.swift:78:53: error: extra argument in call
76 | let descOrError: Result<CInt, Errno> = valueOrErrno(retryOnInterrupt: retryOnInterrupt) {
77 | if let permissions = permissions {
78 | return system_open(path, oFlag, permissions.rawValue)
| `- error: extra argument in call
79 | }
80 | precondition(!options.contains(.create),
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:78:6: error: cannot find type 'off_t' in scope
76 | internal func system_lseek(
77 | _ fd: Int32, _ off: off_t, _ whence: Int32
78 | ) -> off_t {
| `- error: cannot find type 'off_t' in scope
79 | #if ENABLE_MOCKING
80 | if mockingEnabled { return _mockOffT(fd, off, whence) }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:77:23: error: cannot find type 'off_t' in scope
75 | // lseek
76 | internal func system_lseek(
77 | _ fd: Int32, _ off: off_t, _ whence: Int32
| `- error: cannot find type 'off_t' in scope
78 | ) -> off_t {
79 | #if ENABLE_MOCKING
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Exports.swift:27:29: error: cannot find type 'off_t' in scope
25 | #endif
26 |
27 | internal typealias _COffT = off_t
| `- error: cannot find type 'off_t' in scope
28 |
29 | // MARK: syscalls and variables
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:67:73: error: cannot find type 'off_t' in scope
65 | // pread
66 | internal func system_pread(
67 | _ fd: Int32, _ buf: UnsafeMutableRawPointer!, _ nbyte: Int, _ offset: off_t
| `- error: cannot find type 'off_t' in scope
68 | ) -> Int {
69 | #if ENABLE_MOCKING
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:97:66: error: cannot find type 'off_t' in scope
95 | // pwrite
96 | internal func system_pwrite(
97 | _ fd: Int32, _ buf: UnsafeRawPointer!, _ nbyte: Int, _ offset: off_t
| `- error: cannot find type 'off_t' in scope
98 | ) -> Int {
99 | #if ENABLE_MOCKING
[38/49] Emitting module testUtility
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" 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:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
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/10] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/36] Emitting module TSCLibc
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCLibc/libc.swift:17:19: error: no such module 'Darwin.C'
15 | @_exported import WinSDK
16 | #else
17 | @_exported import Darwin.C
| `- error: no such module 'Darwin.C'
18 | #endif
19 |
[3/36] Compiling TSCLibc libc.swift
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCLibc/libc.swift:17:19: error: no such module 'Darwin.C'
15 | @_exported import WinSDK
16 | #else
17 | @_exported import Darwin.C
| `- error: no such module 'Darwin.C'
18 | #endif
19 |
BUILD FAILURE 6.1 wasm