Build Information
Successful build of swift-experimental-string-processing, reference main (bc1397), with Swift 6.1 for Android on 20 Apr 2026 06:45:58 UTC.
Swift 6 data race errors: 9
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swiftlang/swift-experimental-string-processing.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/swiftlang/swift-experimental-string-processing
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at bc1397a Fix a concatenation coalescing issue (#859)
Cloned https://github.com/swiftlang/swift-experimental-string-processing.git
Revision (git rev-parse @):
bc1397a0113e1943d9ed77aebafe5bfbada30a70
SUCCESS checkout https://github.com/swiftlang/swift-experimental-string-processing.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/swiftlang/swift-experimental-string-processing.git
https://github.com/swiftlang/swift-experimental-string-processing.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/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 swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
Fetching https://github.com/apple/swift-argument-parser
[1/17529] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.08s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.7.1 (1.83s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.7.1
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/33] Write sources
[13/33] Compiling _CUnicode UnicodeData.c
[14/33] Compiling _CUnicode UnicodeScalarProps.c
[15/33] Write swift-version-24593BA9C3E375BF.txt
[17/66] Emitting module _RegexParser
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/DelimiterLexing.swift:96:14: warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
86 |
87 | public struct DelimiterLexError: Error, CustomStringConvertible {
88 | public enum Kind: Hashable {
| `- note: consider making enum 'Kind' conform to the 'Sendable' protocol
89 | case unterminated
90 | case invalidUTF8 // TODO: better range reporting
:
94 | }
95 |
96 | public var kind: Kind
| `- warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
97 |
98 | var resumeLocation: UnsafeSourceLocation
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/Diagnostics.swift:364:13: warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
269 |
270 | /// A diagnostic to emit.
271 | public struct Diagnostic: Hashable {
| `- note: consider making struct 'Diagnostic' conform to the 'Sendable' protocol
272 | public let behavior: Behavior
273 | public let message: String
:
362 | for diag in diags where diag.isAnyError {
363 | struct ErrorDiagnostic: Error, CustomStringConvertible {
364 | var diag: Diagnostic
| `- warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
365 | var description: String { diag.message }
366 | }
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/SourceLocation.swift:68:16: warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
12 | extension Source {
13 | /// The location in the input of a parsed entity, presented as a region over the input
14 | public struct Location: Hashable {
| `- note: consider making struct 'Location' conform to the 'Sendable' protocol
15 | public var range: Range<Source.Position>
16 |
:
66 | public struct LocatedError<E: Error>: Error, LocatedErrorProtocol {
67 | public let error: E
68 | public let location: SourceLocation
| `- warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
69 |
70 | init(_ e: E, _ r: SourceLocation) {
/host/spi-builder-workspace/Sources/_RegexParser/Utility/TypeConstruction.swift:22:2: warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
20 |
21 |
22 | @_silgen_name("swift_getTupleTypeMetadata")
| `- warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
23 | private func swift_getTupleTypeMetadata(
24 | request: Int,
[18/69] Compiling _RegexParser RenderRanges.swift
[19/69] Compiling _RegexParser TreeProtocols.swift
[20/69] Compiling _RegexParser AllScalars.swift
[21/69] Compiling _RegexParser Errors.swift
[22/69] Emitting module ArgumentParserToolInfo
[23/69] Compiling ArgumentParserToolInfo ToolInfo.swift
[24/70] Compiling _RegexParser Misc.swift
/host/spi-builder-workspace/Sources/_RegexParser/Utility/TypeConstruction.swift:22:2: warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
20 |
21 |
22 | @_silgen_name("swift_getTupleTypeMetadata")
| `- warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
23 | private func swift_getTupleTypeMetadata(
24 | request: Int,
[25/70] Compiling _RegexParser MissingUnicode.swift
/host/spi-builder-workspace/Sources/_RegexParser/Utility/TypeConstruction.swift:22:2: warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
20 |
21 |
22 | @_silgen_name("swift_getTupleTypeMetadata")
| `- warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
23 | private func swift_getTupleTypeMetadata(
24 | request: Int,
[26/70] Compiling _RegexParser TypeConstruction.swift
/host/spi-builder-workspace/Sources/_RegexParser/Utility/TypeConstruction.swift:22:2: warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
20 |
21 |
22 | @_silgen_name("swift_getTupleTypeMetadata")
| `- warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
23 | private func swift_getTupleTypeMetadata(
24 | request: Int,
[27/70] Wrapping AST for ArgumentParserToolInfo for debugging
[29/116] Emitting module ArgumentParser
[30/122] Compiling ArgumentParser ArgumentVisibility.swift
[31/122] Compiling ArgumentParser CompletionKind.swift
[32/122] Compiling ArgumentParser Errors.swift
[33/122] Compiling ArgumentParser Flag.swift
[34/122] Compiling ArgumentParser NameSpecification.swift
[35/122] Compiling ArgumentParser Option.swift
[36/122] Compiling ArgumentParser OptionGroup.swift
[37/122] Compiling ArgumentParser BashCompletionsGenerator.swift
[38/122] Compiling ArgumentParser CompletionsGenerator.swift
[39/122] Compiling ArgumentParser FishCompletionsGenerator.swift
[40/122] Compiling ArgumentParser ZshCompletionsGenerator.swift
[41/122] Compiling ArgumentParser Argument.swift
[42/122] Compiling ArgumentParser ArgumentDiscussion.swift
[43/122] Compiling ArgumentParser ArgumentHelp.swift
[44/122] Compiling ArgumentParser Platform.swift
[45/122] Compiling ArgumentParser SequenceExtensions.swift
[46/122] Compiling ArgumentParser StringExtensions.swift
[47/122] Compiling ArgumentParser SwiftExtensions.swift
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/SourceLocation.swift:68:16: warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
12 | extension Source {
13 | /// The location in the input of a parsed entity, presented as a region over the input
14 | public struct Location: Hashable {
| `- note: consider making struct 'Location' conform to the 'Sendable' protocol
15 | public var range: Range<Source.Position>
16 |
:
66 | public struct LocatedError<E: Error>: Error, LocatedErrorProtocol {
67 | public let error: E
68 | public let location: SourceLocation
| `- warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
69 |
70 | init(_ e: E, _ r: SourceLocation) {
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/SourceLocation.swift:68:16: warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
12 | extension Source {
13 | /// The location in the input of a parsed entity, presented as a region over the input
14 | public struct Location: Hashable {
| `- note: consider making struct 'Location' conform to the 'Sendable' protocol
15 | public var range: Range<Source.Position>
16 |
:
66 | public struct LocatedError<E: Error>: Error, LocatedErrorProtocol {
67 | public let error: E
68 | public let location: SourceLocation
| `- warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
69 |
70 | init(_ e: E, _ r: SourceLocation) {
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/SourceLocation.swift:68:16: warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
12 | extension Source {
13 | /// The location in the input of a parsed entity, presented as a region over the input
14 | public struct Location: Hashable {
| `- note: consider making struct 'Location' conform to the 'Sendable' protocol
15 | public var range: Range<Source.Position>
16 |
:
66 | public struct LocatedError<E: Error>: Error, LocatedErrorProtocol {
67 | public let error: E
68 | public let location: SourceLocation
| `- warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
69 |
70 | init(_ e: E, _ r: SourceLocation) {
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/SourceLocation.swift:68:16: warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
12 | extension Source {
13 | /// The location in the input of a parsed entity, presented as a region over the input
14 | public struct Location: Hashable {
| `- note: consider making struct 'Location' conform to the 'Sendable' protocol
15 | public var range: Range<Source.Position>
16 |
:
66 | public struct LocatedError<E: Error>: Error, LocatedErrorProtocol {
67 | public let error: E
68 | public let location: SourceLocation
| `- warning: stored property 'location' of 'Sendable'-conforming generic struct 'LocatedError' has non-sendable type 'SourceLocation' (aka 'Source.Location'); this is an error in the Swift 6 language mode
69 |
70 | init(_ e: E, _ r: SourceLocation) {
[56/122] Compiling ArgumentParser DumpHelpGenerator.swift
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/DelimiterLexing.swift:96:14: warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
86 |
87 | public struct DelimiterLexError: Error, CustomStringConvertible {
88 | public enum Kind: Hashable {
| `- note: consider making enum 'Kind' conform to the 'Sendable' protocol
89 | case unterminated
90 | case invalidUTF8 // TODO: better range reporting
:
94 | }
95 |
96 | public var kind: Kind
| `- warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
97 |
98 | var resumeLocation: UnsafeSourceLocation
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/Diagnostics.swift:364:13: warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
269 |
270 | /// A diagnostic to emit.
271 | public struct Diagnostic: Hashable {
| `- note: consider making struct 'Diagnostic' conform to the 'Sendable' protocol
272 | public let behavior: Behavior
273 | public let message: String
:
362 | for diag in diags where diag.isAnyError {
363 | struct ErrorDiagnostic: Error, CustomStringConvertible {
364 | var diag: Diagnostic
| `- warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
365 | var description: String { diag.message }
366 | }
[57/122] Compiling ArgumentParser HelpCommand.swift
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/DelimiterLexing.swift:96:14: warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
86 |
87 | public struct DelimiterLexError: Error, CustomStringConvertible {
88 | public enum Kind: Hashable {
| `- note: consider making enum 'Kind' conform to the 'Sendable' protocol
89 | case unterminated
90 | case invalidUTF8 // TODO: better range reporting
:
94 | }
95 |
96 | public var kind: Kind
| `- warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
97 |
98 | var resumeLocation: UnsafeSourceLocation
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/Diagnostics.swift:364:13: warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
269 |
270 | /// A diagnostic to emit.
271 | public struct Diagnostic: Hashable {
| `- note: consider making struct 'Diagnostic' conform to the 'Sendable' protocol
272 | public let behavior: Behavior
273 | public let message: String
:
362 | for diag in diags where diag.isAnyError {
363 | struct ErrorDiagnostic: Error, CustomStringConvertible {
364 | var diag: Diagnostic
| `- warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
365 | var description: String { diag.message }
366 | }
[58/122] Compiling ArgumentParser HelpGenerator.swift
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/DelimiterLexing.swift:96:14: warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
86 |
87 | public struct DelimiterLexError: Error, CustomStringConvertible {
88 | public enum Kind: Hashable {
| `- note: consider making enum 'Kind' conform to the 'Sendable' protocol
89 | case unterminated
90 | case invalidUTF8 // TODO: better range reporting
:
94 | }
95 |
96 | public var kind: Kind
| `- warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
97 |
98 | var resumeLocation: UnsafeSourceLocation
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/Diagnostics.swift:364:13: warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
269 |
270 | /// A diagnostic to emit.
271 | public struct Diagnostic: Hashable {
| `- note: consider making struct 'Diagnostic' conform to the 'Sendable' protocol
272 | public let behavior: Behavior
273 | public let message: String
:
362 | for diag in diags where diag.isAnyError {
363 | struct ErrorDiagnostic: Error, CustomStringConvertible {
364 | var diag: Diagnostic
| `- warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
365 | var description: String { diag.message }
366 | }
[59/122] Compiling ArgumentParser MessageInfo.swift
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/DelimiterLexing.swift:96:14: warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
86 |
87 | public struct DelimiterLexError: Error, CustomStringConvertible {
88 | public enum Kind: Hashable {
| `- note: consider making enum 'Kind' conform to the 'Sendable' protocol
89 | case unterminated
90 | case invalidUTF8 // TODO: better range reporting
:
94 | }
95 |
96 | public var kind: Kind
| `- warning: stored property 'kind' of 'Sendable'-conforming struct 'DelimiterLexError' has non-sendable type 'DelimiterLexError.Kind'; this is an error in the Swift 6 language mode
97 |
98 | var resumeLocation: UnsafeSourceLocation
/host/spi-builder-workspace/Sources/_RegexParser/Regex/Parse/Diagnostics.swift:364:13: warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
269 |
270 | /// A diagnostic to emit.
271 | public struct Diagnostic: Hashable {
| `- note: consider making struct 'Diagnostic' conform to the 'Sendable' protocol
272 | public let behavior: Behavior
273 | public let message: String
:
362 | for diag in diags where diag.isAnyError {
363 | struct ErrorDiagnostic: Error, CustomStringConvertible {
364 | var diag: Diagnostic
| `- warning: stored property 'diag' of 'Sendable'-conforming struct 'ErrorDiagnostic' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
365 | var description: String { diag.message }
366 | }
[62/122] Compiling ArgumentParser Foundation.swift
[63/122] Compiling ArgumentParser Mutex.swift
[68/123] Wrapping AST for _RegexParser for debugging
[70/123] Compiling ArgumentParser Tree.swift
[71/123] Compiling ArgumentParser CodingKeyValidator.swift
[72/123] Compiling ArgumentParser NonsenseFlagsValidator.swift
[73/123] Compiling ArgumentParser ParsableArgumentsValidation.swift
[74/123] Compiling ArgumentParser PositionalArgumentsValidator.swift
[75/123] Compiling ArgumentParser UniqueNamesValidator.swift
[76/123] Compiling ArgumentParser InputOrigin.swift
[77/123] Compiling ArgumentParser Name.swift
[78/123] Compiling ArgumentParser Parsed.swift
[79/123] Compiling ArgumentParser ParsedValues.swift
[80/123] Compiling ArgumentParser ParserError.swift
[81/123] Compiling ArgumentParser SplitArguments.swift
[82/123] Compiling ArgumentParser ParentCommand.swift
[83/123] Compiling ArgumentParser AsyncParsableCommand.swift
[84/123] Compiling ArgumentParser CommandConfiguration.swift
[85/123] Compiling ArgumentParser CommandGroup.swift
[86/123] Compiling ArgumentParser EnumerableFlag.swift
[87/123] Compiling ArgumentParser ExpressibleByArgument.swift
[88/123] Compiling ArgumentParser ParsableArguments.swift
[93/123] Compiling ArgumentParser UsageGenerator.swift
[94/123] Compiling ArgumentParser CollectionExtensions.swift
[101/123] Compiling ArgumentParser ParsableCommand.swift
[102/123] Compiling ArgumentParser ArgumentDecoder.swift
[103/123] Compiling ArgumentParser ArgumentDefinition.swift
[104/123] Compiling ArgumentParser ArgumentSet.swift
[105/123] Compiling ArgumentParser CommandParser.swift
[106/123] Compiling ArgumentParser InputKey.swift
[107/170] Emitting module TestSupport
[108/170] Compiling TestSupport TestSupport.swift
[110/190] Wrapping AST for ArgumentParser for debugging
[112/192] Compiling _StringProcessing Match.swift
[113/192] Compiling _StringProcessing Options.swift
[114/192] Compiling _StringProcessing ASCII.swift
[115/192] Compiling _StringProcessing CaseConversion.swift
[116/192] Compiling _StringProcessing CharacterProps.swift
[117/192] Compiling _StringProcessing Comparison.swift
[118/192] Compiling _StringProcessing Decoding.swift
[119/192] Compiling _StringProcessing Encodings.swift
[120/192] Compiling _StringProcessing Formatting.swift
[121/192] Compiling _StringProcessing NFC.swift
[122/192] Compiling _StringProcessing NecessaryEvils.swift
[123/192] Compiling _StringProcessing NumberParsing.swift
[124/192] Compiling _StringProcessing ScalarProps.swift
[125/192] Compiling _StringProcessing Transcoding.swift
[126/192] Compiling _StringProcessing UCD.swift
[127/192] Compiling _StringProcessing Validation.swift
[128/192] Compiling _StringProcessing WordBreaking.swift
[129/192] Compiling _StringProcessing ASTBuilder.swift
[130/201] Emitting module VariadicsGenerator
/host/spi-builder-workspace/Sources/VariadicsGenerator/VariadicsGenerator.swift:106:5: warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 | }
106 | var standardError = StandardErrorStream()
| |- warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 |
108 | typealias Counter = Int64
[131/201] Compiling VariadicsGenerator VariadicsGenerator.swift
/host/spi-builder-workspace/Sources/VariadicsGenerator/VariadicsGenerator.swift:106:5: warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 | }
106 | var standardError = StandardErrorStream()
| |- warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 |
108 | typealias Counter = Int64
/host/spi-builder-workspace/Sources/VariadicsGenerator/VariadicsGenerator.swift:103:19: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
101 | struct StandardErrorStream: TextOutputStream {
102 | func write(_ string: String) {
103 | fputs(string, stderr)
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 | }
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/stdio.h:64:23: note: var declared here
62 | extern FILE* _Nonnull stdin __INTRODUCED_IN(23);
63 | extern FILE* _Nonnull stdout __INTRODUCED_IN(23);
64 | extern FILE* _Nonnull stderr __INTRODUCED_IN(23);
| `- note: var declared here
65 |
66 | /* C99 and earlier plus current C++ standards say these must be macros. */
[133/202] Emitting module _StringProcessing
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
[134/202] Compiling _StringProcessing Contains.swift
[135/202] Compiling _StringProcessing FirstRange.swift
[136/202] Compiling _StringProcessing Ranges.swift
[137/202] Compiling _StringProcessing Replace.swift
[138/202] Compiling _StringProcessing Split.swift
[139/202] Compiling _StringProcessing StartsWith.swift
[140/202] Compiling _StringProcessing SubstringSearcher.swift
[141/202] Compiling _StringProcessing Trim.swift
[142/202] Compiling _StringProcessing CollectionConsumer.swift
[143/202] Compiling _StringProcessing FixedPatternConsumer.swift
[144/202] Compiling _StringProcessing FirstMatch.swift
[145/202] Compiling _StringProcessing MatchReplace.swift
[146/202] Compiling _StringProcessing MatchResult.swift
[147/202] Compiling _StringProcessing Matches.swift
[148/202] Compiling _StringProcessing MatchingCollectionSearcher.swift
[149/202] Compiling _StringProcessing CollectionSearcher.swift
[150/202] Compiling _StringProcessing ZSearcher.swift
[151/202] Compiling _StringProcessing ByteCodeGen+DSLList.swift
[152/202] Compiling _StringProcessing ByteCodeGen.swift
[152/202] Wrapping AST for VariadicsGenerator for debugging
[153/202] Write Objects.LinkFileList
[154/202] Linking VariadicsGenerator
[156/202] Compiling _StringProcessing AsciiBitset.swift
[157/202] Compiling _StringProcessing Misc.swift
[158/202] Compiling _StringProcessing Protocols.swift
[159/202] Compiling _StringProcessing RegexFactory.swift
[160/202] Compiling _StringProcessing Traced.swift
[161/202] Compiling _StringProcessing TypeVerification.swift
[162/202] Compiling _StringProcessing TypedIndex.swift
[163/202] Compiling _StringProcessing TypedInt.swift
[164/202] Compiling _StringProcessing _CharacterClassModel.swift
[165/202] Compiling _StringProcessing MEProgram.swift
[166/202] Compiling _StringProcessing MEQuantify.swift
[167/202] Compiling _StringProcessing Metrics.swift
[168/202] Compiling _StringProcessing Processor.swift
[169/202] Compiling _StringProcessing Registers.swift
[170/202] Compiling _StringProcessing Structuralize.swift
[171/202] Compiling _StringProcessing Tracing.swift
[172/202] Compiling _StringProcessing Executor.swift
[173/202] Compiling _StringProcessing LiteralPrinter.swift
[174/202] Compiling _StringProcessing Capture.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/ConsumerInterface.swift:339:5: error: type of expression is ambiguous without a type annotation
337 | ) -> (@escaping ScalarPredicate) -> MEProgram.ConsumeFunction {
338 | opts.semanticLevel == .graphemeCluster
339 | ? consumeCharacterWithLeadingScalar
| `- error: type of expression is ambiguous without a type annotation
340 | : consumeScalar
341 | }
[175/202] Compiling _StringProcessing Compiler.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/ConsumerInterface.swift:339:5: error: type of expression is ambiguous without a type annotation
337 | ) -> (@escaping ScalarPredicate) -> MEProgram.ConsumeFunction {
338 | opts.semanticLevel == .graphemeCluster
339 | ? consumeCharacterWithLeadingScalar
| `- error: type of expression is ambiguous without a type annotation
340 | : consumeScalar
341 | }
[176/202] Compiling _StringProcessing ConsumerInterface.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/ConsumerInterface.swift:339:5: error: type of expression is ambiguous without a type annotation
337 | ) -> (@escaping ScalarPredicate) -> MEProgram.ConsumeFunction {
338 | opts.semanticLevel == .graphemeCluster
339 | ? consumeCharacterWithLeadingScalar
| `- error: type of expression is ambiguous without a type annotation
340 | : consumeScalar
341 | }
[177/202] Compiling _StringProcessing Backtracking.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/ConsumerInterface.swift:339:5: error: type of expression is ambiguous without a type annotation
337 | ) -> (@escaping ScalarPredicate) -> MEProgram.ConsumeFunction {
338 | opts.semanticLevel == .graphemeCluster
339 | ? consumeCharacterWithLeadingScalar
| `- error: type of expression is ambiguous without a type annotation
340 | : consumeScalar
341 | }
[178/202] Compiling _StringProcessing InstPayload.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/ConsumerInterface.swift:339:5: error: type of expression is ambiguous without a type annotation
337 | ) -> (@escaping ScalarPredicate) -> MEProgram.ConsumeFunction {
338 | opts.semanticLevel == .graphemeCluster
339 | ? consumeCharacterWithLeadingScalar
| `- error: type of expression is ambiguous without a type annotation
340 | : consumeScalar
341 | }
[179/202] Compiling _StringProcessing Instruction.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/ConsumerInterface.swift:339:5: error: type of expression is ambiguous without a type annotation
337 | ) -> (@escaping ScalarPredicate) -> MEProgram.ConsumeFunction {
338 | opts.semanticLevel == .graphemeCluster
339 | ? consumeCharacterWithLeadingScalar
| `- error: type of expression is ambiguous without a type annotation
340 | : consumeScalar
341 | }
[180/202] Compiling _StringProcessing MEBuilder.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/ConsumerInterface.swift:339:5: error: type of expression is ambiguous without a type annotation
337 | ) -> (@escaping ScalarPredicate) -> MEProgram.ConsumeFunction {
338 | opts.semanticLevel == .graphemeCluster
339 | ? consumeCharacterWithLeadingScalar
| `- error: type of expression is ambiguous without a type annotation
340 | : consumeScalar
341 | }
[181/202] Compiling _StringProcessing MEBuiltins.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/ConsumerInterface.swift:339:5: error: type of expression is ambiguous without a type annotation
337 | ) -> (@escaping ScalarPredicate) -> MEProgram.ConsumeFunction {
338 | opts.semanticLevel == .graphemeCluster
339 | ? consumeCharacterWithLeadingScalar
| `- error: type of expression is ambiguous without a type annotation
340 | : consumeScalar
341 | }
[182/202] Compiling _StringProcessing MECapture.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:124:21: warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
122 | }
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
| |- warning: static property 'disableOptimizations' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:125:21: warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
123 |
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
| |- warning: static property 'enableTracing' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:126:21: warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
124 | public static let disableOptimizations = _CompileOptions(rawValue: 1 << 0)
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
| |- warning: static property 'enableMetrics' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public static let `default`: _CompileOptions = []
128 | }
/host/spi-builder-workspace/Sources/_StringProcessing/Compiler.swift:127:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
116 |
117 | @_spi(RegexBenchmark)
118 | public struct _CompileOptions: OptionSet {
| `- note: consider making struct '_CompileOptions' conform to the 'Sendable' protocol
119 | public let rawValue: Int
120 | public init(rawValue: Int) {
:
125 | public static let enableTracing = _CompileOptions(rawValue: 1 << 1)
126 | public static let enableMetrics = _CompileOptions(rawValue: 1 << 2)
127 | public static let `default`: _CompileOptions = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type '_CompileOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 |
/host/spi-builder-workspace/Sources/_StringProcessing/ConsumerInterface.swift:339:5: error: type of expression is ambiguous without a type annotation
337 | ) -> (@escaping ScalarPredicate) -> MEProgram.ConsumeFunction {
338 | opts.semanticLevel == .graphemeCluster
339 | ? consumeCharacterWithLeadingScalar
| `- error: type of expression is ambiguous without a type annotation
340 | : consumeScalar
341 | }
[183/202] Compiling _StringProcessing MatchingOptions.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
[184/202] Compiling _StringProcessing AutoPossessification.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
[185/202] Compiling _StringProcessing PrintAsPattern.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
[186/202] Compiling _StringProcessing ASTConversion.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
[187/202] Compiling _StringProcessing AnyRegexOutput.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
[188/202] Compiling _StringProcessing Core.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
[189/202] Compiling _StringProcessing CustomComponents.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
[190/202] Compiling _StringProcessing DSLList.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
[191/202] Compiling _StringProcessing DSLTree.swift
/host/spi-builder-workspace/Sources/_StringProcessing/Regex/DSLTree.swift:419:22: warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
417 | @_spi(RegexBuilder)
418 | public struct ReferenceID: Hashable {
419 | private static var counter: Int = 0
| |- warning: static property 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
420 | var base: Int
421 |
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/20] Write swift-version-24593BA9C3E375BF.txt
[4/53] Emitting module TestSupport
[5/53] Compiling TestSupport TestSupport.swift
[7/54] Compiling _RegexParser RenderRanges.swift
[8/54] Compiling _RegexParser TreeProtocols.swift
[9/54] Compiling _RegexParser AllScalars.swift
[10/54] Compiling _RegexParser Errors.swift
[11/57] Compiling _RegexParser SyntaxOptions.swift
[12/57] Compiling _RegexParser DumpAST.swift
[13/57] Compiling _RegexParser PrettyPrinter.swift
[14/57] Compiling _RegexParser PrintAsCanonical.swift
[15/57] Emitting module ArgumentParserToolInfo
[16/57] Compiling ArgumentParserToolInfo ToolInfo.swift
[18/103] Compiling ArgumentParser SplitArguments.swift
[19/103] Compiling ArgumentParser ArgumentVisibility.swift
[20/103] Compiling ArgumentParser CompletionKind.swift
[21/103] Compiling ArgumentParser Errors.swift
[22/103] Compiling ArgumentParser CommandConfiguration.swift
/host/spi-builder-workspace/Sources/_RegexParser/Utility/TypeConstruction.swift:22:2: warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
20 |
21 |
22 | @_silgen_name("swift_getTupleTypeMetadata")
| `- warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
23 | private func swift_getTupleTypeMetadata(
24 | request: Int,
[23/103] Compiling ArgumentParser CommandGroup.swift
/host/spi-builder-workspace/Sources/_RegexParser/Utility/TypeConstruction.swift:22:2: warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
20 |
21 |
22 | @_silgen_name("swift_getTupleTypeMetadata")
| `- warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
23 | private func swift_getTupleTypeMetadata(
24 | request: Int,
[24/103] Compiling ArgumentParser EnumerableFlag.swift
/host/spi-builder-workspace/Sources/_RegexParser/Utility/TypeConstruction.swift:22:2: warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
20 |
21 |
22 | @_silgen_name("swift_getTupleTypeMetadata")
| `- warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
23 | private func swift_getTupleTypeMetadata(
24 | request: Int,
[25/103] Emitting module ArgumentParser
[26/109] Compiling ArgumentParser Name.swift
[27/109] Compiling ArgumentParser Parsed.swift
[28/109] Compiling ArgumentParser ParsedValues.swift
[29/109] Compiling ArgumentParser ParserError.swift
[30/109] Compiling ArgumentParser Flag.swift
[31/109] Compiling ArgumentParser NameSpecification.swift
[32/109] Compiling ArgumentParser Option.swift
[33/109] Compiling ArgumentParser OptionGroup.swift
[34/109] Compiling ArgumentParser Foundation.swift
[35/109] Compiling ArgumentParser Mutex.swift
[36/109] Compiling ArgumentParser Platform.swift
[37/109] Compiling ArgumentParser SequenceExtensions.swift
[38/109] Compiling ArgumentParser StringExtensions.swift
[39/109] Compiling ArgumentParser SwiftExtensions.swift
[40/109] Compiling ArgumentParser Tree.swift
[41/109] Compiling ArgumentParser CodingKeyValidator.swift
[42/109] Compiling ArgumentParser NonsenseFlagsValidator.swift
[43/109] Compiling ArgumentParser ParsableArgumentsValidation.swift
[44/109] Compiling ArgumentParser PositionalArgumentsValidator.swift
[45/109] Compiling ArgumentParser UniqueNamesValidator.swift
[46/109] Compiling ArgumentParser BashCompletionsGenerator.swift
[47/109] Compiling ArgumentParser CompletionsGenerator.swift
[48/109] Compiling ArgumentParser FishCompletionsGenerator.swift
[49/109] Compiling ArgumentParser ZshCompletionsGenerator.swift
[50/109] Compiling ArgumentParser Argument.swift
[51/109] Compiling ArgumentParser ArgumentDiscussion.swift
[52/109] Compiling ArgumentParser ArgumentHelp.swift
[53/109] Compiling ArgumentParser DumpHelpGenerator.swift
[54/109] Compiling ArgumentParser HelpCommand.swift
[55/109] Compiling ArgumentParser HelpGenerator.swift
[56/109] Compiling ArgumentParser MessageInfo.swift
[57/109] Compiling ArgumentParser UsageGenerator.swift
[58/109] Compiling ArgumentParser CollectionExtensions.swift
[59/109] Compiling ArgumentParser InputOrigin.swift
[72/109] Compiling ArgumentParser ParentCommand.swift
[73/109] Compiling ArgumentParser AsyncParsableCommand.swift
[77/109] Compiling ArgumentParser ExpressibleByArgument.swift
[78/109] Compiling ArgumentParser ParsableArguments.swift
[79/109] Compiling ArgumentParser ParsableCommand.swift
[80/109] Compiling ArgumentParser ArgumentDecoder.swift
[81/109] Compiling ArgumentParser ArgumentDefinition.swift
[82/109] Compiling ArgumentParser ArgumentSet.swift
[83/109] Compiling ArgumentParser CommandParser.swift
[84/109] Compiling ArgumentParser InputKey.swift
[86/111] Emitting module VariadicsGenerator
[87/111] Compiling VariadicsGenerator VariadicsGenerator.swift
[88/111] Write Objects.LinkFileList
[94/111] Emitting module _RegexParser
/host/spi-builder-workspace/Sources/_RegexParser/Utility/TypeConstruction.swift:22:2: warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
20 |
21 |
22 | @_silgen_name("swift_getTupleTypeMetadata")
| `- warning: symbol name 'swift_getTupleTypeMetadata' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
23 | private func swift_getTupleTypeMetadata(
24 | request: Int,
[99/112] Linking VariadicsGenerator
[101/176] Compiling _StringProcessing NFC.swift
[102/176] Compiling _StringProcessing NecessaryEvils.swift
[103/176] Compiling _StringProcessing NumberParsing.swift
[104/176] Compiling _StringProcessing ScalarProps.swift
[105/176] Compiling _StringProcessing Transcoding.swift
[106/176] Compiling _StringProcessing UCD.swift
[107/176] Compiling _StringProcessing Validation.swift
[108/176] Compiling _StringProcessing WordBreaking.swift
[109/176] Compiling _StringProcessing ASTBuilder.swift
[110/176] Compiling _StringProcessing Match.swift
[111/176] Compiling _StringProcessing Options.swift
[112/176] Compiling _StringProcessing ASCII.swift
[113/176] Compiling _StringProcessing CaseConversion.swift
[114/176] Compiling _StringProcessing CharacterProps.swift
[115/176] Compiling _StringProcessing Comparison.swift
[116/176] Compiling _StringProcessing Decoding.swift
[117/176] Compiling _StringProcessing Encodings.swift
[118/176] Compiling _StringProcessing Formatting.swift
[119/185] Compiling _StringProcessing Contains.swift
[120/185] Compiling _StringProcessing FirstRange.swift
[121/185] Compiling _StringProcessing Ranges.swift
[122/185] Compiling _StringProcessing Replace.swift
[123/185] Compiling _StringProcessing Split.swift
[124/185] Compiling _StringProcessing StartsWith.swift
[125/185] Compiling _StringProcessing SubstringSearcher.swift
[126/185] Compiling _StringProcessing Trim.swift
[127/185] Compiling _StringProcessing CollectionConsumer.swift
[128/185] Compiling _StringProcessing FixedPatternConsumer.swift
[129/185] Compiling _StringProcessing FirstMatch.swift
[130/185] Compiling _StringProcessing MatchReplace.swift
[131/185] Compiling _StringProcessing MatchResult.swift
[132/185] Compiling _StringProcessing Matches.swift
[133/185] Compiling _StringProcessing MatchingCollectionSearcher.swift
[134/185] Compiling _StringProcessing CollectionSearcher.swift
[135/185] Compiling _StringProcessing ZSearcher.swift
[136/185] Compiling _StringProcessing ByteCodeGen+DSLList.swift
[137/185] Compiling _StringProcessing ByteCodeGen.swift
[138/185] Compiling _StringProcessing AsciiBitset.swift
[139/185] Compiling _StringProcessing Misc.swift
[140/185] Compiling _StringProcessing Protocols.swift
[141/185] Compiling _StringProcessing RegexFactory.swift
[142/185] Compiling _StringProcessing Traced.swift
[143/185] Compiling _StringProcessing TypeVerification.swift
[144/185] Compiling _StringProcessing TypedIndex.swift
[145/185] Compiling _StringProcessing TypedInt.swift
[146/185] Compiling _StringProcessing _CharacterClassModel.swift
[147/185] Compiling _StringProcessing MEProgram.swift
[148/185] Compiling _StringProcessing MEQuantify.swift
[149/185] Compiling _StringProcessing Metrics.swift
[150/185] Compiling _StringProcessing Processor.swift
[151/185] Compiling _StringProcessing Registers.swift
[152/185] Compiling _StringProcessing Structuralize.swift
[153/185] Compiling _StringProcessing Tracing.swift
[154/185] Compiling _StringProcessing Executor.swift
[155/185] Compiling _StringProcessing LiteralPrinter.swift
[156/185] Emitting module _StringProcessing
[157/185] Compiling _StringProcessing MatchingOptions.swift
[158/185] Compiling _StringProcessing AutoPossessification.swift
[159/185] Compiling _StringProcessing PrintAsPattern.swift
[160/185] Compiling _StringProcessing ASTConversion.swift
[161/185] Compiling _StringProcessing AnyRegexOutput.swift
[162/185] Compiling _StringProcessing Core.swift
[163/185] Compiling _StringProcessing CustomComponents.swift
[164/185] Compiling _StringProcessing DSLList.swift
[165/185] Compiling _StringProcessing DSLTree.swift
[166/185] Compiling _StringProcessing Capture.swift
[167/185] Compiling _StringProcessing Compiler.swift
[168/185] Compiling _StringProcessing ConsumerInterface.swift
[169/185] Compiling _StringProcessing Backtracking.swift
[170/185] Compiling _StringProcessing InstPayload.swift
[171/185] Compiling _StringProcessing Instruction.swift
[172/185] Compiling _StringProcessing MEBuilder.swift
[173/185] Compiling _StringProcessing MEBuiltins.swift
[174/185] Compiling _StringProcessing MECapture.swift
[176/187] Wrapping AST for _StringProcessing for debugging
[178/200] Compiling RegexBuilder Builder.swift
[179/200] Compiling PatternConverter PatternConverter.swift
[180/200] Emitting module PatternConverter
[181/201] Compiling RegexTester Main.swift
[182/201] Compiling RegexTester RegexTester.swift
[183/201] Emitting module RegexTester
[184/201] Compiling RegexTester CompileOnceTest.swift
[186/202] Wrapping AST for PatternConverter for debugging
[187/202] Write Objects.LinkFileList
[188/202] Wrapping AST for RegexTester for debugging
[189/202] Write Objects.LinkFileList
[190/202] Linking PatternConverter
[191/202] Linking RegexTester
[193/202] Emitting module RegexBuilder
[194/202] Compiling RegexBuilder Anchor.swift
[195/202] Compiling RegexBuilder DSL.swift
[196/202] Compiling RegexBuilder CharacterClass.swift
[197/202] Compiling RegexBuilder Algorithms.swift
[198/202] Compiling RegexBuilder Variadics.swift
[200/204] Wrapping AST for RegexBuilder for debugging
[202/249] Compiling Exercises NaiveParticipant.swift
[203/250] Compiling Exercises PEGParticipant.swift
[204/250] Compiling Exercises ReferenceParticipant.swift
[205/250] Compiling Exercises HandWrittenParticipant.swift
[206/250] Compiling Exercises NSREParticipant.swift
[207/250] Compiling Exercises Participant.swift
[208/250] Compiling RegexBenchmark FSPathsRegex.swift
[209/250] Compiling RegexBenchmark GraphemeBreak.swift
[210/250] Compiling RegexBenchmark HtmlRegex.swift
[211/250] Compiling RegexBenchmark IpAddress.swift
[212/250] Compiling RegexBenchmark LiteralSearch.swift
[213/254] Compiling RegexBenchmark Benchmark.swift
[214/254] Compiling RegexBenchmark BenchmarkChart.swift
[215/254] Emitting module Exercises
[216/254] Compiling RegexBenchmark CustomCharacterClasses.swift
[217/254] Compiling RegexBenchmark DiceNotation.swift
[218/254] Compiling RegexBenchmark Dna.swift
[219/254] Compiling RegexBenchmark EmailRegex.swift
[220/254] Compiling RegexBenchmark ErrorMessages.swift
[221/254] Compiling RegexBenchmark NotFound.swift
[222/254] Compiling RegexBenchmark ReluctantQuant.swift
[223/254] Compiling RegexBenchmark URLRegex.swift
[224/254] Compiling RegexBenchmark Unicode.swift
[225/254] Compiling RegexBenchmark Size.swift
[226/254] Compiling RegexBenchmark Stats.swift
[227/254] Compiling RegexBenchmark Tick.swift
[228/254] Compiling RegexBenchmark Time.swift
[229/254] Compiling RegexBenchmark Timer.swift
[230/254] Compiling RegexBenchmark DnaFASTA.swift
[231/254] Compiling RegexBenchmark Email.swift
[232/254] Compiling RegexBenchmark FSPaths.swift
[233/254] Compiling RegexBenchmark GraphemeBreakData.swift
[234/254] Compiling RegexBenchmark HTML.swift
[235/254] Compiling RegexBenchmark NetworkingData.swift
[236/254] Compiling RegexBenchmark TaggedUnicode.swift
[237/254] Compiling RegexBenchmark URL.swift
[238/254] Compiling RegexBenchmark BuiltinCC.swift
[239/254] Compiling RegexBenchmark CssRegex.swift
[240/254] Compiling Exercises RegexParticipant.swift
[244/255] Compiling RegexBenchmark BenchmarkRegistration.swift
[245/255] Compiling RegexBenchmark BenchmarkResults.swift
[246/255] Compiling RegexBenchmark BenchmarkRunner.swift
[247/255] Emitting module RegexBenchmark
[248/255] Compiling RegexBenchmark CLI.swift
[249/255] Compiling RegexBenchmark Debug.swift
[250/255] Compiling RegexBenchmark CSS.swift
[251/255] Compiling RegexBenchmark CompilerOutput.swift
[252/255] Compiling RegexBenchmark Dice.swift
[253/256] Wrapping AST for RegexBenchmark for debugging
[254/256] Write Objects.LinkFileList
[255/256] Linking RegexBenchmark
Build complete! (57.73s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
}
],
"manifest_display_name" : "swift-experimental-string-processing",
"name" : "swift-experimental-string-processing",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "_StringProcessing",
"targets" : [
"_StringProcessing"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "_RegexParser",
"targets" : [
"_RegexParser"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "VariadicsGenerator",
"targets" : [
"VariadicsGenerator"
],
"type" : {
"executable" : null
}
},
{
"name" : "RegexBenchmark",
"targets" : [
"RegexBenchmark"
],
"type" : {
"executable" : null
}
},
{
"name" : "RegexTester",
"targets" : [
"RegexTester"
],
"type" : {
"executable" : null
}
},
{
"name" : "PatternConverter",
"targets" : [
"PatternConverter"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "_StringProcessing",
"module_type" : "SwiftTarget",
"name" : "_StringProcessing",
"path" : "Sources/_StringProcessing",
"product_memberships" : [
"_StringProcessing",
"RegexBenchmark",
"RegexTester",
"PatternConverter"
],
"sources" : [
"Algorithms/Algorithms/Contains.swift",
"Algorithms/Algorithms/FirstRange.swift",
"Algorithms/Algorithms/Ranges.swift",
"Algorithms/Algorithms/Replace.swift",
"Algorithms/Algorithms/Split.swift",
"Algorithms/Algorithms/StartsWith.swift",
"Algorithms/Algorithms/SubstringSearcher.swift",
"Algorithms/Algorithms/Trim.swift",
"Algorithms/Consumers/CollectionConsumer.swift",
"Algorithms/Consumers/FixedPatternConsumer.swift",
"Algorithms/Matching/FirstMatch.swift",
"Algorithms/Matching/MatchReplace.swift",
"Algorithms/Matching/MatchResult.swift",
"Algorithms/Matching/Matches.swift",
"Algorithms/Matching/MatchingCollectionSearcher.swift",
"Algorithms/Searchers/CollectionSearcher.swift",
"Algorithms/Searchers/ZSearcher.swift",
"ByteCodeGen+DSLList.swift",
"ByteCodeGen.swift",
"Capture.swift",
"Compiler.swift",
"ConsumerInterface.swift",
"Engine/Backtracking.swift",
"Engine/InstPayload.swift",
"Engine/Instruction.swift",
"Engine/MEBuilder.swift",
"Engine/MEBuiltins.swift",
"Engine/MECapture.swift",
"Engine/MEProgram.swift",
"Engine/MEQuantify.swift",
"Engine/Metrics.swift",
"Engine/Processor.swift",
"Engine/Registers.swift",
"Engine/Structuralize.swift",
"Engine/Tracing.swift",
"Executor.swift",
"LiteralPrinter.swift",
"MatchingOptions.swift",
"Optimizations/AutoPossessification.swift",
"PrintAsPattern.swift",
"Regex/ASTConversion.swift",
"Regex/AnyRegexOutput.swift",
"Regex/Core.swift",
"Regex/CustomComponents.swift",
"Regex/DSLList.swift",
"Regex/DSLTree.swift",
"Regex/Match.swift",
"Regex/Options.swift",
"Unicode/ASCII.swift",
"Unicode/CaseConversion.swift",
"Unicode/CharacterProps.swift",
"Unicode/Comparison.swift",
"Unicode/Decoding.swift",
"Unicode/Encodings.swift",
"Unicode/Formatting.swift",
"Unicode/NFC.swift",
"Unicode/NecessaryEvils.swift",
"Unicode/NumberParsing.swift",
"Unicode/ScalarProps.swift",
"Unicode/Transcoding.swift",
"Unicode/UCD.swift",
"Unicode/Validation.swift",
"Unicode/WordBreaking.swift",
"Utility/ASTBuilder.swift",
"Utility/AsciiBitset.swift",
"Utility/Misc.swift",
"Utility/Protocols.swift",
"Utility/RegexFactory.swift",
"Utility/Traced.swift",
"Utility/TypeVerification.swift",
"Utility/TypedIndex.swift",
"Utility/TypedInt.swift",
"_CharacterClassModel.swift"
],
"target_dependencies" : [
"_RegexParser",
"_CUnicode"
],
"type" : "library"
},
{
"c99name" : "_RegexParser",
"module_type" : "SwiftTarget",
"name" : "_RegexParser",
"path" : "Sources/_RegexParser",
"product_memberships" : [
"_StringProcessing",
"_RegexParser",
"RegexBenchmark",
"RegexTester",
"PatternConverter"
],
"sources" : [
"Regex/AST/AST.swift",
"Regex/AST/ASTAction.swift",
"Regex/AST/ASTProtocols.swift",
"Regex/AST/Atom.swift",
"Regex/AST/Conditional.swift",
"Regex/AST/CustomCharClass.swift",
"Regex/AST/Group.swift",
"Regex/AST/MatchingOptions.swift",
"Regex/AST/Quantification.swift",
"Regex/Parse/CaptureList.swift",
"Regex/Parse/CaptureStructure.swift",
"Regex/Parse/CharacterPropertyClassification.swift",
"Regex/Parse/CompilerInterface.swift",
"Regex/Parse/DelimiterLexing.swift",
"Regex/Parse/Diagnostics.swift",
"Regex/Parse/LexicalAnalysis.swift",
"Regex/Parse/Parse.swift",
"Regex/Parse/Sema.swift",
"Regex/Parse/Source.swift",
"Regex/Parse/SourceLocation.swift",
"Regex/Parse/SyntaxOptions.swift",
"Regex/Printing/DumpAST.swift",
"Regex/Printing/PrettyPrinter.swift",
"Regex/Printing/PrintAsCanonical.swift",
"Regex/Printing/RenderRanges.swift",
"Regex/TreeProtocols.swift",
"Utility/AllScalars.swift",
"Utility/Errors.swift",
"Utility/Misc.swift",
"Utility/MissingUnicode.swift",
"Utility/TypeConstruction.swift"
],
"type" : "library"
},
{
"c99name" : "_CUnicode",
"module_type" : "ClangTarget",
"name" : "_CUnicode",
"path" : "Sources/_CUnicode",
"product_memberships" : [
"_StringProcessing",
"RegexBenchmark",
"RegexTester",
"PatternConverter"
],
"sources" : [
"UnicodeData.c",
"UnicodeScalarProps.c"
],
"type" : "library"
},
{
"c99name" : "VariadicsGenerator",
"module_type" : "SwiftTarget",
"name" : "VariadicsGenerator",
"path" : "Sources/VariadicsGenerator",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"VariadicsGenerator"
],
"sources" : [
"VariadicsGenerator.swift"
],
"type" : "executable"
},
{
"c99name" : "TestSupport",
"module_type" : "SwiftTarget",
"name" : "TestSupport",
"path" : "Sources/TestSupport",
"sources" : [
"TestSupport.swift"
],
"type" : "library"
},
{
"c99name" : "RegexTests",
"module_type" : "SwiftTarget",
"name" : "RegexTests",
"path" : "Tests/RegexTests",
"sources" : [
"AlgorithmsInternalsTests.swift",
"AlgorithmsTests.swift",
"AllScalarsTests.swift",
"AnyRegexOutputTests.swift",
"CaptureTests.swift",
"CompileTests.swift",
"DSLListTests.swift",
"DiagnosticTests.swift",
"LexTests.swift",
"LiteralPrinterTests.swift",
"MatchTests.swift",
"OptimizationTests.swift",
"ParseTests.swift",
"RenderDSLTests.swift",
"SyntaxOptionsTests.swift",
"UTS18Tests.swift"
],
"target_dependencies" : [
"_StringProcessing",
"RegexBuilder",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "RegexTester",
"module_type" : "SwiftTarget",
"name" : "RegexTester",
"path" : "Sources/RegexTester",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"RegexTester"
],
"sources" : [
"CompileOnceTest.swift",
"Main.swift",
"RegexTester.swift"
],
"target_dependencies" : [
"_RegexParser",
"_StringProcessing"
],
"type" : "executable"
},
{
"c99name" : "RegexBuilderTests",
"module_type" : "SwiftTarget",
"name" : "RegexBuilderTests",
"path" : "Tests/RegexBuilderTests",
"sources" : [
"AlgorithmsTests.swift",
"AnyRegexOutputTests.swift",
"CustomTests.swift",
"MotivationTests.swift",
"RegexDSLTests.swift"
],
"target_dependencies" : [
"_StringProcessing",
"RegexBuilder",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "RegexBuilder",
"module_type" : "SwiftTarget",
"name" : "RegexBuilder",
"path" : "Sources/RegexBuilder",
"product_memberships" : [
"RegexBenchmark"
],
"sources" : [
"Algorithms.swift",
"Anchor.swift",
"Builder.swift",
"CharacterClass.swift",
"DSL.swift",
"Variadics.swift"
],
"target_dependencies" : [
"_StringProcessing",
"_RegexParser"
],
"type" : "library"
},
{
"c99name" : "RegexBenchmark",
"module_type" : "SwiftTarget",
"name" : "RegexBenchmark",
"path" : "Sources/RegexBenchmark",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"RegexBenchmark"
],
"sources" : [
"Benchmark.swift",
"BenchmarkChart.swift",
"BenchmarkRegistration.swift",
"BenchmarkResults.swift",
"BenchmarkRunner.swift",
"CLI.swift",
"Debug.swift",
"Inputs/CSS.swift",
"Inputs/CompilerOutput.swift",
"Inputs/Dice.swift",
"Inputs/DnaFASTA.swift",
"Inputs/Email.swift",
"Inputs/FSPaths.swift",
"Inputs/GraphemeBreakData.swift",
"Inputs/HTML.swift",
"Inputs/NetworkingData.swift",
"Inputs/TaggedUnicode.swift",
"Inputs/URL.swift",
"Suite/BuiltinCC.swift",
"Suite/CssRegex.swift",
"Suite/CustomCharacterClasses.swift",
"Suite/DiceNotation.swift",
"Suite/Dna.swift",
"Suite/EmailRegex.swift",
"Suite/ErrorMessages.swift",
"Suite/FSPathsRegex.swift",
"Suite/GraphemeBreak.swift",
"Suite/HtmlRegex.swift",
"Suite/IpAddress.swift",
"Suite/LiteralSearch.swift",
"Suite/NotFound.swift",
"Suite/ReluctantQuant.swift",
"Suite/URLRegex.swift",
"Suite/Unicode.swift",
"Utils/Size.swift",
"Utils/Stats.swift",
"Utils/Tick.swift",
"Utils/Time.swift",
"Utils/Timer.swift"
],
"target_dependencies" : [
"_RegexParser",
"_StringProcessing",
"RegexBuilder"
],
"type" : "executable"
},
{
"c99name" : "PatternConverter",
"module_type" : "SwiftTarget",
"name" : "PatternConverter",
"path" : "Sources/PatternConverter",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"PatternConverter"
],
"sources" : [
"PatternConverter.swift"
],
"target_dependencies" : [
"_RegexParser",
"_StringProcessing"
],
"type" : "executable"
},
{
"c99name" : "MatchingEngineTests",
"module_type" : "SwiftTarget",
"name" : "MatchingEngineTests",
"path" : "Tests/MatchingEngineTests",
"sources" : [
"MatchingEngineTests.swift",
"UtilTests.swift"
],
"target_dependencies" : [
"_RegexParser",
"_StringProcessing"
],
"type" : "test"
},
{
"c99name" : "ExercisesTests",
"module_type" : "SwiftTarget",
"name" : "ExercisesTests",
"path" : "Tests/ExercisesTests",
"sources" : [
"ExercisesTests.swift"
],
"target_dependencies" : [
"Exercises"
],
"type" : "test"
},
{
"c99name" : "Exercises",
"module_type" : "SwiftTarget",
"name" : "Exercises",
"path" : "Sources/Exercises",
"sources" : [
"Exercises.swift",
"GraphemeBreakData.swift",
"Participant.swift",
"Participants/HandWrittenParticipant.swift",
"Participants/NSREParticipant.swift",
"Participants/NaiveParticipant.swift",
"Participants/PEGParticipant.swift",
"Participants/ReferenceParticipant.swift",
"Participants/RegexParticipant.swift"
],
"target_dependencies" : [
"_RegexParser",
"_StringProcessing",
"RegexBuilder"
],
"type" : "library"
},
{
"c99name" : "DocumentationTests",
"module_type" : "SwiftTarget",
"name" : "DocumentationTests",
"path" : "Tests/DocumentationTests",
"sources" : [
"RegexBuilderTests.swift",
"RegexTests.swift"
],
"target_dependencies" : [
"_StringProcessing",
"RegexBuilder"
],
"type" : "test"
}
],
"tools_version" : "5.5"
}
android-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
Done.