The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build L10n-swift, reference master (ad6271), with Swift 6.0 for Linux on 1 Dec 2024 09:13:47 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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

Build Log

========================================
RunAll
========================================
Builder version: 4.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Decybel07/L10n-swift.git
Reference: master
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/Decybel07/L10n-swift
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at ad62717 Update changelog
Cloned https://github.com/Decybel07/L10n-swift.git
Revision (git rev-parse @):
ad62717311be1eb4571d0025902a0043fdaf5a33
SUCCESS checkout https://github.com/Decybel07/L10n-swift.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/Decybel07/L10n-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/4] Write sources
[1/4] Copying Plural.stringsdict
[1/4] Copying Info.plist
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/52] Emitting module L10n_swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Source/Core/Extensions/Locale+utils.swift:13:24: warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
11 | internal extension Locale {
12 |
13 |     private static let components: [(Locale) -> String?] = [
   |                        |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'components' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         { $0.languageCode },
15 |         { $0.scriptCode },
[6/58] Compiling L10n_swift L10n+utils.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Source/Core/Extensions/Locale+utils.swift:13:24: warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
11 | internal extension Locale {
12 |
13 |     private static let components: [(Locale) -> String?] = [
   |                        |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'components' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         { $0.languageCode },
15 |         { $0.scriptCode },
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[7/58] Compiling L10n_swift Locale+utils.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Source/Core/Extensions/Locale+utils.swift:13:24: warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
11 | internal extension Locale {
12 |
13 |     private static let components: [(Locale) -> String?] = [
   |                        |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'components' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         { $0.languageCode },
15 |         { $0.scriptCode },
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[8/58] Compiling L10n_swift NotificationName+L10nLanguageChanged.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Source/Core/Extensions/Locale+utils.swift:13:24: warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
11 | internal extension Locale {
12 |
13 |     private static let components: [(Locale) -> String?] = [
   |                        |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'components' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         { $0.languageCode },
15 |         { $0.scriptCode },
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[9/58] Compiling L10n_swift L10n.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Source/Core/Extensions/Locale+utils.swift:13:24: warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
11 | internal extension Locale {
12 |
13 |     private static let components: [(Locale) -> String?] = [
   |                        |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'components' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         { $0.languageCode },
15 |         { $0.scriptCode },
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[10/58] Compiling L10n_swift Localizable.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Source/Core/Extensions/Locale+utils.swift:13:24: warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
11 | internal extension Locale {
12 |
13 |     private static let components: [(Locale) -> String?] = [
   |                        |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'components' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         { $0.languageCode },
15 |         { $0.scriptCode },
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[11/58] Compiling L10n_swift LocalizedStringsConfiguration.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Source/Core/Extensions/Locale+utils.swift:13:24: warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
11 | internal extension Locale {
12 |
13 |     private static let components: [(Locale) -> String?] = [
   |                        |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'components' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         { $0.languageCode },
15 |         { $0.scriptCode },
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[12/58] Compiling L10n_swift BaseLogger.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Source/Core/Extensions/Locale+utils.swift:13:24: warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
11 | internal extension Locale {
12 |
13 |     private static let components: [(Locale) -> String?] = [
   |                        |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type '[(Locale) -> String?]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'components' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         { $0.languageCode },
15 |         { $0.scriptCode },
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[13/58] Compiling L10n_swift Bundle+utils.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[14/58] Compiling L10n_swift L10n+CustomDebugStringConvertible.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[15/58] Compiling L10n_swift L10n+CustomStringConvertible.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[16/58] Compiling L10n_swift L10n+Equatable.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[17/58] Compiling L10n_swift L10n+Localizable.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[18/58] Compiling L10n_swift L10n+deprecated.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[19/58] Compiling L10n_swift L10n+static.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/LocalizedStringsConfiguration.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Struct LocalizedStringsConfiguration used to modification of output.
12 | public struct LocalizedStringsConfiguration: TextDecorator {
   |               `- note: consider making struct 'LocalizedStringsConfiguration' conform to the 'Sendable' protocol
13 |
14 |     /// A shared instance of `L10n`.
15 |     public static let shared: LocalizedStringsConfiguration = .init(userDefaults: .standard)
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LocalizedStringsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 |     /// A Boolean value indicating whether a text shouldn't be localized. If `true`, the localization key will  be returned as text.
[20/58] Compiling L10n_swift UISearchBar+IBL10n.swift
[21/58] Compiling L10n_swift UIButton+IBL10n+focused.swift
[22/58] Compiling L10n_swift WKInterfaceButton+IBL10n.swift
[23/58] Compiling L10n_swift WKInterfaceController+IBL10n.swift
[24/58] Compiling L10n_swift WKInterfaceLabel+IBL10n.swift
[25/58] Compiling L10n_swift resource_bundle_accessor.swift
[26/58] Compiling L10n_swift UISegmentedControl+IBL10n.swift
[27/58] Compiling L10n_swift UITabBarItem+IBL10n.swift
[28/58] Compiling L10n_swift UITextField+IBL10n.swift
[29/58] Compiling L10n_swift UIViewController+IBL10n.swift
[30/58] Compiling L10n_swift UIDatePicker+IBL10n.swift
[31/58] Compiling L10n_swift UINavigationItem+IBL10n.swift
[32/58] Compiling L10n_swift StringsResourceProvider.swift
/host/spi-builder-workspace/Source/Core/Resource/Provider/StringsdictResourceProvider.swift:18:27: warning: 'init(contentsOfFile:)' is deprecated
16 |
17 |     func load(file path: String) -> [String: Any] {
18 |         return self.clean(NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:])
   |                           `- warning: 'init(contentsOfFile:)' is deprecated
19 |     }
20 |
[33/58] Compiling L10n_swift StringsdictResourceProvider.swift
/host/spi-builder-workspace/Source/Core/Resource/Provider/StringsdictResourceProvider.swift:18:27: warning: 'init(contentsOfFile:)' is deprecated
16 |
17 |     func load(file path: String) -> [String: Any] {
18 |         return self.clean(NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:])
   |                           `- warning: 'init(contentsOfFile:)' is deprecated
19 |     }
20 |
[34/58] Compiling L10n_swift DictionaryResource.swift
/host/spi-builder-workspace/Source/Core/Resource/Provider/StringsdictResourceProvider.swift:18:27: warning: 'init(contentsOfFile:)' is deprecated
16 |
17 |     func load(file path: String) -> [String: Any] {
18 |         return self.clean(NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:])
   |                           `- warning: 'init(contentsOfFile:)' is deprecated
19 |     }
20 |
[35/58] Compiling L10n_swift EmptyResource.swift
/host/spi-builder-workspace/Source/Core/Resource/Provider/StringsdictResourceProvider.swift:18:27: warning: 'init(contentsOfFile:)' is deprecated
16 |
17 |     func load(file path: String) -> [String: Any] {
18 |         return self.clean(NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:])
   |                           `- warning: 'init(contentsOfFile:)' is deprecated
19 |     }
20 |
[36/58] Compiling L10n_swift Resource.swift
/host/spi-builder-workspace/Source/Core/Resource/Provider/StringsdictResourceProvider.swift:18:27: warning: 'init(contentsOfFile:)' is deprecated
16 |
17 |     func load(file path: String) -> [String: Any] {
18 |         return self.clean(NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:])
   |                           `- warning: 'init(contentsOfFile:)' is deprecated
19 |     }
20 |
[37/58] Compiling L10n_swift StringResource.swift
/host/spi-builder-workspace/Source/Core/Resource/Provider/StringsdictResourceProvider.swift:18:27: warning: 'init(contentsOfFile:)' is deprecated
16 |
17 |     func load(file path: String) -> [String: Any] {
18 |         return self.clean(NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:])
   |                           `- warning: 'init(contentsOfFile:)' is deprecated
19 |     }
20 |
[38/58] Compiling L10n_swift ResourceContainer.swift
/host/spi-builder-workspace/Source/Core/Resource/Provider/StringsdictResourceProvider.swift:18:27: warning: 'init(contentsOfFile:)' is deprecated
16 |
17 |     func load(file path: String) -> [String: Any] {
18 |         return self.clean(NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:])
   |                           `- warning: 'init(contentsOfFile:)' is deprecated
19 |     }
20 |
[39/58] Compiling L10n_swift Number+Localizable.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
[40/58] Compiling L10n_swift String+Localizable.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
[41/58] Compiling L10n_swift IBL10n.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
[42/58] Compiling L10n_swift UIBarItem+IBL10n.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
[43/58] Compiling L10n_swift UIButton+IBL10n.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
[44/58] Compiling L10n_swift UILabel+IBL10n.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
[45/58] Compiling L10n_swift Logger.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/Resource/Provider/ResourceProvider.swift:31:16: warning: 'init(contentsOfFile:)' is deprecated
29 |
30 |     func load(file path: String) -> [String: Any] {
31 |         return NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:]
   |                `- warning: 'init(contentsOfFile:)' is deprecated
32 |     }
33 | }
[46/58] Compiling L10n_swift NumericPluralArg.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/Resource/Provider/ResourceProvider.swift:31:16: warning: 'init(contentsOfFile:)' is deprecated
29 |
30 |     func load(file path: String) -> [String: Any] {
31 |         return NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:]
   |                `- warning: 'init(contentsOfFile:)' is deprecated
32 |     }
33 | }
[47/58] Compiling L10n_swift Plural.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/Resource/Provider/ResourceProvider.swift:31:16: warning: 'init(contentsOfFile:)' is deprecated
29 |
30 |     func load(file path: String) -> [String: Any] {
31 |         return NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:]
   |                `- warning: 'init(contentsOfFile:)' is deprecated
32 |     }
33 | }
[48/58] Compiling L10n_swift PluralArg.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/Resource/Provider/ResourceProvider.swift:31:16: warning: 'init(contentsOfFile:)' is deprecated
29 |
30 |     func load(file path: String) -> [String: Any] {
31 |         return NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:]
   |                `- warning: 'init(contentsOfFile:)' is deprecated
32 |     }
33 | }
[49/58] Compiling L10n_swift JsonResourceProvider.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/Resource/Provider/ResourceProvider.swift:31:16: warning: 'init(contentsOfFile:)' is deprecated
29 |
30 |     func load(file path: String) -> [String: Any] {
31 |         return NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:]
   |                `- warning: 'init(contentsOfFile:)' is deprecated
32 |     }
33 | }
[50/58] Compiling L10n_swift PlistResourceProvider.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/Resource/Provider/ResourceProvider.swift:31:16: warning: 'init(contentsOfFile:)' is deprecated
29 |
30 |     func load(file path: String) -> [String: Any] {
31 |         return NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:]
   |                `- warning: 'init(contentsOfFile:)' is deprecated
32 |     }
33 | }
[51/58] Compiling L10n_swift ResourceProvider.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Core/Resource/Provider/ResourceProvider.swift:31:16: warning: 'init(contentsOfFile:)' is deprecated
29 |
30 |     func load(file path: String) -> [String: Any] {
31 |         return NSDictionary(contentsOfFile: path) as? [String: Any] ?? [:]
   |                `- warning: 'init(contentsOfFile:)' is deprecated
32 |     }
33 | }
[52/58] Compiling L10n_swift AccentedTextDecorator.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
[53/58] Compiling L10n_swift BoundedTextDecorator.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
[54/58] Compiling L10n_swift DoubleLengthTextDecorator.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
[55/58] Compiling L10n_swift RightToLeftTextDecorator.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
[56/58] Compiling L10n_swift TextDecorator.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
[57/58] Compiling L10n_swift Date+Localizable.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
[58/58] Compiling L10n_swift NSNumber+Localizable.swift
/host/spi-builder-workspace/Source/Core/Extensions/L10n+static.swift:16:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// This instance is used in extensions
16 |     static var shared: L10n = {
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         let instance = L10n()
18 |         L10n.preferredLanguage = instance.language
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:66:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 64 |             formatter.dateStyle = dateStyle
 65 |             formatter.timeStyle = timeStyle
 66 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 67 |         }
 68 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:80:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 78 |         return self.l10n(instance) { formatter in
 79 |             formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: template, options: 0, locale: instance.locale)
 80 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 81 |         }
 82 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:23: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                       `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
/host/spi-builder-workspace/Source/Extensions/Date+Localizable.swift:94:74: error: value of type 'DateFormatter' has no member 'formattingContext'
 92 |         return self.l10n(instance) { formatter in
 93 |             formatter.dateFormat = format
 94 |             formatter.formattingContext = formattingContext ?? formatter.formattingContext
    |                                                                          `- error: value of type 'DateFormatter' has no member 'formattingContext'
 95 |         }
 96 |     }
BUILD FAILURE 6.0 linux