Build Information
Successful build of CwlDemangle, reference 0.1.0 (b268c0), with Swift 6.1 for Android on 29 May 2025 02:27:46 UTC.
Swift 6 data race errors: 18
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mattgallagher/CwlDemangle.git
Reference: 0.1.0
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/mattgallagher/CwlDemangle
* tag 0.1.0 -> FETCH_HEAD
HEAD is now at b268c08 Cover most – but not all – of the latest test cases.
Cloned https://github.com/mattgallagher/CwlDemangle.git
Revision (git rev-parse @):
b268c08207d2990664605c49b2c71cbd0df3445b
SUCCESS checkout https://github.com/mattgallagher/CwlDemangle.git at 0.1.0
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/mattgallagher/CwlDemangle.git
https://github.com/mattgallagher/CwlDemangle.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "CwlDemangle",
"name" : "CwlDemangle",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CwlDemangle",
"targets" : [
"CwlDemangle"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "demangle",
"targets" : [
"CwlDemangleTool"
],
"type" : {
"executable" : null
}
}
],
"swift_languages_versions" : [
"4",
"4.2",
"5"
],
"targets" : [
{
"c99name" : "CwlDemangleTool",
"module_type" : "SwiftTarget",
"name" : "CwlDemangleTool",
"path" : "CwlDemangle",
"product_memberships" : [
"demangle"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"CwlDemangle"
],
"type" : "executable"
},
{
"c99name" : "CwlDemangleTests",
"module_type" : "SwiftTarget",
"name" : "CwlDemangleTests",
"path" : "CwlDemangleTests",
"sources" : [
"CwlDemangleAdditionalTests.swift",
"CwlDemangleSwiftProjectDerivedTests.swift"
],
"target_dependencies" : [
"CwlDemangle"
],
"type" : "test"
},
{
"c99name" : "CwlDemangle",
"module_type" : "SwiftTarget",
"name" : "CwlDemangle",
"path" : "CwlDemangle",
"product_memberships" : [
"CwlDemangle",
"demangle"
],
"sources" : [
"CwlDemangle.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
[4/9] Emitting module CwlDemangle
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:66:20: warning: static property 'synthesizeSugarOnTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
66 | public static let synthesizeSugarOnTypes = SymbolPrintOptions(rawValue: 1 << 0)
| |- warning: static property 'synthesizeSugarOnTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'synthesizeSugarOnTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 | public static let displayDebuggerGeneratedModule = SymbolPrintOptions(rawValue: 1 << 1)
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:67:20: warning: static property 'displayDebuggerGeneratedModule' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
66 | public static let synthesizeSugarOnTypes = SymbolPrintOptions(rawValue: 1 << 0)
67 | public static let displayDebuggerGeneratedModule = SymbolPrintOptions(rawValue: 1 << 1)
| |- warning: static property 'displayDebuggerGeneratedModule' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayDebuggerGeneratedModule' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:68:20: warning: static property 'qualifyEntities' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
66 | public static let synthesizeSugarOnTypes = SymbolPrintOptions(rawValue: 1 << 0)
67 | public static let displayDebuggerGeneratedModule = SymbolPrintOptions(rawValue: 1 << 1)
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
| |- warning: static property 'qualifyEntities' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'qualifyEntities' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:69:20: warning: static property 'displayExtensionContexts' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
67 | public static let displayDebuggerGeneratedModule = SymbolPrintOptions(rawValue: 1 << 1)
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
| |- warning: static property 'displayExtensionContexts' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayExtensionContexts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:70:20: warning: static property 'displayUnmangledSuffix' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
| |- warning: static property 'displayUnmangledSuffix' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayUnmangledSuffix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:71:20: warning: static property 'displayModuleNames' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
| |- warning: static property 'displayModuleNames' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayModuleNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:72:20: warning: static property 'displayGenericSpecializations' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
| |- warning: static property 'displayGenericSpecializations' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayGenericSpecializations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:73:20: warning: static property 'displayProtocolConformances' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
| |- warning: static property 'displayProtocolConformances' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayProtocolConformances' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:74:20: warning: static property 'displayWhereClauses' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
| |- warning: static property 'displayWhereClauses' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayWhereClauses' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:75:20: warning: static property 'displayEntityTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
| |- warning: static property 'displayEntityTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayEntityTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:76:20: warning: static property 'shortenPartialApply' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
| |- warning: static property 'shortenPartialApply' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shortenPartialApply' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:77:20: warning: static property 'shortenThunk' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
| |- warning: static property 'shortenThunk' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shortenThunk' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:78:20: warning: static property 'shortenValueWitness' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
| |- warning: static property 'shortenValueWitness' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shortenValueWitness' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
80 | public static let showPrivateDiscriminators = SymbolPrintOptions(rawValue: 1 << 14)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:79:20: warning: static property 'shortenArchetype' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
| |- warning: static property 'shortenArchetype' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shortenArchetype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | public static let showPrivateDiscriminators = SymbolPrintOptions(rawValue: 1 << 14)
81 | public static let showFunctionArgumentTypes = SymbolPrintOptions(rawValue: 1 << 15)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:80:20: warning: static property 'showPrivateDiscriminators' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
80 | public static let showPrivateDiscriminators = SymbolPrintOptions(rawValue: 1 << 14)
| |- warning: static property 'showPrivateDiscriminators' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'showPrivateDiscriminators' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | public static let showFunctionArgumentTypes = SymbolPrintOptions(rawValue: 1 << 15)
82 |
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:81:20: warning: static property 'showFunctionArgumentTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
80 | public static let showPrivateDiscriminators = SymbolPrintOptions(rawValue: 1 << 14)
81 | public static let showFunctionArgumentTypes = SymbolPrintOptions(rawValue: 1 << 15)
| |- warning: static property 'showFunctionArgumentTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'showFunctionArgumentTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | public init(rawValue: Int) {
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:87:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
85 | }
86 |
87 | public static let `default`: SymbolPrintOptions = [.displayDebuggerGeneratedModule, .qualifyEntities, .displayExtensionContexts, .displayUnmangledSuffix, .displayModuleNames, .displayGenericSpecializations, .displayProtocolConformances, .displayWhereClauses, .displayEntityTypes, .showPrivateDiscriminators, .showFunctionArgumentTypes]
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public static let simplified: SymbolPrintOptions = [.synthesizeSugarOnTypes, .qualifyEntities, .shortenPartialApply, .shortenThunk, .shortenValueWitness, .shortenArchetype]
89 | }
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:88:20: warning: static property 'simplified' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
86 |
87 | public static let `default`: SymbolPrintOptions = [.displayDebuggerGeneratedModule, .qualifyEntities, .displayExtensionContexts, .displayUnmangledSuffix, .displayModuleNames, .displayGenericSpecializations, .displayProtocolConformances, .displayWhereClauses, .displayEntityTypes, .showPrivateDiscriminators, .showFunctionArgumentTypes]
88 | public static let simplified: SymbolPrintOptions = [.synthesizeSugarOnTypes, .qualifyEntities, .shortenPartialApply, .shortenThunk, .shortenValueWitness, .shortenArchetype]
| |- warning: static property 'simplified' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'simplified' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | }
90 |
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:3857:4: warning: using '_' to ignore the result of a Void-returning function is redundant
3855 | case .dependentGenericParamCount: return nil
3856 | case .dependentGenericConformanceRequirement:
3857 | _ = printFirstChild(name)
| `- warning: using '_' to ignore the result of a Void-returning function is redundant
3858 | _ = printOptional(name.children.at(1), prefix: ": ")
3859 | case .dependentGenericLayoutRequirement:
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:3926:4: warning: using '_' to ignore the result of a Void-returning function is redundant
3924 | case .sugaredArray:
3925 | target.write("[")
3926 | _ = printFirstChild(name)
| `- warning: using '_' to ignore the result of a Void-returning function is redundant
3927 | target.write("]")
3928 | case .sugaredDictionary:
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:3930:4: warning: using '_' to ignore the result of a Void-returning function is redundant
3928 | case .sugaredDictionary:
3929 | target.write("[")
3930 | _ = printFirstChild(name)
| `- warning: using '_' to ignore the result of a Void-returning function is redundant
3931 | target.write(" : ")
3932 | _ = printOptional(name.children.at(1))
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:3936:4: warning: using '_' to ignore the result of a Void-returning function is redundant
3934 | case .sugaredParen:
3935 | target.write("(")
3936 | _ = printFirstChild(name)
| `- warning: using '_' to ignore the result of a Void-returning function is redundant
3937 | target.write(")")
3938 | }
[5/9] Compiling CwlDemangle CwlDemangle.swift
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:66:20: warning: static property 'synthesizeSugarOnTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
66 | public static let synthesizeSugarOnTypes = SymbolPrintOptions(rawValue: 1 << 0)
| |- warning: static property 'synthesizeSugarOnTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'synthesizeSugarOnTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 | public static let displayDebuggerGeneratedModule = SymbolPrintOptions(rawValue: 1 << 1)
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:67:20: warning: static property 'displayDebuggerGeneratedModule' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
66 | public static let synthesizeSugarOnTypes = SymbolPrintOptions(rawValue: 1 << 0)
67 | public static let displayDebuggerGeneratedModule = SymbolPrintOptions(rawValue: 1 << 1)
| |- warning: static property 'displayDebuggerGeneratedModule' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayDebuggerGeneratedModule' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:68:20: warning: static property 'qualifyEntities' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
66 | public static let synthesizeSugarOnTypes = SymbolPrintOptions(rawValue: 1 << 0)
67 | public static let displayDebuggerGeneratedModule = SymbolPrintOptions(rawValue: 1 << 1)
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
| |- warning: static property 'qualifyEntities' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'qualifyEntities' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:69:20: warning: static property 'displayExtensionContexts' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
67 | public static let displayDebuggerGeneratedModule = SymbolPrintOptions(rawValue: 1 << 1)
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
| |- warning: static property 'displayExtensionContexts' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayExtensionContexts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:70:20: warning: static property 'displayUnmangledSuffix' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
68 | public static let qualifyEntities = SymbolPrintOptions(rawValue: 1 << 2)
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
| |- warning: static property 'displayUnmangledSuffix' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayUnmangledSuffix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:71:20: warning: static property 'displayModuleNames' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
69 | public static let displayExtensionContexts = SymbolPrintOptions(rawValue: 1 << 3)
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
| |- warning: static property 'displayModuleNames' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayModuleNames' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:72:20: warning: static property 'displayGenericSpecializations' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
70 | public static let displayUnmangledSuffix = SymbolPrintOptions(rawValue: 1 << 4)
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
| |- warning: static property 'displayGenericSpecializations' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayGenericSpecializations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:73:20: warning: static property 'displayProtocolConformances' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
71 | public static let displayModuleNames = SymbolPrintOptions(rawValue: 1 << 5)
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
| |- warning: static property 'displayProtocolConformances' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayProtocolConformances' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:74:20: warning: static property 'displayWhereClauses' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
72 | public static let displayGenericSpecializations = SymbolPrintOptions(rawValue: 1 << 6)
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
| |- warning: static property 'displayWhereClauses' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayWhereClauses' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:75:20: warning: static property 'displayEntityTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
73 | public static let displayProtocolConformances = SymbolPrintOptions(rawValue: 1 << 5)
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
| |- warning: static property 'displayEntityTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'displayEntityTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:76:20: warning: static property 'shortenPartialApply' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
74 | public static let displayWhereClauses = SymbolPrintOptions(rawValue: 1 << 8)
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
| |- warning: static property 'shortenPartialApply' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shortenPartialApply' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:77:20: warning: static property 'shortenThunk' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
75 | public static let displayEntityTypes = SymbolPrintOptions(rawValue: 1 << 9)
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
| |- warning: static property 'shortenThunk' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shortenThunk' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:78:20: warning: static property 'shortenValueWitness' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
76 | public static let shortenPartialApply = SymbolPrintOptions(rawValue: 1 << 10)
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
| |- warning: static property 'shortenValueWitness' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shortenValueWitness' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
80 | public static let showPrivateDiscriminators = SymbolPrintOptions(rawValue: 1 << 14)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:79:20: warning: static property 'shortenArchetype' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
77 | public static let shortenThunk = SymbolPrintOptions(rawValue: 1 << 11)
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
| |- warning: static property 'shortenArchetype' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shortenArchetype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | public static let showPrivateDiscriminators = SymbolPrintOptions(rawValue: 1 << 14)
81 | public static let showFunctionArgumentTypes = SymbolPrintOptions(rawValue: 1 << 15)
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:80:20: warning: static property 'showPrivateDiscriminators' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
78 | public static let shortenValueWitness = SymbolPrintOptions(rawValue: 1 << 12)
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
80 | public static let showPrivateDiscriminators = SymbolPrintOptions(rawValue: 1 << 14)
| |- warning: static property 'showPrivateDiscriminators' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'showPrivateDiscriminators' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | public static let showFunctionArgumentTypes = SymbolPrintOptions(rawValue: 1 << 15)
82 |
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:81:20: warning: static property 'showFunctionArgumentTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
79 | public static let shortenArchetype = SymbolPrintOptions(rawValue: 1 << 13)
80 | public static let showPrivateDiscriminators = SymbolPrintOptions(rawValue: 1 << 14)
81 | public static let showFunctionArgumentTypes = SymbolPrintOptions(rawValue: 1 << 15)
| |- warning: static property 'showFunctionArgumentTypes' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'showFunctionArgumentTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | public init(rawValue: Int) {
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:87:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
85 | }
86 |
87 | public static let `default`: SymbolPrintOptions = [.displayDebuggerGeneratedModule, .qualifyEntities, .displayExtensionContexts, .displayUnmangledSuffix, .displayModuleNames, .displayGenericSpecializations, .displayProtocolConformances, .displayWhereClauses, .displayEntityTypes, .showPrivateDiscriminators, .showFunctionArgumentTypes]
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public static let simplified: SymbolPrintOptions = [.synthesizeSugarOnTypes, .qualifyEntities, .shortenPartialApply, .shortenThunk, .shortenValueWitness, .shortenArchetype]
89 | }
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:88:20: warning: static property 'simplified' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
61 |
62 | /// These options mimic those used in the Swift project. Check that project for details.
63 | public struct SymbolPrintOptions: OptionSet {
| `- note: consider making struct 'SymbolPrintOptions' conform to the 'Sendable' protocol
64 | public let rawValue: Int
65 |
:
86 |
87 | public static let `default`: SymbolPrintOptions = [.displayDebuggerGeneratedModule, .qualifyEntities, .displayExtensionContexts, .displayUnmangledSuffix, .displayModuleNames, .displayGenericSpecializations, .displayProtocolConformances, .displayWhereClauses, .displayEntityTypes, .showPrivateDiscriminators, .showFunctionArgumentTypes]
88 | public static let simplified: SymbolPrintOptions = [.synthesizeSugarOnTypes, .qualifyEntities, .shortenPartialApply, .shortenThunk, .shortenValueWitness, .shortenArchetype]
| |- warning: static property 'simplified' is not concurrency-safe because non-'Sendable' type 'SymbolPrintOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'simplified' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | }
90 |
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:3857:4: warning: using '_' to ignore the result of a Void-returning function is redundant
3855 | case .dependentGenericParamCount: return nil
3856 | case .dependentGenericConformanceRequirement:
3857 | _ = printFirstChild(name)
| `- warning: using '_' to ignore the result of a Void-returning function is redundant
3858 | _ = printOptional(name.children.at(1), prefix: ": ")
3859 | case .dependentGenericLayoutRequirement:
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:3926:4: warning: using '_' to ignore the result of a Void-returning function is redundant
3924 | case .sugaredArray:
3925 | target.write("[")
3926 | _ = printFirstChild(name)
| `- warning: using '_' to ignore the result of a Void-returning function is redundant
3927 | target.write("]")
3928 | case .sugaredDictionary:
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:3930:4: warning: using '_' to ignore the result of a Void-returning function is redundant
3928 | case .sugaredDictionary:
3929 | target.write("[")
3930 | _ = printFirstChild(name)
| `- warning: using '_' to ignore the result of a Void-returning function is redundant
3931 | target.write(" : ")
3932 | _ = printOptional(name.children.at(1))
/host/spi-builder-workspace/CwlDemangle/CwlDemangle.swift:3936:4: warning: using '_' to ignore the result of a Void-returning function is redundant
3934 | case .sugaredParen:
3935 | target.write("(")
3936 | _ = printFirstChild(name)
| `- warning: using '_' to ignore the result of a Void-returning function is redundant
3937 | target.write(")")
3938 | }
[6/10] Wrapping AST for CwlDemangle for debugging
[8/12] Emitting module CwlDemangleTool
[9/12] Compiling CwlDemangleTool main.swift
[10/13] Wrapping AST for CwlDemangleTool for debugging
[11/13] Write Objects.LinkFileList
[12/13] Linking demangle
Build complete! (15.61s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CwlDemangle",
"name" : "CwlDemangle",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CwlDemangle",
"targets" : [
"CwlDemangle"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "demangle",
"targets" : [
"CwlDemangleTool"
],
"type" : {
"executable" : null
}
}
],
"swift_languages_versions" : [
"4",
"4.2",
"5"
],
"targets" : [
{
"c99name" : "CwlDemangleTool",
"module_type" : "SwiftTarget",
"name" : "CwlDemangleTool",
"path" : "CwlDemangle",
"product_memberships" : [
"demangle"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"CwlDemangle"
],
"type" : "executable"
},
{
"c99name" : "CwlDemangleTests",
"module_type" : "SwiftTarget",
"name" : "CwlDemangleTests",
"path" : "CwlDemangleTests",
"sources" : [
"CwlDemangleAdditionalTests.swift",
"CwlDemangleSwiftProjectDerivedTests.swift"
],
"target_dependencies" : [
"CwlDemangle"
],
"type" : "test"
},
{
"c99name" : "CwlDemangle",
"module_type" : "SwiftTarget",
"name" : "CwlDemangle",
"path" : "CwlDemangle",
"product_memberships" : [
"CwlDemangle",
"demangle"
],
"sources" : [
"CwlDemangle.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.