Build Information
Failed to build swift-markdown, reference 0.3.0 (83188d
), with Swift 6.1 for Android on 29 May 2025 02:45:38 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
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:27:27: warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
| |- warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'note' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// A "tip" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:30:27: warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
28 |
29 | /// A "tip" aside.
30 | public static let tip = Kind(rawValue: "Tip")!
| |- warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// An "important" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:33:27: warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
31 |
32 | /// An "important" aside.
33 | public static let important = Kind(rawValue: "Important")!
| |- warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'important' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | /// An "experiment" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:36:27: warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
34 |
35 | /// An "experiment" aside.
36 | public static let experiment = Kind(rawValue: "Experiment")!
| |- warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'experiment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// A "warning" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:39:27: warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
37 |
38 | /// A "warning" aside.
39 | public static let warning = Kind(rawValue: "Warning")!
| |- warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | /// An "attention" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:42:27: warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
40 |
41 | /// An "attention" aside.
42 | public static let attention = Kind(rawValue: "Attention")!
| |- warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'attention' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | /// An "author" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:45:27: warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
43 |
44 | /// An "author" aside.
45 | public static let author = Kind(rawValue: "Author")!
| |- warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'author' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | /// An "authors" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:48:27: warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
46 |
47 | /// An "authors" aside.
48 | public static let authors = Kind(rawValue: "Authors")!
| |- warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'authors' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | /// A "bug" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:51:27: warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
49 |
50 | /// A "bug" aside.
51 | public static let bug = Kind(rawValue: "Bug")!
| |- warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bug' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /// A "complexity" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:54:27: warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
52 |
53 | /// A "complexity" aside.
54 | public static let complexity = Kind(rawValue: "Complexity")!
| |- warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'complexity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 | /// A "copyright" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:57:27: warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
55 |
56 | /// A "copyright" aside.
57 | public static let copyright = Kind(rawValue: "Copyright")!
| |- warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'copyright' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 | /// A "date" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:60:27: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
58 |
59 | /// A "date" aside.
60 | public static let date = Kind(rawValue: "Date")!
| |- warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// An "invariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:63:27: warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
61 |
62 | /// An "invariant" aside.
63 | public static let invariant = Kind(rawValue: "Invariant")!
| |- warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'invariant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | /// A "mutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:66:27: warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
64 |
65 | /// A "mutatingVariant" aside.
66 | public static let mutatingVariant = Kind(rawValue: "MutatingVariant")!
| |- warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'mutatingVariant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 | /// A "nonMutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:69:27: warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
67 |
68 | /// A "nonMutatingVariant" aside.
69 | public static let nonMutatingVariant = Kind(rawValue: "NonMutatingVariant")!
| |- warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nonMutatingVariant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 | /// A "postcondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:72:27: warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
70 |
71 | /// A "postcondition" aside.
72 | public static let postcondition = Kind(rawValue: "Postcondition")!
| |- warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'postcondition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |
74 | /// A "precondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:75:27: warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
73 |
74 | /// A "precondition" aside.
75 | public static let precondition = Kind(rawValue: "Precondition")!
| |- warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'precondition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 |
77 | /// A "remark" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:78:27: warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
76 |
77 | /// A "remark" aside.
78 | public static let remark = Kind(rawValue: "Remark")!
| |- warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'remark' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | /// A "requires" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:81:27: warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
79 |
80 | /// A "requires" aside.
81 | public static let requires = Kind(rawValue: "Requires")!
| |- warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'requires' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /// A "since" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:84:27: warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
82 |
83 | /// A "since" aside.
84 | public static let since = Kind(rawValue: "Since")!
| |- warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'since' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 |
86 | /// A "todo" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:87:27: warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
85 |
86 | /// A "todo" aside.
87 | public static let todo = Kind(rawValue: "ToDo")!
| |- warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'todo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// A "version" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:90:27: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
88 |
89 | /// A "version" aside.
90 | public static let version = Kind(rawValue: "Version")!
| |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'version' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | /// A "throws" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:93:27: warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
91 |
92 | /// A "throws" aside.
93 | public static let `throws` = Kind(rawValue: "Throws")!
| |- warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'throws' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |
95 | /// A collection of preconfigured aside kinds.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
18 |
19 | /// Enable block directive syntax.
20 | public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
| |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseBlockDirectives' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 | public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
| |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseSymbolLinks' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:27:27: warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
| |- warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'note' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// A "tip" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:30:27: warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
28 |
29 | /// A "tip" aside.
30 | public static let tip = Kind(rawValue: "Tip")!
| |- warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// An "important" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:33:27: warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
31 |
32 | /// An "important" aside.
33 | public static let important = Kind(rawValue: "Important")!
| |- warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'important' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | /// An "experiment" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:36:27: warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
34 |
35 | /// An "experiment" aside.
36 | public static let experiment = Kind(rawValue: "Experiment")!
| |- warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'experiment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// A "warning" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:39:27: warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
37 |
38 | /// A "warning" aside.
39 | public static let warning = Kind(rawValue: "Warning")!
| |- warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | /// An "attention" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:42:27: warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
40 |
41 | /// An "attention" aside.
42 | public static let attention = Kind(rawValue: "Attention")!
| |- warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'attention' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | /// An "author" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:45:27: warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
43 |
44 | /// An "author" aside.
45 | public static let author = Kind(rawValue: "Author")!
| |- warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'author' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | /// An "authors" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:48:27: warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
46 |
47 | /// An "authors" aside.
48 | public static let authors = Kind(rawValue: "Authors")!
| |- warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'authors' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | /// A "bug" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:51:27: warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
49 |
50 | /// A "bug" aside.
51 | public static let bug = Kind(rawValue: "Bug")!
| |- warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bug' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /// A "complexity" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:54:27: warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
52 |
53 | /// A "complexity" aside.
54 | public static let complexity = Kind(rawValue: "Complexity")!
| |- warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'complexity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 | /// A "copyright" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:57:27: warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
55 |
56 | /// A "copyright" aside.
57 | public static let copyright = Kind(rawValue: "Copyright")!
| |- warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'copyright' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 | /// A "date" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:60:27: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
58 |
59 | /// A "date" aside.
60 | public static let date = Kind(rawValue: "Date")!
| |- warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// An "invariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:63:27: warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
61 |
62 | /// An "invariant" aside.
63 | public static let invariant = Kind(rawValue: "Invariant")!
| |- warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'invariant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | /// A "mutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:66:27: warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
64 |
65 | /// A "mutatingVariant" aside.
66 | public static let mutatingVariant = Kind(rawValue: "MutatingVariant")!
| |- warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'mutatingVariant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 | /// A "nonMutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:69:27: warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
67 |
68 | /// A "nonMutatingVariant" aside.
69 | public static let nonMutatingVariant = Kind(rawValue: "NonMutatingVariant")!
| |- warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nonMutatingVariant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 | /// A "postcondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:72:27: warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
70 |
71 | /// A "postcondition" aside.
72 | public static let postcondition = Kind(rawValue: "Postcondition")!
| |- warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'postcondition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |
74 | /// A "precondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:75:27: warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
73 |
74 | /// A "precondition" aside.
75 | public static let precondition = Kind(rawValue: "Precondition")!
| |- warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'precondition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 |
77 | /// A "remark" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:78:27: warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
76 |
77 | /// A "remark" aside.
78 | public static let remark = Kind(rawValue: "Remark")!
| |- warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'remark' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | /// A "requires" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:81:27: warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
79 |
80 | /// A "requires" aside.
81 | public static let requires = Kind(rawValue: "Requires")!
| |- warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'requires' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /// A "since" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:84:27: warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
82 |
83 | /// A "since" aside.
84 | public static let since = Kind(rawValue: "Since")!
| |- warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'since' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 |
86 | /// A "todo" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:87:27: warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
85 |
86 | /// A "todo" aside.
87 | public static let todo = Kind(rawValue: "ToDo")!
| |- warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'todo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// A "version" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:90:27: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
88 |
89 | /// A "version" aside.
90 | public static let version = Kind(rawValue: "Version")!
| |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'version' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | /// A "throws" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:93:27: warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
91 |
92 | /// A "throws" aside.
93 | public static let `throws` = Kind(rawValue: "Throws")!
| |- warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'throws' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |
95 | /// A collection of preconfigured aside kinds.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
18 |
19 | /// Enable block directive syntax.
20 | public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
| |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseBlockDirectives' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 | public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
| |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseSymbolLinks' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:27:27: warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
| |- warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'note' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// A "tip" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:30:27: warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
28 |
29 | /// A "tip" aside.
30 | public static let tip = Kind(rawValue: "Tip")!
| |- warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// An "important" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:33:27: warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
31 |
32 | /// An "important" aside.
33 | public static let important = Kind(rawValue: "Important")!
| |- warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'important' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | /// An "experiment" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:36:27: warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
34 |
35 | /// An "experiment" aside.
36 | public static let experiment = Kind(rawValue: "Experiment")!
| |- warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'experiment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// A "warning" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:39:27: warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
37 |
38 | /// A "warning" aside.
39 | public static let warning = Kind(rawValue: "Warning")!
| |- warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | /// An "attention" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:42:27: warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
40 |
41 | /// An "attention" aside.
42 | public static let attention = Kind(rawValue: "Attention")!
| |- warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'attention' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | /// An "author" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:45:27: warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
43 |
44 | /// An "author" aside.
45 | public static let author = Kind(rawValue: "Author")!
| |- warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'author' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | /// An "authors" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:48:27: warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
46 |
47 | /// An "authors" aside.
48 | public static let authors = Kind(rawValue: "Authors")!
| |- warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'authors' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | /// A "bug" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:51:27: warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
49 |
50 | /// A "bug" aside.
51 | public static let bug = Kind(rawValue: "Bug")!
| |- warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bug' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /// A "complexity" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:54:27: warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
52 |
53 | /// A "complexity" aside.
54 | public static let complexity = Kind(rawValue: "Complexity")!
| |- warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'complexity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 | /// A "copyright" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:57:27: warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
55 |
56 | /// A "copyright" aside.
57 | public static let copyright = Kind(rawValue: "Copyright")!
| |- warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'copyright' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 | /// A "date" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:60:27: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
58 |
59 | /// A "date" aside.
60 | public static let date = Kind(rawValue: "Date")!
| |- warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// An "invariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:63:27: warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
61 |
62 | /// An "invariant" aside.
63 | public static let invariant = Kind(rawValue: "Invariant")!
| |- warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'invariant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | /// A "mutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:66:27: warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
64 |
65 | /// A "mutatingVariant" aside.
66 | public static let mutatingVariant = Kind(rawValue: "MutatingVariant")!
| |- warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'mutatingVariant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 | /// A "nonMutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:69:27: warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
67 |
68 | /// A "nonMutatingVariant" aside.
69 | public static let nonMutatingVariant = Kind(rawValue: "NonMutatingVariant")!
| |- warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nonMutatingVariant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 | /// A "postcondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:72:27: warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
70 |
71 | /// A "postcondition" aside.
72 | public static let postcondition = Kind(rawValue: "Postcondition")!
| |- warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'postcondition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |
74 | /// A "precondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:75:27: warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
73 |
74 | /// A "precondition" aside.
75 | public static let precondition = Kind(rawValue: "Precondition")!
| |- warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'precondition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 |
77 | /// A "remark" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:78:27: warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
76 |
77 | /// A "remark" aside.
78 | public static let remark = Kind(rawValue: "Remark")!
| |- warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'remark' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | /// A "requires" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:81:27: warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
79 |
80 | /// A "requires" aside.
81 | public static let requires = Kind(rawValue: "Requires")!
| |- warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'requires' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /// A "since" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:84:27: warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
82 |
83 | /// A "since" aside.
84 | public static let since = Kind(rawValue: "Since")!
| |- warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'since' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 |
86 | /// A "todo" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:87:27: warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
85 |
86 | /// A "todo" aside.
87 | public static let todo = Kind(rawValue: "ToDo")!
| |- warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'todo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// A "version" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:90:27: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
88 |
89 | /// A "version" aside.
90 | public static let version = Kind(rawValue: "Version")!
| |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'version' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | /// A "throws" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:93:27: warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
91 |
92 | /// A "throws" aside.
93 | public static let `throws` = Kind(rawValue: "Throws")!
| |- warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'throws' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |
95 | /// A collection of preconfigured aside kinds.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
18 |
19 | /// Enable block directive syntax.
20 | public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
| |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseBlockDirectives' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 | public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
| |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseSymbolLinks' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
[95/153] Compiling Markdown CharacterExtensions.swift
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupFormatter.swift:290:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' may have shared mutable state; this is an error in the Swift 6 language mode
102 | Formatting options for Markdown, based on [CommonMark](https://commonmark.org).
103 | */
104 | public struct Options {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
105 | /**
106 | The marker character to use for unordered lists.
:
288 |
289 | /// The default set of formatting options.
290 | public static let `default` = Options()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' 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
291 | }
292 |
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:28:23: warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
26 |
27 | /// Include source locations and ranges of each element in the dump.
28 | public static let printSourceLocations = MarkupDumpOptions(rawValue: 1 << 0)
| |- warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printSourceLocations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Include internal unique identifiers of each element in the dump.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:31:23: warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
29 |
30 | /// Include internal unique identifiers of each element in the dump.
31 | public static let printUniqueIdentifiers = MarkupDumpOptions(rawValue: 1 << 1)
| |- warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printUniqueIdentifiers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /// Print all optional information about a markup tree.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:34:23: warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
32 |
33 | /// Print all optional information about a markup tree.
34 | public static let printEverything: MarkupDumpOptions = [
| |- warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printEverything' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | .printSourceLocations,
36 | .printUniqueIdentifiers,
[96/153] Compiling Markdown CollectionExtensions.swift
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupFormatter.swift:290:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' may have shared mutable state; this is an error in the Swift 6 language mode
102 | Formatting options for Markdown, based on [CommonMark](https://commonmark.org).
103 | */
104 | public struct Options {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
105 | /**
106 | The marker character to use for unordered lists.
:
288 |
289 | /// The default set of formatting options.
290 | public static let `default` = Options()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' 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
291 | }
292 |
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:28:23: warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
26 |
27 | /// Include source locations and ranges of each element in the dump.
28 | public static let printSourceLocations = MarkupDumpOptions(rawValue: 1 << 0)
| |- warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printSourceLocations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Include internal unique identifiers of each element in the dump.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:31:23: warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
29 |
30 | /// Include internal unique identifiers of each element in the dump.
31 | public static let printUniqueIdentifiers = MarkupDumpOptions(rawValue: 1 << 1)
| |- warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printUniqueIdentifiers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /// Print all optional information about a markup tree.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:34:23: warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
32 |
33 | /// Print all optional information about a markup tree.
34 | public static let printEverything: MarkupDumpOptions = [
| |- warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printEverything' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | .printSourceLocations,
36 | .printUniqueIdentifiers,
[97/153] Compiling Markdown StringExtensions.swift
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupFormatter.swift:290:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' may have shared mutable state; this is an error in the Swift 6 language mode
102 | Formatting options for Markdown, based on [CommonMark](https://commonmark.org).
103 | */
104 | public struct Options {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
105 | /**
106 | The marker character to use for unordered lists.
:
288 |
289 | /// The default set of formatting options.
290 | public static let `default` = Options()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' 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
291 | }
292 |
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:28:23: warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
26 |
27 | /// Include source locations and ranges of each element in the dump.
28 | public static let printSourceLocations = MarkupDumpOptions(rawValue: 1 << 0)
| |- warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printSourceLocations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Include internal unique identifiers of each element in the dump.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:31:23: warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
29 |
30 | /// Include internal unique identifiers of each element in the dump.
31 | public static let printUniqueIdentifiers = MarkupDumpOptions(rawValue: 1 << 1)
| |- warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printUniqueIdentifiers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /// Print all optional information about a markup tree.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:34:23: warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
32 |
33 | /// Print all optional information about a markup tree.
34 | public static let printEverything: MarkupDumpOptions = [
| |- warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printEverything' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | .printSourceLocations,
36 | .printUniqueIdentifiers,
[98/153] Compiling Markdown MarkupVisitor.swift
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupFormatter.swift:290:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' may have shared mutable state; this is an error in the Swift 6 language mode
102 | Formatting options for Markdown, based on [CommonMark](https://commonmark.org).
103 | */
104 | public struct Options {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
105 | /**
106 | The marker character to use for unordered lists.
:
288 |
289 | /// The default set of formatting options.
290 | public static let `default` = Options()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' 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
291 | }
292 |
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:28:23: warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
26 |
27 | /// Include source locations and ranges of each element in the dump.
28 | public static let printSourceLocations = MarkupDumpOptions(rawValue: 1 << 0)
| |- warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printSourceLocations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Include internal unique identifiers of each element in the dump.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:31:23: warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
29 |
30 | /// Include internal unique identifiers of each element in the dump.
31 | public static let printUniqueIdentifiers = MarkupDumpOptions(rawValue: 1 << 1)
| |- warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printUniqueIdentifiers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /// Print all optional information about a markup tree.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:34:23: warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
32 |
33 | /// Print all optional information about a markup tree.
34 | public static let printEverything: MarkupDumpOptions = [
| |- warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printEverything' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | .printSourceLocations,
36 | .printUniqueIdentifiers,
[99/153] Compiling Markdown MarkupWalker.swift
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupFormatter.swift:290:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' may have shared mutable state; this is an error in the Swift 6 language mode
102 | Formatting options for Markdown, based on [CommonMark](https://commonmark.org).
103 | */
104 | public struct Options {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
105 | /**
106 | The marker character to use for unordered lists.
:
288 |
289 | /// The default set of formatting options.
290 | public static let `default` = Options()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' 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
291 | }
292 |
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:28:23: warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
26 |
27 | /// Include source locations and ranges of each element in the dump.
28 | public static let printSourceLocations = MarkupDumpOptions(rawValue: 1 << 0)
| |- warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printSourceLocations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Include internal unique identifiers of each element in the dump.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:31:23: warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
29 |
30 | /// Include internal unique identifiers of each element in the dump.
31 | public static let printUniqueIdentifiers = MarkupDumpOptions(rawValue: 1 << 1)
| |- warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printUniqueIdentifiers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /// Print all optional information about a markup tree.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:34:23: warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
32 |
33 | /// Print all optional information about a markup tree.
34 | public static let printEverything: MarkupDumpOptions = [
| |- warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printEverything' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | .printSourceLocations,
36 | .printUniqueIdentifiers,
[100/153] Compiling Markdown MarkupFormatter.swift
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupFormatter.swift:290:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' may have shared mutable state; this is an error in the Swift 6 language mode
102 | Formatting options for Markdown, based on [CommonMark](https://commonmark.org).
103 | */
104 | public struct Options {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
105 | /**
106 | The marker character to use for unordered lists.
:
288 |
289 | /// The default set of formatting options.
290 | public static let `default` = Options()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' 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
291 | }
292 |
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:28:23: warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
26 |
27 | /// Include source locations and ranges of each element in the dump.
28 | public static let printSourceLocations = MarkupDumpOptions(rawValue: 1 << 0)
| |- warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printSourceLocations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Include internal unique identifiers of each element in the dump.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:31:23: warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
29 |
30 | /// Include internal unique identifiers of each element in the dump.
31 | public static let printUniqueIdentifiers = MarkupDumpOptions(rawValue: 1 << 1)
| |- warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printUniqueIdentifiers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /// Print all optional information about a markup tree.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:34:23: warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
32 |
33 | /// Print all optional information about a markup tree.
34 | public static let printEverything: MarkupDumpOptions = [
| |- warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printEverything' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | .printSourceLocations,
36 | .printUniqueIdentifiers,
[101/153] Compiling Markdown MarkupTreeDumper.swift
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupFormatter.swift:290:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' may have shared mutable state; this is an error in the Swift 6 language mode
102 | Formatting options for Markdown, based on [CommonMark](https://commonmark.org).
103 | */
104 | public struct Options {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
105 | /**
106 | The marker character to use for unordered lists.
:
288 |
289 | /// The default set of formatting options.
290 | public static let `default` = Options()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'MarkupFormatter.Options' 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
291 | }
292 |
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:28:23: warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
26 |
27 | /// Include source locations and ranges of each element in the dump.
28 | public static let printSourceLocations = MarkupDumpOptions(rawValue: 1 << 0)
| |- warning: static property 'printSourceLocations' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printSourceLocations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Include internal unique identifiers of each element in the dump.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:31:23: warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
29 |
30 | /// Include internal unique identifiers of each element in the dump.
31 | public static let printUniqueIdentifiers = MarkupDumpOptions(rawValue: 1 << 1)
| |- warning: static property 'printUniqueIdentifiers' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printUniqueIdentifiers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /// Print all optional information about a markup tree.
/host/spi-builder-workspace/Sources/Markdown/Walker/Walkers/MarkupTreeDumper.swift:34:23: warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Options when printing a debug description of a markup tree.
21 | public struct MarkupDumpOptions: OptionSet {
| `- note: consider making struct 'MarkupDumpOptions' conform to the 'Sendable' protocol
22 | public let rawValue: UInt
23 | public init(rawValue: UInt) {
:
32 |
33 | /// Print all optional information about a markup tree.
34 | public static let printEverything: MarkupDumpOptions = [
| |- warning: static property 'printEverything' is not concurrency-safe because non-'Sendable' type 'MarkupDumpOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'printEverything' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | .printSourceLocations,
36 | .printUniqueIdentifiers,
[103/153] Compiling ArgumentParser BashCompletionsGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[104/153] Compiling ArgumentParser CompletionsGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[105/153] Compiling ArgumentParser FishCompletionsGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[106/153] Compiling ArgumentParser ZshCompletionsGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[107/153] Compiling ArgumentParser Argument.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[108/153] Compiling ArgumentParser ParsedValues.swift
[109/153] Compiling ArgumentParser ParserError.swift
[110/153] Compiling ArgumentParser SplitArguments.swift
[111/153] Compiling ArgumentParser DumpHelpGenerator.swift
[112/153] Compiling ArgumentParser ParsableArguments.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
/host/spi-builder-workspace/Sources/Markdown/Base/RawMarkup.swift:80:14: warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
76 | }
77 |
78 | final class RawMarkup: ManagedBuffer<RawMarkupHeader, RawMarkup> {
| `- note: class 'RawMarkup' does not conform to the 'Sendable' protocol
79 | enum Error: LocalizedError {
80 | case concreteConversionError(from: RawMarkup, to: Markup.Type)
| `- warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
81 | var errorDescription: String? {
82 | switch self {
/host/spi-builder-workspace/Sources/Markdown/Base/RawMarkup.swift:80:14: warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
76 | }
77 |
78 | final class RawMarkup: ManagedBuffer<RawMarkupHeader, RawMarkup> {
| `- note: class 'RawMarkup' does not conform to the 'Sendable' protocol
79 | enum Error: LocalizedError {
80 | case concreteConversionError(from: RawMarkup, to: Markup.Type)
| `- warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
81 | var errorDescription: String? {
82 | switch self {
/host/spi-builder-workspace/Sources/Markdown/Base/RawMarkup.swift:80:14: warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
76 | }
77 |
78 | final class RawMarkup: ManagedBuffer<RawMarkupHeader, RawMarkup> {
| `- note: class 'RawMarkup' does not conform to the 'Sendable' protocol
79 | enum Error: LocalizedError {
80 | case concreteConversionError(from: RawMarkup, to: Markup.Type)
| `- warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
81 | var errorDescription: String? {
82 | switch self {
/host/spi-builder-workspace/Sources/Markdown/Base/RawMarkup.swift:80:14: warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
76 | }
77 |
78 | final class RawMarkup: ManagedBuffer<RawMarkupHeader, RawMarkup> {
| `- note: class 'RawMarkup' does not conform to the 'Sendable' protocol
79 | enum Error: LocalizedError {
80 | case concreteConversionError(from: RawMarkup, to: Markup.Type)
| `- warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
81 | var errorDescription: String? {
82 | switch self {
/host/spi-builder-workspace/Sources/Markdown/Base/RawMarkup.swift:80:14: warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
76 | }
77 |
78 | final class RawMarkup: ManagedBuffer<RawMarkupHeader, RawMarkup> {
| `- note: class 'RawMarkup' does not conform to the 'Sendable' protocol
79 | enum Error: LocalizedError {
80 | case concreteConversionError(from: RawMarkup, to: Markup.Type)
| `- warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
81 | var errorDescription: String? {
82 | switch self {
/host/spi-builder-workspace/Sources/Markdown/Base/RawMarkup.swift:80:14: warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
76 | }
77 |
78 | final class RawMarkup: ManagedBuffer<RawMarkupHeader, RawMarkup> {
| `- note: class 'RawMarkup' does not conform to the 'Sendable' protocol
79 | enum Error: LocalizedError {
80 | case concreteConversionError(from: RawMarkup, to: Markup.Type)
| `- warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
81 | var errorDescription: String? {
82 | switch self {
/host/spi-builder-workspace/Sources/Markdown/Base/RawMarkup.swift:80:14: warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
76 | }
77 |
78 | final class RawMarkup: ManagedBuffer<RawMarkupHeader, RawMarkup> {
| `- note: class 'RawMarkup' does not conform to the 'Sendable' protocol
79 | enum Error: LocalizedError {
80 | case concreteConversionError(from: RawMarkup, to: Markup.Type)
| `- warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
81 | var errorDescription: String? {
82 | switch self {
/host/spi-builder-workspace/Sources/Markdown/Base/RawMarkup.swift:80:14: warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
76 | }
77 |
78 | final class RawMarkup: ManagedBuffer<RawMarkupHeader, RawMarkup> {
| `- note: class 'RawMarkup' does not conform to the 'Sendable' protocol
79 | enum Error: LocalizedError {
80 | case concreteConversionError(from: RawMarkup, to: Markup.Type)
| `- warning: associated value 'concreteConversionError(from:to:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'RawMarkup'; this is an error in the Swift 6 language mode
81 | var errorDescription: String? {
82 | switch self {
[138/153] Compiling Markdown InlineMarkup.swift
[139/153] Compiling Markdown ListItemContainer.swift
[140/153] Compiling Markdown AtomicCounter.swift
[141/153] Compiling Markdown TableHead.swift
[142/153] Compiling Markdown TableRow.swift
[143/153] Compiling Markdown Replacement.swift
[144/153] Compiling Markdown SourceLocation.swift
[145/153] Compiling Markdown Emphasis.swift
[146/153] Compiling Markdown Image.swift
[147/153] Compiling Markdown Link.swift
[148/153] Compiling Markdown Strikethrough.swift
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 Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/9] Write swift-version-24593BA9C3E375BF.txt
[4/68] Emitting module ArgumentParserToolInfo
[5/68] Compiling Markdown BasicBlockContainer.swift
[6/68] Compiling Markdown BasicInlineContainer.swift
[7/68] Compiling Markdown BlockContainer.swift
[8/68] Compiling Markdown BlockMarkup.swift
[9/68] Compiling Markdown InlineContainer.swift
[10/68] Compiling Markdown InlineMarkup.swift
[11/68] Compiling Markdown ListItemContainer.swift
[12/68] Compiling Markdown AtomicCounter.swift
[13/75] Compiling ArgumentParserToolInfo ToolInfo.swift
[15/76] Compiling Markdown CodeBlock.swift
[16/76] Compiling Markdown HTMLBlock.swift
[17/76] Compiling Markdown Heading.swift
[18/76] Compiling Markdown ThematicBreak.swift
[19/76] Compiling Markdown Table.swift
[20/76] Compiling Markdown TableBody.swift
[21/76] Compiling Markdown TableCell.swift
[22/76] Compiling Markdown TableCellContainer.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[23/109] Emitting module ArgumentParser
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:66:40: error: cannot find 'EXIT_FAILURE' in scope
64 |
65 | /// An exit code that indicates that the command failed.
66 | public static let failure = ExitCode(EXIT_FAILURE)
| `- error: cannot find 'EXIT_FAILURE' in scope
67 |
68 | /// An exit code that indicates that the user provided invalid input.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
[24/109] Compiling ArgumentParser Flag.swift
[25/109] Compiling ArgumentParser NameSpecification.swift
[26/109] Compiling ArgumentParser ParsedValues.swift
[27/109] Compiling ArgumentParser ParserError.swift
[28/109] Compiling ArgumentParser SplitArguments.swift
[29/109] Compiling ArgumentParser DumpHelpGenerator.swift
[30/109] Compiling ArgumentParser HelpCommand.swift
[31/109] Compiling ArgumentParser HelpGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:348:11: error: cannot find 'winsize' in scope
346 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
347 | #else
348 | var w = winsize()
| `- error: cannot find 'winsize' in scope
349 | #if os(OpenBSD)
350 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:13: error: cannot find 'ioctl' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:19: error: cannot find 'STDOUT_FILENO' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:34: error: cannot find 'TIOCGWINSZ' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:348:11: error: cannot find 'winsize' in scope
346 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
347 | #else
348 | var w = winsize()
| `- error: cannot find 'winsize' in scope
349 | #if os(OpenBSD)
350 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:13: error: cannot find 'ioctl' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:19: error: cannot find 'STDOUT_FILENO' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:34: error: cannot find 'TIOCGWINSZ' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
[34/113] Compiling ArgumentParser MessageInfo.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:348:11: error: cannot find 'winsize' in scope
346 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
347 | #else
348 | var w = winsize()
| `- error: cannot find 'winsize' in scope
349 | #if os(OpenBSD)
350 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:13: error: cannot find 'ioctl' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:19: error: cannot find 'STDOUT_FILENO' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:34: error: cannot find 'TIOCGWINSZ' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
[35/113] Compiling ArgumentParser UsageGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:348:11: error: cannot find 'winsize' in scope
346 | height: Int(csbi.srWindow.Bottom - csbi.srWindow.Top) + 1)
347 | #else
348 | var w = winsize()
| `- error: cannot find 'winsize' in scope
349 | #if os(OpenBSD)
350 | // TIOCGWINSZ is a complex macro, so we need the flattened value.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:13: error: cannot find 'ioctl' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'ioctl' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:19: error: cannot find 'STDOUT_FILENO' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'STDOUT_FILENO' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift:354:34: error: cannot find 'TIOCGWINSZ' in scope
352 | let err = ioctl(STDOUT_FILENO, tiocgwinsz, &w)
353 | #else
354 | let err = ioctl(STDOUT_FILENO, TIOCGWINSZ, &w)
| `- error: cannot find 'TIOCGWINSZ' in scope
355 | #endif
356 | let width = Int(w.ws_col)
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
[36/113] Compiling ArgumentParser BashCompletionsGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[37/113] Compiling ArgumentParser CompletionsGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[38/113] Compiling ArgumentParser FishCompletionsGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[39/113] Compiling ArgumentParser ZshCompletionsGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[40/113] Compiling ArgumentParser Argument.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift:51:26: error: cannot find 'getenv' in scope
49 | #else
50 | // FIXME: This retrieves the user's preferred shell, not necessarily the one currently in use.
51 | guard let shellVar = getenv("SHELL") else { return nil }
| `- error: cannot find 'getenv' in scope
52 | let shellParts = String(cString: shellVar).split(separator: "/")
53 | return CompletionShell(rawValue: String(shellParts.last ?? ""))
[41/113] Emitting module Markdown
[47/113] Compiling ArgumentParser ArgumentHelp.swift
[48/113] Compiling ArgumentParser CompletionKind.swift
[49/113] Compiling ArgumentParser Errors.swift
[50/113] Compiling ArgumentParser Option.swift
[51/113] Compiling ArgumentParser OptionGroup.swift
[52/113] Compiling ArgumentParser CommandConfiguration.swift
[53/113] Compiling ArgumentParser EnumerableFlag.swift
[54/113] Compiling ArgumentParser ExpressibleByArgument.swift
[55/113] Compiling Markdown CharacterExtensions.swift
[56/113] Compiling Markdown CollectionExtensions.swift
[57/113] Compiling Markdown StringExtensions.swift
[58/113] Compiling Markdown MarkupVisitor.swift
[59/113] Compiling Markdown MarkupWalker.swift
[60/113] Compiling Markdown MarkupFormatter.swift
[61/113] Compiling Markdown MarkupTreeDumper.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:66:40: error: cannot find 'EXIT_FAILURE' in scope
64 |
65 | /// An exit code that indicates that the command failed.
66 | public static let failure = ExitCode(EXIT_FAILURE)
| `- error: cannot find 'EXIT_FAILURE' in scope
67 |
68 | /// An exit code that indicates that the user provided invalid input.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:66:40: error: cannot find 'EXIT_FAILURE' in scope
64 |
65 | /// An exit code that indicates that the command failed.
66 | public static let failure = ExitCode(EXIT_FAILURE)
| `- error: cannot find 'EXIT_FAILURE' in scope
67 |
68 | /// An exit code that indicates that the user provided invalid input.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:66:40: error: cannot find 'EXIT_FAILURE' in scope
64 |
65 | /// An exit code that indicates that the command failed.
66 | public static let failure = ExitCode(EXIT_FAILURE)
| `- error: cannot find 'EXIT_FAILURE' in scope
67 |
68 | /// An exit code that indicates that the user provided invalid input.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:66:40: error: cannot find 'EXIT_FAILURE' in scope
64 |
65 | /// An exit code that indicates that the command failed.
66 | public static let failure = ExitCode(EXIT_FAILURE)
| `- error: cannot find 'EXIT_FAILURE' in scope
67 |
68 | /// An exit code that indicates that the user provided invalid input.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:66:40: error: cannot find 'EXIT_FAILURE' in scope
64 |
65 | /// An exit code that indicates that the command failed.
66 | public static let failure = ExitCode(EXIT_FAILURE)
| `- error: cannot find 'EXIT_FAILURE' in scope
67 |
68 | /// An exit code that indicates that the user provided invalid input.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:74:50: error: cannot find 'EX_USAGE' in scope
72 | public static let validationFailure = ExitCode(EXIT_FAILURE)
73 | #else
74 | public static let validationFailure = ExitCode(EX_USAGE)
| `- error: cannot find 'EX_USAGE' in scope
75 | #endif
76 |
[71/113] Compiling ArgumentParser CollectionExtensions.swift
[72/113] Compiling ArgumentParser SequenceExtensions.swift
[73/113] Compiling ArgumentParser StringExtensions.swift
[74/113] Compiling ArgumentParser Tree.swift
[75/113] Compiling ArgumentParser ArgumentSet.swift
[76/113] Compiling ArgumentParser CommandParser.swift
[77/113] Compiling ArgumentParser InputOrigin.swift
[78/113] Compiling ArgumentParser Name.swift
[79/113] Compiling ArgumentParser Parsed.swift
[80/113] Compiling ArgumentParser ParsableArguments.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
[81/113] Compiling ArgumentParser ParsableArgumentsValidation.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
[82/113] Compiling ArgumentParser ParsableCommand.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
[83/113] Compiling ArgumentParser ArgumentDecoder.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
[84/113] Compiling ArgumentParser ArgumentDefinition.swift
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:31: error: cannot find 'putc' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'putc' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:55: error: cannot find 'stderr' in scope
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: cannot find 'stderr' in scope
66 | }
67 | }
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:65:36: error: generic parameter 'U' could not be inferred
63 | struct StandardError: TextOutputStream {
64 | mutating func write(_ string: String) {
65 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- error: generic parameter 'U' could not be inferred
66 | }
67 | }
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/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:187:7: error: cannot find '_exit' in scope
185 | ) -> Never {
186 | guard let error = error else {
187 | _exit(ExitCode.success.rawValue)
| `- error: cannot find '_exit' in scope
188 | }
189 |
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Properties/Errors.swift:63:40: error: cannot find 'EXIT_SUCCESS' in scope
61 |
62 | /// An exit code that indicates successful completion of a command.
63 | public static let success = ExitCode(EXIT_SUCCESS)
| `- error: cannot find 'EXIT_SUCCESS' in scope
64 |
65 | /// An exit code that indicates that the command failed.
/host/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift:199:5: error: cannot find '_exit' in scope
197 | }
198 | }
199 | _exit(messageInfo.exitCode.rawValue)
| `- error: cannot find '_exit' in scope
200 | }
201 |
[85/113] Compiling Markdown Strong.swift
[86/113] Compiling Markdown CustomInline.swift
[87/113] Compiling Markdown InlineCode.swift
[88/113] Compiling Markdown InlineHTML.swift
[89/113] Compiling Markdown LineBreak.swift
[90/113] Compiling Markdown SoftBreak.swift
[91/113] Compiling Markdown SymbolLink.swift
[92/113] Compiling Markdown Text.swift
[98/113] Compiling Markdown RangeAdjuster.swift
[99/113] Compiling Markdown RangerTracker.swift
[100/113] Compiling Markdown MarkupRewriter.swift
BUILD FAILURE 6.1 android