Build Information
Failed to build swift-argument-parser, reference main (b1b537
), with Swift 6.1 for Android on 29 May 2025 02:46:51 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
Build Log
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Never show help for this argument.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[58/121] Compiling StackOtterArgParser CollectionExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[59/121] Compiling StackOtterArgParser Platform.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[60/121] Compiling StackOtterArgParser SequenceExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[61/121] Compiling StackOtterArgParser StringExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[62/121] Compiling StackOtterArgParser Tree.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[63/121] Emitting module StackOtterArgParser
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /// Only show help for this argument in the extended help screen.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Never show help for this argument.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
[80/121] Compiling StackOtterArgParser DumpHelpGenerator.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[81/121] Compiling StackOtterArgParser HelpCommand.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[82/121] Compiling StackOtterArgParser HelpGenerator.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[83/121] Compiling StackOtterArgParser MessageInfo.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[84/121] Compiling StackOtterArgParser UsageGenerator.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[95/122] Wrapping AST for StackOtterArgParser for debugging
[97/149] Compiling gen_manual MDocBuilder.swift
[98/149] Compiling gen_manual MDocComponent.swift
[99/149] Compiling gen_manual Document.swift
[100/149] Compiling gen_manual DocumentDate.swift
[101/152] Emitting module gen_manual
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
[102/152] Compiling gen_manual Exit.swift
[103/152] Compiling gen_manual List.swift
[104/152] Compiling gen_manual MultiPageDescription.swift
[105/152] Compiling gen_manual Name.swift
[106/152] Compiling gen_manual Container.swift
[107/152] Compiling gen_manual Empty.swift
[108/152] Compiling gen_manual ForEach.swift
[109/152] Compiling gen_manual MDocASTNodeWrapper.swift
[110/152] Compiling gen_manual AuthorArgument.swift
[111/152] Compiling gen_manual ArgumentSynopsis.swift
[112/152] Compiling gen_manual Author.swift
[113/152] Compiling gen_manual Authors.swift
[114/152] Compiling gen_manual Preamble.swift
[115/152] Compiling gen_manual Section.swift
[116/152] Compiling gen_manual SeeAlso.swift
[117/152] Compiling gen_manual SinglePageDescription.swift
[118/152] Compiling gen_manual Process+SimpleAPI.swift
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
[119/152] Compiling gen_manual GenManual.swift
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
[120/152] Compiling gen_manual MDocASTNode.swift
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
[121/152] Compiling gen_manual Synopsis.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
[122/152] Compiling gen_manual ArgumentParser+MDoc.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
[123/152] Compiling gen_manual Date+ExpressibleByArgument.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
[124/152] Compiling gen_manual MDocMacro.swift
[125/152] Compiling gen_manual MDocSerializationContext.swift
[126/152] Compiling gen_manual String+Escaping.swift
[127/153] Wrapping AST for gen-manual for debugging
[128/153] Write Objects.LinkFileList
[129/153] Linking gen-manual-tool
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin GenManual
Building for debugging...
[1/21] Write swift-version-24593BA9C3E375BF.txt
[3/25] Emitting module StackOtterArgParserToolInfo
[4/25] Compiling StackOtterArgParserToolInfo ToolInfo.swift
[5/26] Emitting module StackOtterArgParserToolInfo
[6/26] Compiling StackOtterArgParserToolInfo ToolInfo.swift
[9/99] Compiling StackOtterArgParser ArgumentVisibility.swift
[10/99] Compiling StackOtterArgParser CompletionKind.swift
[11/99] Compiling StackOtterArgParser Errors.swift
[12/99] Compiling StackOtterArgParser Flag.swift
[13/99] Compiling StackOtterArgParser NameSpecification.swift
[14/104] Compiling StackOtterArgParser Option.swift
[15/104] Compiling StackOtterArgParser OptionGroup.swift
[16/104] Compiling StackOtterArgParser AsyncParsableCommand.swift
[17/104] Compiling StackOtterArgParser CommandConfiguration.swift
[18/104] Compiling StackOtterArgParser EnumerableFlag.swift
[19/109] Compiling StackOtterArgParser CompletionsGenerator.swift
[20/109] Compiling StackOtterArgParser FishCompletionsGenerator.swift
[21/109] Compiling StackOtterArgParser ZshCompletionsGenerator.swift
[22/109] Compiling StackOtterArgParser Argument.swift
[23/109] Compiling StackOtterArgParser ArgumentHelp.swift
[29/109] Compiling StackOtterArgParser CollectionExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[30/109] Compiling StackOtterArgParser Platform.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[31/109] Compiling StackOtterArgParser SequenceExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[32/109] Compiling StackOtterArgParser StringExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[33/109] Compiling StackOtterArgParser Tree.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:36:26: error: cannot find 'getenv' in scope
34 | #else
35 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
36 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
37 | let shellParts = String(cString: shellVar).split(separator: "/")
38 | return shellParts.last.map(String.init)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:56:5: error: cannot find 'EXIT_SUCCESS' in scope
54 | /// The code for successful exit.
55 | static var exitCodeSuccess: Int32 {
56 | EXIT_SUCCESS
| `- error: cannot find 'EXIT_SUCCESS' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:61:5: error: cannot find 'EXIT_FAILURE' in scope
59 | /// The code for exit with a general failure.
60 | static var exitCodeFailure: Int32 {
61 | EXIT_FAILURE
| `- error: cannot find 'EXIT_FAILURE' in scope
62 | }
63 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:71:12: error: cannot find 'EX_USAGE' in scope
69 | return EXIT_FAILURE
70 | #else
71 | return EX_USAGE
| `- error: cannot find 'EX_USAGE' in scope
72 | #endif
73 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:33: error: cannot find 'putc' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: error: cannot find 'stderr' in scope
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
102 | }
103 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:38: error: generic parameter 'U' could not be inferred
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
102 | }
103 | }
Swift.numericCast:1:24: note: in call to function 'numericCast'
1 | @inlinable public func numericCast<T, U>(_ x: T) -> U where T : BinaryInteger, U : BinaryInteger
| `- note: in call to function 'numericCast'
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:137:13: error: cannot find 'winsize' in scope
135 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
136 | #else
137 | var w = winsize()
| `- error: cannot find 'winsize' in scope
138 | #if os(OpenBSD)
139 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:15: error: cannot find 'ioctl' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:21: error: cannot find 'STDOUT_FILENO' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
146 | #endif
147 | let width = Int(w.ws_col)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:145:36: error: cannot find 'TIOCGWINSZ' in scope
143 | let err = ioctl(STDOUT_FILENO, UInt(TIOCGWINSZ), &w)
144 | #else
145 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
146 | #endif
147 | let width = Int(w.ws_col)
[34/109] Emitting module StackOtterArgParser
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[40/109] Compiling StackOtterArgParser BashCompletionsGenerator.swift
[52/109] Emitting module StackOtterArgParser
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[53/109] Compiling StackOtterArgParser ArgumentDefinition.swift
[54/109] Compiling StackOtterArgParser ArgumentSet.swift
[55/109] Compiling StackOtterArgParser CommandParser.swift
[56/109] Compiling StackOtterArgParser InputKey.swift
[57/109] Compiling StackOtterArgParser InputOrigin.swift
[58/109] Compiling StackOtterArgParser Name.swift
[59/109] Compiling StackOtterArgParser Parsed.swift
[60/109] Compiling StackOtterArgParser ParsedValues.swift
[61/109] Compiling StackOtterArgParser ParserError.swift
[62/109] Compiling StackOtterArgParser SplitArguments.swift
[63/109] Compiling StackOtterArgParser ExpressibleByArgument.swift
[64/109] Compiling StackOtterArgParser ParsableArguments.swift
[65/109] Compiling StackOtterArgParser ParsedValues.swift
[66/109] Compiling StackOtterArgParser ParserError.swift
[67/109] Compiling StackOtterArgParser SplitArguments.swift
[68/109] Compiling StackOtterArgParser DumpHelpGenerator.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[69/109] Compiling StackOtterArgParser HelpCommand.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[70/109] Compiling StackOtterArgParser HelpGenerator.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[71/109] Compiling StackOtterArgParser MessageInfo.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[72/109] Compiling StackOtterArgParser UsageGenerator.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
BUILD FAILURE 6.1 android