Build Information
Failed to build SwiftSerial, reference main (c33b44), with Swift 6.2 for Wasm on 9 Feb 2026 08:56:35 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sgade/SwiftSerial.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/sgade/SwiftSerial
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at c33b440 Migrate to Swift 6.2
Cloned https://github.com/sgade/SwiftSerial.git
Revision (git rev-parse @):
c33b4400f0cb301cf26ab98220100ed2011bdc38
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/sgade/SwiftSerial.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.2
Building package at path: $PWD
https://github.com/sgade/SwiftSerial.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1
wasm-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:c50555b47c4db0b0576f9f25702fbe2fdff28194c4a4f4c23a7dce4b3504c85e
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest
warning: multiple Swift SDKs match target triple `wasm32-unknown-wasip1` and host triple x86_64-unknown-linux-gnu, selected one at /root/.swiftpm/swift-sdks/swift-6.2-RELEASE_wasm.artifactbundle/swift-6.2-RELEASE_wasm/wasm32-unknown-wasip1/swift-sdk.json
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/9] Compiling SwiftSerial PortMode.swift
[4/9] Compiling SwiftSerial SerialPort.swift
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:13:26: error: cannot find type 'DispatchSourceRead' in scope
11 | private var isOpen: Bool { fileDescriptor != nil }
12 |
13 | private var pollSource: DispatchSourceRead?
| `- error: cannot find type 'DispatchSourceRead' in scope
14 | private var readDataStream: AsyncStream<Data>?
15 | private var readBytesStream: AsyncStream<UInt8>?
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:59:20: error: cannot find 'DispatchSource' in scope
57 | let fileDescriptor
58 | else { return }
59 | let pollSource = DispatchSource.makeReadSource(fileDescriptor: fileDescriptor, queue: .global(qos: .default))
| `- error: cannot find 'DispatchSource' in scope
60 | let stream = AsyncStream<Data> { continuation in
61 | pollSource.setEventHandler { [lock] in
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:59:90: error: cannot infer contextual base in reference to member 'global'
57 | let fileDescriptor
58 | else { return }
59 | let pollSource = DispatchSource.makeReadSource(fileDescriptor: fileDescriptor, queue: .global(qos: .default))
| `- error: cannot infer contextual base in reference to member 'global'
60 | let stream = AsyncStream<Data> { continuation in
61 | pollSource.setEventHandler { [lock] in
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:59:103: error: cannot infer contextual base in reference to member 'default'
57 | let fileDescriptor
58 | else { return }
59 | let pollSource = DispatchSource.makeReadSource(fileDescriptor: fileDescriptor, queue: .global(qos: .default))
| `- error: cannot infer contextual base in reference to member 'default'
60 | let stream = AsyncStream<Data> { continuation in
61 | pollSource.setEventHandler { [lock] in
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:140:18: error: cannot find 'termios' in scope
138 |
139 | // Set up the control structure
140 | var settings = termios()
| `- error: cannot find 'termios' in scope
141 |
142 | // Get options structure for the port
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:143:3: error: cannot find 'tcgetattr' in scope
141 |
142 | // Get options structure for the port
143 | tcgetattr(fileDescriptor, &settings)
| `- error: cannot find 'tcgetattr' in scope
144 |
145 | // Set baud rates
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:146:3: error: cannot find 'cfsetispeed' in scope
144 |
145 | // Set baud rates
146 | cfsetispeed(&settings, baudRateSetting.receiveRate.speedValue)
| `- error: cannot find 'cfsetispeed' in scope
147 | cfsetospeed(&settings, baudRateSetting.transmitRate.speedValue)
148 |
/host/spi-builder-workspace/Sources/SwiftSerial/BaudRate.swift:106:18: error: cannot find type 'speed_t' in scope
104 | }
105 |
106 | var speedValue: speed_t {
| `- error: cannot find type 'speed_t' in scope
107 | switch self {
108 | case .baud0:
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:147:3: error: cannot find 'cfsetospeed' in scope
145 | // Set baud rates
146 | cfsetispeed(&settings, baudRateSetting.receiveRate.speedValue)
147 | cfsetospeed(&settings, baudRateSetting.transmitRate.speedValue)
| `- error: cannot find 'cfsetospeed' in scope
148 |
149 | // Enable parity (even/odd) if needed
/host/spi-builder-workspace/Sources/SwiftSerial/ParityType.swift:8:19: error: cannot find type 'tcflag_t' in scope
6 | case odd
7 |
8 | var parityValue: tcflag_t {
| `- error: cannot find type 'tcflag_t' in scope
9 | switch self {
10 | case .none:
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:154:24: error: cannot find 'tcflag_t' in scope
152 | // Set stop bit flag
153 | if sendTwoStopBits {
154 | settings.c_cflag |= tcflag_t(CSTOPB)
| `- error: cannot find 'tcflag_t' in scope
155 | } else {
156 | settings.c_cflag &= ~tcflag_t(CSTOPB)
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:154:33: error: cannot find 'CSTOPB' in scope
152 | // Set stop bit flag
153 | if sendTwoStopBits {
154 | settings.c_cflag |= tcflag_t(CSTOPB)
| `- error: cannot find 'CSTOPB' in scope
155 | } else {
156 | settings.c_cflag &= ~tcflag_t(CSTOPB)
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:156:25: error: cannot find 'tcflag_t' in scope
154 | settings.c_cflag |= tcflag_t(CSTOPB)
155 | } else {
156 | settings.c_cflag &= ~tcflag_t(CSTOPB)
| `- error: cannot find 'tcflag_t' in scope
157 | }
158 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:156:34: error: cannot find 'CSTOPB' in scope
154 | settings.c_cflag |= tcflag_t(CSTOPB)
155 | } else {
156 | settings.c_cflag &= ~tcflag_t(CSTOPB)
| `- error: cannot find 'CSTOPB' in scope
157 | }
158 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:160:24: error: cannot find 'tcflag_t' in scope
158 |
159 | // Set data bits size flag
160 | settings.c_cflag &= ~tcflag_t(CSIZE)
| `- error: cannot find 'tcflag_t' in scope
161 | settings.c_cflag |= dataBitsSize.flagValue
162 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:160:33: error: cannot find 'CSIZE' in scope
158 |
159 | // Set data bits size flag
160 | settings.c_cflag &= ~tcflag_t(CSIZE)
| `- error: cannot find 'CSIZE' in scope
161 | settings.c_cflag |= dataBitsSize.flagValue
162 |
/host/spi-builder-workspace/Sources/SwiftSerial/DataBitsSize.swift:9:17: error: cannot find type 'tcflag_t' in scope
7 | case bits8
8 |
9 | var flagValue: tcflag_t {
| `- error: cannot find type 'tcflag_t' in scope
10 | switch self {
11 | case .bits5:
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:164:24: error: cannot find 'tcflag_t' in scope
162 |
163 | //Disable input mapping of CR to NL, mapping of NL into CR, and ignoring CR
164 | settings.c_iflag &= ~tcflag_t(ICRNL | INLCR | IGNCR)
| `- error: cannot find 'tcflag_t' in scope
165 |
166 | // Set hardware flow control flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:164:33: error: cannot find 'ICRNL' in scope
162 |
163 | //Disable input mapping of CR to NL, mapping of NL into CR, and ignoring CR
164 | settings.c_iflag &= ~tcflag_t(ICRNL | INLCR | IGNCR)
| `- error: cannot find 'ICRNL' in scope
165 |
166 | // Set hardware flow control flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:164:41: error: cannot find 'INLCR' in scope
162 |
163 | //Disable input mapping of CR to NL, mapping of NL into CR, and ignoring CR
164 | settings.c_iflag &= ~tcflag_t(ICRNL | INLCR | IGNCR)
| `- error: cannot find 'INLCR' in scope
165 |
166 | // Set hardware flow control flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:164:49: error: cannot find 'IGNCR' in scope
162 |
163 | //Disable input mapping of CR to NL, mapping of NL into CR, and ignoring CR
164 | settings.c_iflag &= ~tcflag_t(ICRNL | INLCR | IGNCR)
| `- error: cannot find 'IGNCR' in scope
165 |
166 | // Set hardware flow control flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:184:34: error: cannot find 'tcflag_t' in scope
182 |
183 | // Set software flow control flags
184 | let softwareFlowControlFlags = tcflag_t(IXON | IXOFF | IXANY)
| `- error: cannot find 'tcflag_t' in scope
185 | if useSoftwareFlowControl {
186 | settings.c_iflag |= softwareFlowControlFlags
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:184:43: error: cannot find 'IXON' in scope
182 |
183 | // Set software flow control flags
184 | let softwareFlowControlFlags = tcflag_t(IXON | IXOFF | IXANY)
| `- error: cannot find 'IXON' in scope
185 | if useSoftwareFlowControl {
186 | settings.c_iflag |= softwareFlowControlFlags
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:184:50: error: cannot find 'IXOFF' in scope
182 |
183 | // Set software flow control flags
184 | let softwareFlowControlFlags = tcflag_t(IXON | IXOFF | IXANY)
| `- error: cannot find 'IXOFF' in scope
185 | if useSoftwareFlowControl {
186 | settings.c_iflag |= softwareFlowControlFlags
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:184:58: error: cannot find 'IXANY' in scope
182 |
183 | // Set software flow control flags
184 | let softwareFlowControlFlags = tcflag_t(IXON | IXOFF | IXANY)
| `- error: cannot find 'IXANY' in scope
185 | if useSoftwareFlowControl {
186 | settings.c_iflag |= softwareFlowControlFlags
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:192:23: error: cannot find 'tcflag_t' in scope
190 |
191 | // Turn on the receiver of the serial port, and ignore modem control lines
192 | settings.c_cflag |= tcflag_t(CREAD | CLOCAL)
| `- error: cannot find 'tcflag_t' in scope
193 |
194 | // Turn off canonical mode
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:192:32: error: cannot find 'CREAD' in scope
190 |
191 | // Turn on the receiver of the serial port, and ignore modem control lines
192 | settings.c_cflag |= tcflag_t(CREAD | CLOCAL)
| `- error: cannot find 'CREAD' in scope
193 |
194 | // Turn off canonical mode
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:192:40: error: cannot find 'CLOCAL' in scope
190 |
191 | // Turn on the receiver of the serial port, and ignore modem control lines
192 | settings.c_cflag |= tcflag_t(CREAD | CLOCAL)
| `- error: cannot find 'CLOCAL' in scope
193 |
194 | // Turn off canonical mode
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:24: error: cannot find 'tcflag_t' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'tcflag_t' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:33: error: cannot find 'ICANON' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'ICANON' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:42: error: cannot find 'ECHO' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'ECHO' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:49: error: cannot find 'ECHOE' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'ECHOE' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:57: error: cannot find 'ISIG' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'ISIG' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:199:24: error: cannot find 'tcflag_t' in scope
197 | // Set output processing flag
198 | if processOutput {
199 | settings.c_oflag |= tcflag_t(OPOST)
| `- error: cannot find 'tcflag_t' in scope
200 | } else {
201 | settings.c_oflag &= ~tcflag_t(OPOST)
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:199:33: error: cannot find 'OPOST' in scope
197 | // Set output processing flag
198 | if processOutput {
199 | settings.c_oflag |= tcflag_t(OPOST)
| `- error: cannot find 'OPOST' in scope
200 | } else {
201 | settings.c_oflag &= ~tcflag_t(OPOST)
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:201:25: error: cannot find 'tcflag_t' in scope
199 | settings.c_oflag |= tcflag_t(OPOST)
200 | } else {
201 | settings.c_oflag &= ~tcflag_t(OPOST)
| `- error: cannot find 'tcflag_t' in scope
202 | }
203 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:201:34: error: cannot find 'OPOST' in scope
199 | settings.c_oflag |= tcflag_t(OPOST)
200 | } else {
201 | settings.c_oflag &= ~tcflag_t(OPOST)
| `- error: cannot find 'OPOST' in scope
202 | }
203 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:215:3: error: cannot find 'specialCharacters' in scope
213 | #endif
214 |
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
| `- error: cannot find 'specialCharacters' in scope
216 | specialCharacters.VTIME = cc_t(timeout)
217 | settings.c_cc = specialCharacters
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:215:28: error: cannot find 'cc_t' in scope
213 | #endif
214 |
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
| `- error: cannot find 'cc_t' in scope
216 | specialCharacters.VTIME = cc_t(timeout)
217 | settings.c_cc = specialCharacters
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:216:3: error: cannot find 'specialCharacters' in scope
214 |
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
216 | specialCharacters.VTIME = cc_t(timeout)
| `- error: cannot find 'specialCharacters' in scope
217 | settings.c_cc = specialCharacters
218 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:216:29: error: cannot find 'cc_t' in scope
214 |
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
216 | specialCharacters.VTIME = cc_t(timeout)
| `- error: cannot find 'cc_t' in scope
217 | settings.c_cc = specialCharacters
218 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:217:19: error: cannot find 'specialCharacters' in scope
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
216 | specialCharacters.VTIME = cc_t(timeout)
217 | settings.c_cc = specialCharacters
| `- error: cannot find 'specialCharacters' in scope
218 |
219 | // Commit settings
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:220:3: error: cannot find 'tcsetattr' in scope
218 |
219 | // Commit settings
220 | tcsetattr(fileDescriptor, TCSANOW, &settings)
| `- error: cannot find 'tcsetattr' in scope
221 | }
222 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:220:29: error: cannot find 'TCSANOW' in scope
218 |
219 | // Commit settings
220 | tcsetattr(fileDescriptor, TCSANOW, &settings)
| `- error: cannot find 'TCSANOW' in scope
221 | }
222 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/9] Emitting module SwiftSerial
/host/spi-builder-workspace/Sources/SwiftSerial/BaudRate.swift:106:18: error: cannot find type 'speed_t' in scope
104 | }
105 |
106 | var speedValue: speed_t {
| `- error: cannot find type 'speed_t' in scope
107 | switch self {
108 | case .baud0:
/host/spi-builder-workspace/Sources/SwiftSerial/DataBitsSize.swift:9:17: error: cannot find type 'tcflag_t' in scope
7 | case bits8
8 |
9 | var flagValue: tcflag_t {
| `- error: cannot find type 'tcflag_t' in scope
10 | switch self {
11 | case .bits5:
/host/spi-builder-workspace/Sources/SwiftSerial/ParityType.swift:8:19: error: cannot find type 'tcflag_t' in scope
6 | case odd
7 |
8 | var parityValue: tcflag_t {
| `- error: cannot find type 'tcflag_t' in scope
9 | switch self {
10 | case .none:
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:13:26: error: cannot find type 'DispatchSourceRead' in scope
11 | private var isOpen: Bool { fileDescriptor != nil }
12 |
13 | private var pollSource: DispatchSourceRead?
| `- error: cannot find type 'DispatchSourceRead' in scope
14 | private var readDataStream: AsyncStream<Data>?
15 | private var readBytesStream: AsyncStream<UInt8>?
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:140:18: error: cannot find 'termios' in scope
138 |
139 | // Set up the control structure
140 | var settings = termios()
| `- error: cannot find 'termios' in scope
141 |
142 | // Get options structure for the port
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:143:3: error: cannot find 'tcgetattr' in scope
141 |
142 | // Get options structure for the port
143 | tcgetattr(fileDescriptor, &settings)
| `- error: cannot find 'tcgetattr' in scope
144 |
145 | // Set baud rates
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:146:3: error: cannot find 'cfsetispeed' in scope
144 |
145 | // Set baud rates
146 | cfsetispeed(&settings, baudRateSetting.receiveRate.speedValue)
| `- error: cannot find 'cfsetispeed' in scope
147 | cfsetospeed(&settings, baudRateSetting.transmitRate.speedValue)
148 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:147:3: error: cannot find 'cfsetospeed' in scope
145 | // Set baud rates
146 | cfsetispeed(&settings, baudRateSetting.receiveRate.speedValue)
147 | cfsetospeed(&settings, baudRateSetting.transmitRate.speedValue)
| `- error: cannot find 'cfsetospeed' in scope
148 |
149 | // Enable parity (even/odd) if needed
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:154:24: error: cannot find 'tcflag_t' in scope
152 | // Set stop bit flag
153 | if sendTwoStopBits {
154 | settings.c_cflag |= tcflag_t(CSTOPB)
| `- error: cannot find 'tcflag_t' in scope
155 | } else {
156 | settings.c_cflag &= ~tcflag_t(CSTOPB)
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:154:33: error: cannot find 'CSTOPB' in scope
152 | // Set stop bit flag
153 | if sendTwoStopBits {
154 | settings.c_cflag |= tcflag_t(CSTOPB)
| `- error: cannot find 'CSTOPB' in scope
155 | } else {
156 | settings.c_cflag &= ~tcflag_t(CSTOPB)
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:156:25: error: cannot find 'tcflag_t' in scope
154 | settings.c_cflag |= tcflag_t(CSTOPB)
155 | } else {
156 | settings.c_cflag &= ~tcflag_t(CSTOPB)
| `- error: cannot find 'tcflag_t' in scope
157 | }
158 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:156:34: error: cannot find 'CSTOPB' in scope
154 | settings.c_cflag |= tcflag_t(CSTOPB)
155 | } else {
156 | settings.c_cflag &= ~tcflag_t(CSTOPB)
| `- error: cannot find 'CSTOPB' in scope
157 | }
158 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:160:24: error: cannot find 'tcflag_t' in scope
158 |
159 | // Set data bits size flag
160 | settings.c_cflag &= ~tcflag_t(CSIZE)
| `- error: cannot find 'tcflag_t' in scope
161 | settings.c_cflag |= dataBitsSize.flagValue
162 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:160:33: error: cannot find 'CSIZE' in scope
158 |
159 | // Set data bits size flag
160 | settings.c_cflag &= ~tcflag_t(CSIZE)
| `- error: cannot find 'CSIZE' in scope
161 | settings.c_cflag |= dataBitsSize.flagValue
162 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:164:24: error: cannot find 'tcflag_t' in scope
162 |
163 | //Disable input mapping of CR to NL, mapping of NL into CR, and ignoring CR
164 | settings.c_iflag &= ~tcflag_t(ICRNL | INLCR | IGNCR)
| `- error: cannot find 'tcflag_t' in scope
165 |
166 | // Set hardware flow control flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:164:33: error: cannot find 'ICRNL' in scope
162 |
163 | //Disable input mapping of CR to NL, mapping of NL into CR, and ignoring CR
164 | settings.c_iflag &= ~tcflag_t(ICRNL | INLCR | IGNCR)
| `- error: cannot find 'ICRNL' in scope
165 |
166 | // Set hardware flow control flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:164:41: error: cannot find 'INLCR' in scope
162 |
163 | //Disable input mapping of CR to NL, mapping of NL into CR, and ignoring CR
164 | settings.c_iflag &= ~tcflag_t(ICRNL | INLCR | IGNCR)
| `- error: cannot find 'INLCR' in scope
165 |
166 | // Set hardware flow control flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:164:49: error: cannot find 'IGNCR' in scope
162 |
163 | //Disable input mapping of CR to NL, mapping of NL into CR, and ignoring CR
164 | settings.c_iflag &= ~tcflag_t(ICRNL | INLCR | IGNCR)
| `- error: cannot find 'IGNCR' in scope
165 |
166 | // Set hardware flow control flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:184:34: error: cannot find 'tcflag_t' in scope
182 |
183 | // Set software flow control flags
184 | let softwareFlowControlFlags = tcflag_t(IXON | IXOFF | IXANY)
| `- error: cannot find 'tcflag_t' in scope
185 | if useSoftwareFlowControl {
186 | settings.c_iflag |= softwareFlowControlFlags
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:184:43: error: cannot find 'IXON' in scope
182 |
183 | // Set software flow control flags
184 | let softwareFlowControlFlags = tcflag_t(IXON | IXOFF | IXANY)
| `- error: cannot find 'IXON' in scope
185 | if useSoftwareFlowControl {
186 | settings.c_iflag |= softwareFlowControlFlags
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:184:50: error: cannot find 'IXOFF' in scope
182 |
183 | // Set software flow control flags
184 | let softwareFlowControlFlags = tcflag_t(IXON | IXOFF | IXANY)
| `- error: cannot find 'IXOFF' in scope
185 | if useSoftwareFlowControl {
186 | settings.c_iflag |= softwareFlowControlFlags
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:184:58: error: cannot find 'IXANY' in scope
182 |
183 | // Set software flow control flags
184 | let softwareFlowControlFlags = tcflag_t(IXON | IXOFF | IXANY)
| `- error: cannot find 'IXANY' in scope
185 | if useSoftwareFlowControl {
186 | settings.c_iflag |= softwareFlowControlFlags
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:192:23: error: cannot find 'tcflag_t' in scope
190 |
191 | // Turn on the receiver of the serial port, and ignore modem control lines
192 | settings.c_cflag |= tcflag_t(CREAD | CLOCAL)
| `- error: cannot find 'tcflag_t' in scope
193 |
194 | // Turn off canonical mode
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:192:32: error: cannot find 'CREAD' in scope
190 |
191 | // Turn on the receiver of the serial port, and ignore modem control lines
192 | settings.c_cflag |= tcflag_t(CREAD | CLOCAL)
| `- error: cannot find 'CREAD' in scope
193 |
194 | // Turn off canonical mode
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:192:40: error: cannot find 'CLOCAL' in scope
190 |
191 | // Turn on the receiver of the serial port, and ignore modem control lines
192 | settings.c_cflag |= tcflag_t(CREAD | CLOCAL)
| `- error: cannot find 'CLOCAL' in scope
193 |
194 | // Turn off canonical mode
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:24: error: cannot find 'tcflag_t' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'tcflag_t' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:33: error: cannot find 'ICANON' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'ICANON' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:42: error: cannot find 'ECHO' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'ECHO' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:49: error: cannot find 'ECHOE' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'ECHOE' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:195:57: error: cannot find 'ISIG' in scope
193 |
194 | // Turn off canonical mode
195 | settings.c_lflag &= ~tcflag_t(ICANON | ECHO | ECHOE | ISIG)
| `- error: cannot find 'ISIG' in scope
196 |
197 | // Set output processing flag
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:199:24: error: cannot find 'tcflag_t' in scope
197 | // Set output processing flag
198 | if processOutput {
199 | settings.c_oflag |= tcflag_t(OPOST)
| `- error: cannot find 'tcflag_t' in scope
200 | } else {
201 | settings.c_oflag &= ~tcflag_t(OPOST)
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:199:33: error: cannot find 'OPOST' in scope
197 | // Set output processing flag
198 | if processOutput {
199 | settings.c_oflag |= tcflag_t(OPOST)
| `- error: cannot find 'OPOST' in scope
200 | } else {
201 | settings.c_oflag &= ~tcflag_t(OPOST)
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:201:25: error: cannot find 'tcflag_t' in scope
199 | settings.c_oflag |= tcflag_t(OPOST)
200 | } else {
201 | settings.c_oflag &= ~tcflag_t(OPOST)
| `- error: cannot find 'tcflag_t' in scope
202 | }
203 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:201:34: error: cannot find 'OPOST' in scope
199 | settings.c_oflag |= tcflag_t(OPOST)
200 | } else {
201 | settings.c_oflag &= ~tcflag_t(OPOST)
| `- error: cannot find 'OPOST' in scope
202 | }
203 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:215:3: error: cannot find 'specialCharacters' in scope
213 | #endif
214 |
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
| `- error: cannot find 'specialCharacters' in scope
216 | specialCharacters.VTIME = cc_t(timeout)
217 | settings.c_cc = specialCharacters
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:215:28: error: cannot find 'cc_t' in scope
213 | #endif
214 |
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
| `- error: cannot find 'cc_t' in scope
216 | specialCharacters.VTIME = cc_t(timeout)
217 | settings.c_cc = specialCharacters
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:216:3: error: cannot find 'specialCharacters' in scope
214 |
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
216 | specialCharacters.VTIME = cc_t(timeout)
| `- error: cannot find 'specialCharacters' in scope
217 | settings.c_cc = specialCharacters
218 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:216:29: error: cannot find 'cc_t' in scope
214 |
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
216 | specialCharacters.VTIME = cc_t(timeout)
| `- error: cannot find 'cc_t' in scope
217 | settings.c_cc = specialCharacters
218 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:217:19: error: cannot find 'specialCharacters' in scope
215 | specialCharacters.VMIN = cc_t(minimumBytesToRead)
216 | specialCharacters.VTIME = cc_t(timeout)
217 | settings.c_cc = specialCharacters
| `- error: cannot find 'specialCharacters' in scope
218 |
219 | // Commit settings
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:220:3: error: cannot find 'tcsetattr' in scope
218 |
219 | // Commit settings
220 | tcsetattr(fileDescriptor, TCSANOW, &settings)
| `- error: cannot find 'tcsetattr' in scope
221 | }
222 |
/host/spi-builder-workspace/Sources/SwiftSerial/SerialPort.swift:220:29: error: cannot find 'TCSANOW' in scope
218 |
219 | // Commit settings
220 | tcsetattr(fileDescriptor, TCSANOW, &settings)
| `- error: cannot find 'TCSANOW' in scope
221 | }
222 |
[6/9] Compiling SwiftSerial DataBitsSize.swift
/host/spi-builder-workspace/Sources/SwiftSerial/DataBitsSize.swift:9:17: error: cannot find type 'tcflag_t' in scope
7 | case bits8
8 |
9 | var flagValue: tcflag_t {
| `- error: cannot find type 'tcflag_t' in scope
10 | switch self {
11 | case .bits5:
[7/9] Compiling SwiftSerial BaudRate.swift
/host/spi-builder-workspace/Sources/SwiftSerial/BaudRate.swift:106:18: error: cannot find type 'speed_t' in scope
104 | }
105 |
106 | var speedValue: speed_t {
| `- error: cannot find type 'speed_t' in scope
107 | switch self {
108 | case .baud0:
[8/9] Compiling SwiftSerial PortError.swift
[9/9] Compiling SwiftSerial ParityType.swift
/host/spi-builder-workspace/Sources/SwiftSerial/ParityType.swift:8:19: error: cannot find type 'tcflag_t' in scope
6 | case odd
7 |
8 | var parityValue: tcflag_t {
| `- error: cannot find type 'tcflag_t' in scope
9 | switch self {
10 | case .none:
BUILD FAILURE 6.2 wasm