Build Information
Failed to build swift-markdown, reference main (83188d
), with Swift 6.1 for Android on 29 May 2025 02:45:57 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/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
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/shaps80/swift-markdown.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/shaps80/swift-markdown
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 83188de Updates package to depend on my own fork
Cloned https://github.com/shaps80/swift-markdown.git
Revision (git rev-parse @):
83188dee2dbccfa70124c56055dd0b759d3e4ec3
SUCCESS checkout https://github.com/shaps80/swift-markdown.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/shaps80/swift-markdown.git
https://github.com/shaps80/swift-markdown.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-cmark",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.0",
"upper_bound" : "0.3.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/shaps80/swift-cmark.git"
},
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "1.1.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "swift-markdown",
"name" : "swift-markdown",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Markdown",
"targets" : [
"Markdown"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "markdown-tool",
"targets" : [
"markdown-tool"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "markdown_tool",
"module_type" : "SwiftTarget",
"name" : "markdown-tool",
"path" : "Sources/markdown-tool",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"markdown-tool"
],
"sources" : [
"Commands/DumpTreeCommand.swift",
"Commands/FormatCommand.swift",
"main.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "executable"
},
{
"c99name" : "MarkdownTests",
"module_type" : "SwiftTarget",
"name" : "MarkdownTests",
"path" : "Tests/MarkdownTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/MarkdownTests/Visitors/Everything.md",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Base/AtomicCounterTests.swift",
"Base/HierarchyTests.swift",
"Base/MarkupIdentifierTests.swift",
"Base/MarkupTests.swift",
"Base/ParsedRangePreservedAfterEditing.swift",
"Base/PlainTextConvertibleMarkupTests.swift",
"Base/RawMarkupTests.swift",
"Base/RawMarkupToMarkupTests.swift",
"Base/StableIdentifierTests.swift",
"Block Nodes/CodeBlockTests.swift",
"Block Nodes/DocumentTests.swift",
"Block Nodes/HTMLBlockTests.swift",
"Block Nodes/HeadingTests.swift",
"Block Nodes/ParagraphTests.swift",
"Block Nodes/TableTests.swift",
"Infrastructure/SourceLoacationTests.swift",
"Inline Nodes/ImageTests.swift",
"Inline Nodes/InlineCodeTests.swift",
"Inline Nodes/InlineHTMLTests.swift",
"Inline Nodes/LineBreakTests.swift",
"Inline Nodes/LinkTests.swift",
"Inline Nodes/SoftBreakTests.swift",
"Inline Nodes/SymbolLinkTests.swift",
"Inline Nodes/TextTests.swift",
"Interpretive Nodes/AsideTests.swift",
"Parsing/BacktickTests.swift",
"Parsing/BlockDirectiveParserTests.swift",
"Parsing/CommonMarkConverterTests.swift",
"Parsing/SourceURLTests.swift",
"Performance/EditPerformanceTests.swift",
"Performance/MarkupChildrenPerformanceTests.swift",
"Structural Restrictions/BasicBlockContainerTests.swift",
"Structural Restrictions/BasicInlineContainerTests.swift",
"Structural Restrictions/ListItemContainerTests.swift",
"Utility/AssertElementDidntChange.swift",
"Visitors/MarkupFormatterTests.swift",
"Visitors/MarkupRewriterTests.swift",
"Visitors/MarkupTreeDumperTests.swift",
"Visitors/MarkupWalkerTests.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "test"
},
{
"c99name" : "Markdown",
"module_type" : "SwiftTarget",
"name" : "Markdown",
"path" : "Sources/Markdown",
"product_dependencies" : [
"cmark-gfm",
"cmark-gfm-extensions"
],
"product_memberships" : [
"Markdown",
"markdown-tool"
],
"sources" : [
"Base/ChildIndexPath.swift",
"Base/DirectiveArgument.swift",
"Base/Document.swift",
"Base/LiteralMarkup.swift",
"Base/Markup.swift",
"Base/MarkupChildren.swift",
"Base/MarkupData.swift",
"Base/PlainTextConvertibleMarkup.swift",
"Base/RawMarkup.swift",
"Block Nodes/Block Container Blocks/BlockDirective.swift",
"Block Nodes/Block Container Blocks/BlockQuote.swift",
"Block Nodes/Block Container Blocks/CustomBlock.swift",
"Block Nodes/Block Container Blocks/ListItem.swift",
"Block Nodes/Block Container Blocks/OrderedList.swift",
"Block Nodes/Block Container Blocks/UnorderedList.swift",
"Block Nodes/Inline Container Blocks/Paragraph.swift",
"Block Nodes/Leaf Blocks/CodeBlock.swift",
"Block Nodes/Leaf Blocks/HTMLBlock.swift",
"Block Nodes/Leaf Blocks/Heading.swift",
"Block Nodes/Leaf Blocks/ThematicBreak.swift",
"Block Nodes/Tables/Table.swift",
"Block Nodes/Tables/TableBody.swift",
"Block Nodes/Tables/TableCell.swift",
"Block Nodes/Tables/TableCellContainer.swift",
"Block Nodes/Tables/TableHead.swift",
"Block Nodes/Tables/TableRow.swift",
"Infrastructure/Replacement.swift",
"Infrastructure/SourceLocation.swift",
"Inline Nodes/Inline Containers/Emphasis.swift",
"Inline Nodes/Inline Containers/Image.swift",
"Inline Nodes/Inline Containers/Link.swift",
"Inline Nodes/Inline Containers/Strikethrough.swift",
"Inline Nodes/Inline Containers/Strong.swift",
"Inline Nodes/Inline Leaves/CustomInline.swift",
"Inline Nodes/Inline Leaves/InlineCode.swift",
"Inline Nodes/Inline Leaves/InlineHTML.swift",
"Inline Nodes/Inline Leaves/LineBreak.swift",
"Inline Nodes/Inline Leaves/SoftBreak.swift",
"Inline Nodes/Inline Leaves/SymbolLink.swift",
"Inline Nodes/Inline Leaves/Text.swift",
"Interpretive Nodes/Aside.swift",
"Parser/BlockDirectiveParser.swift",
"Parser/CommonMarkConverter.swift",
"Parser/LazySplitLines.swift",
"Parser/ParseOptions.swift",
"Parser/RangeAdjuster.swift",
"Parser/RangerTracker.swift",
"Rewriter/MarkupRewriter.swift",
"Structural Restrictions/BasicBlockContainer.swift",
"Structural Restrictions/BasicInlineContainer.swift",
"Structural Restrictions/BlockContainer.swift",
"Structural Restrictions/BlockMarkup.swift",
"Structural Restrictions/InlineContainer.swift",
"Structural Restrictions/InlineMarkup.swift",
"Structural Restrictions/ListItemContainer.swift",
"Utility/AtomicCounter.swift",
"Utility/CharacterExtensions.swift",
"Utility/CollectionExtensions.swift",
"Utility/StringExtensions.swift",
"Visitor/MarkupVisitor.swift",
"Walker/MarkupWalker.swift",
"Walker/Walkers/MarkupFormatter.swift",
"Walker/Walkers/MarkupTreeDumper.swift"
],
"target_dependencies" : [
"CAtomic"
],
"type" : "library"
},
{
"c99name" : "CAtomic",
"module_type" : "ClangTarget",
"name" : "CAtomic",
"path" : "Sources/CAtomic",
"product_memberships" : [
"Markdown",
"markdown-tool"
],
"sources" : [
"CAtomic.c"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 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
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/shaps80/swift-cmark.git
[1/12613] Fetching swift-cmark
[884/14662] Fetching swift-cmark, swift-docc-plugin
[14663/30013] Fetching swift-cmark, swift-docc-plugin, swift-argument-parser
Fetched https://github.com/apple/swift-docc-plugin from cache (1.19s)
Fetched https://github.com/shaps80/swift-cmark.git from cache (1.22s)
Fetched https://github.com/apple/swift-argument-parser from cache (1.22s)
Computing version for https://github.com/shaps80/swift-cmark.git
Computed https://github.com/shaps80/swift-cmark.git at 0.2.0 (2.06s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.0.3 (0.89s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.3 (0.67s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3391] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.40s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.99s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.0.3
Creating working copy for https://github.com/shaps80/swift-cmark.git
Working copy of https://github.com/shaps80/swift-cmark.git resolved at 0.2.0
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/48] Write sources
[3/48] Compiling cmark-gfm-extensions tagfilter.c
[4/48] Compiling cmark-gfm cmark.c
[5/48] Compiling cmark-gfm-extensions tasklist.c
[6/48] Compiling cmark-gfm-extensions strikethrough.c
[7/48] Compiling cmark-gfm buffer.c
[8/48] Compiling cmark-gfm-extensions core-extensions.c
[9/48] Compiling cmark-gfm-extensions table.c
[10/48] Compiling cmark-gfm-extensions ext_scanners.c
[11/48] Compiling cmark-gfm xml.c
[12/48] Compiling cmark-gfm-extensions autolink.c
[13/48] Compiling cmark-gfm syntax_extension.c
[14/48] Compiling cmark-gfm render.c
[15/48] Compiling cmark-gfm plugin.c
[16/48] Compiling cmark-gfm registry.c
[17/48] Compiling cmark-gfm references.c
[18/48] Compiling cmark-gfm map.c
[19/48] Compiling cmark-gfm utf8.c
[20/48] Write swift-version-24593BA9C3E375BF.txt
[21/48] Compiling CAtomic CAtomic.c
[22/48] Compiling cmark-gfm plaintext.c
[23/48] Compiling cmark-gfm man.c
[24/48] Compiling cmark-gfm linked_list.c
[25/48] Compiling cmark-gfm iterator.c
[26/48] Compiling cmark-gfm node.c
[27/48] Compiling cmark-gfm houdini_html_e.c
[28/48] Compiling cmark-gfm latex.c
[29/48] Compiling cmark-gfm html.c
[30/48] Compiling cmark-gfm houdini_href_e.c
[31/48] Compiling cmark-gfm cmark_ctype.c
[31/48] Write sources
[35/48] Compiling cmark-gfm footnotes.c
[36/48] Compiling cmark-gfm houdini_html_u.c
[37/48] Compiling cmark-gfm commonmark.c
[38/48] Compiling cmark-gfm arena.c
[39/48] Compiling cmark-gfm inlines.c
[40/48] Compiling cmark-gfm blocks.c
[41/48] Compiling cmark-gfm scanners.c
[43/107] Compiling ArgumentParserToolInfo ToolInfo.swift
[44/107] Emitting module ArgumentParserToolInfo
[45/108] Wrapping AST for ArgumentParserToolInfo for debugging
error: emit-module command failed with exit code 1 (use -v to see invocation)
[47/142] 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 |
[48/146] Compiling Markdown BasicBlockContainer.swift
[49/146] Compiling Markdown BasicInlineContainer.swift
[50/146] Compiling Markdown BlockContainer.swift
[51/146] Compiling Markdown BlockMarkup.swift
[52/146] Compiling Markdown InlineContainer.swift
[53/146] Compiling Markdown InlineMarkup.swift
[54/146] Compiling Markdown ListItemContainer.swift
[55/146] Compiling Markdown AtomicCounter.swift
[56/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 ?? ""))
[57/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 ?? ""))
[58/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 ?? ""))
[59/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 ?? ""))
[60/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 ?? ""))
[61/153] Emitting module Markdown
/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/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/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,
[62/153] Compiling ArgumentParser NameSpecification.swift
[63/153] Compiling ArgumentParser CollectionExtensions.swift
[64/153] Compiling ArgumentParser SequenceExtensions.swift
[65/153] Compiling ArgumentParser StringExtensions.swift
[66/153] Compiling ArgumentParser Tree.swift
[67/153] Compiling Markdown TableBody.swift
[68/153] Compiling Markdown TableCell.swift
[69/153] Compiling Markdown TableCellContainer.swift
[74/153] Compiling ArgumentParser Option.swift
[75/153] Compiling ArgumentParser OptionGroup.swift
[76/153] Compiling ArgumentParser CommandConfiguration.swift
[77/153] Compiling ArgumentParser EnumerableFlag.swift
[78/153] Compiling ArgumentParser ExpressibleByArgument.swift
[79/153] Compiling ArgumentParser HelpCommand.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 |
[80/153] 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 |
[81/153] 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 |
[82/153] 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 |
[83/153] Compiling ArgumentParser ArgumentHelp.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 |
[84/153] Compiling ArgumentParser CompletionKind.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 |
[85/153] Compiling ArgumentParser Errors.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 |
[86/153] Compiling ArgumentParser Flag.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 |
[88/153] Compiling ArgumentParser ParsedValues.swift
[89/153] Compiling ArgumentParser ParserError.swift
[90/153] Compiling ArgumentParser SplitArguments.swift
[91/153] Compiling ArgumentParser DumpHelpGenerator.swift
[92/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 |
[93/153] 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 |
[94/153] 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 |
[95/153] 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 |
[96/153] 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 |
[97/153] Compiling ArgumentParser ArgumentSet.swift
[98/153] Compiling ArgumentParser CommandParser.swift
[99/153] Compiling ArgumentParser InputOrigin.swift
[100/153] Compiling ArgumentParser Name.swift
[101/153] Compiling ArgumentParser Parsed.swift
/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 {
/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
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/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] Compiling Markdown BasicBlockContainer.swift
[5/68] Compiling Markdown BasicInlineContainer.swift
[6/68] Compiling Markdown BlockContainer.swift
[7/68] Compiling Markdown BlockMarkup.swift
[8/68] Compiling Markdown InlineContainer.swift
[9/68] Compiling Markdown InlineMarkup.swift
[10/68] Compiling Markdown ListItemContainer.swift
[11/68] Compiling Markdown AtomicCounter.swift
[12/75] Emitting module ArgumentParserToolInfo
[13/75] Compiling ArgumentParserToolInfo ToolInfo.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[15/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 |
[16/113] Compiling ArgumentParser Flag.swift
[17/113] Compiling ArgumentParser NameSpecification.swift
[18/113] Compiling ArgumentParser Option.swift
[19/113] Compiling ArgumentParser OptionGroup.swift
[20/113] Compiling ArgumentParser CommandConfiguration.swift
[21/113] Compiling ArgumentParser EnumerableFlag.swift
[22/113] Compiling ArgumentParser ExpressibleByArgument.swift
[23/113] Compiling ArgumentParser ParsableArguments.swift
[24/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 ?? ""))
[25/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 ?? ""))
[26/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 ?? ""))
[27/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 ?? ""))
[28/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 ?? ""))
[29/113] Compiling ArgumentParser ArgumentHelp.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 |
[30/113] Compiling ArgumentParser CompletionKind.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 |
[31/113] Compiling ArgumentParser Errors.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 |
[34/113] Compiling ArgumentParser HelpCommand.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 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 |
[36/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 |
[37/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 |
/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 |
[39/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 |
[40/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 |
[41/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 |
[42/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 |
[56/113] Compiling ArgumentParser ParsedValues.swift
[57/113] Compiling ArgumentParser ParserError.swift
[58/113] Compiling ArgumentParser SplitArguments.swift
[59/113] Compiling ArgumentParser DumpHelpGenerator.swift
[60/113] Compiling ArgumentParser CollectionExtensions.swift
[61/113] Compiling ArgumentParser SequenceExtensions.swift
[62/113] Compiling ArgumentParser StringExtensions.swift
[63/113] Compiling ArgumentParser Tree.swift
[64/113] Compiling ArgumentParser ArgumentSet.swift
[65/113] Compiling ArgumentParser CommandParser.swift
[66/113] Compiling ArgumentParser InputOrigin.swift
[67/113] Compiling ArgumentParser Name.swift
[68/113] Compiling ArgumentParser Parsed.swift
[77/113] Emitting module Markdown
[83/113] Compiling Markdown SoftBreak.swift
[84/113] Compiling Markdown SymbolLink.swift
[85/113] Compiling Markdown Text.swift
[86/113] Compiling Markdown RawMarkup.swift
[87/113] Compiling Markdown BlockDirective.swift
[88/113] Compiling Markdown BlockQuote.swift
[89/113] Compiling Markdown CustomBlock.swift
[90/113] Compiling Markdown ListItem.swift
[91/113] Compiling Markdown OrderedList.swift
[92/113] Compiling Markdown UnorderedList.swift
[93/113] Compiling Markdown Paragraph.swift
BUILD FAILURE 6.1 android