Build Information
Failed to build SWCompression, reference develop (e32887), with Swift 6.1 for Android on 1 Mar 2026 18:37:05 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1Build Log
10 |
11 | /// Raw bit flags value (in decimal).
:
27 |
28 | /// Owner can read.
29 | public static let readOwner = Permissions(rawValue: 0o0400)
| |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
30 |
31 | /// Owner can write.
32 | public static let writeOwner = Permissions(rawValue: 0o0200)
| |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
33 |
34 | /// Owner can execute.
35 | public static let executeOwner = Permissions(rawValue: 0o0100)
| |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
36 |
37 | /// Group can read.
38 | public static let readGroup = Permissions(rawValue: 0o0040)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
39 |
40 | /// Group can write.
41 | public static let writeGroup = Permissions(rawValue: 0o0020)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
42 |
43 | /// Group can execute.
44 | public static let executeGroup = Permissions(rawValue: 0o0010)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
45 |
46 | /// Others can read.
47 | public static let readOther = Permissions(rawValue: 0o0004)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
48 |
49 | /// Others can write.
50 | public static let writeOther = Permissions(rawValue: 0o0002)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
51 |
52 | /// Others can execute.
53 | public static let executeOther = Permissions(rawValue: 0o0001)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[75/121] Compiling SWCompression Container.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
18 |
19 | /// File is archive or archived.
20 | public static let archive = DosAttributes(rawValue: 0b00100000)
| |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
21 |
22 | /// File is a directory.
23 | public static let directory = DosAttributes(rawValue: 0b00010000)
| |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
24 |
25 | /// File is a volume.
26 | public static let volume = DosAttributes(rawValue: 0b00001000)
| |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
27 |
28 | /// File is a system file.
29 | public static let system = DosAttributes(rawValue: 0b00000100)
| |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
30 |
31 | /// File is hidden.
32 | public static let hidden = DosAttributes(rawValue: 0b00000010)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
33 |
34 | /// File is read-only.
35 | public static let readOnly = DosAttributes(rawValue: 0b00000001)
| |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
18 |
19 | /// Set UID.
20 | public static let setuid = Permissions(rawValue: 0o4000)
| |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
21 |
22 | /// Set GID.
23 | public static let setgid = Permissions(rawValue: 0o2000)
| |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
24 |
25 | /// Sticky bit.
26 | public static let sticky = Permissions(rawValue: 0o1000)
| |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
27 |
28 | /// Owner can read.
29 | public static let readOwner = Permissions(rawValue: 0o0400)
| |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
30 |
31 | /// Owner can write.
32 | public static let writeOwner = Permissions(rawValue: 0o0200)
| |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
33 |
34 | /// Owner can execute.
35 | public static let executeOwner = Permissions(rawValue: 0o0100)
| |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
36 |
37 | /// Group can read.
38 | public static let readGroup = Permissions(rawValue: 0o0040)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
39 |
40 | /// Group can write.
41 | public static let writeGroup = Permissions(rawValue: 0o0020)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
42 |
43 | /// Group can execute.
44 | public static let executeGroup = Permissions(rawValue: 0o0010)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
45 |
46 | /// Others can read.
47 | public static let readOther = Permissions(rawValue: 0o0004)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
48 |
49 | /// Others can write.
50 | public static let writeOther = Permissions(rawValue: 0o0002)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
51 |
52 | /// Others can execute.
53 | public static let executeOther = Permissions(rawValue: 0o0001)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[76/121] Compiling SWCompression ContainerEntry.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
18 |
19 | /// File is archive or archived.
20 | public static let archive = DosAttributes(rawValue: 0b00100000)
| |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
21 |
22 | /// File is a directory.
23 | public static let directory = DosAttributes(rawValue: 0b00010000)
| |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
24 |
25 | /// File is a volume.
26 | public static let volume = DosAttributes(rawValue: 0b00001000)
| |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
27 |
28 | /// File is a system file.
29 | public static let system = DosAttributes(rawValue: 0b00000100)
| |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
30 |
31 | /// File is hidden.
32 | public static let hidden = DosAttributes(rawValue: 0b00000010)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
33 |
34 | /// File is read-only.
35 | public static let readOnly = DosAttributes(rawValue: 0b00000001)
| |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
18 |
19 | /// Set UID.
20 | public static let setuid = Permissions(rawValue: 0o4000)
| |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
21 |
22 | /// Set GID.
23 | public static let setgid = Permissions(rawValue: 0o2000)
| |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
24 |
25 | /// Sticky bit.
26 | public static let sticky = Permissions(rawValue: 0o1000)
| |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
27 |
28 | /// Owner can read.
29 | public static let readOwner = Permissions(rawValue: 0o0400)
| |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
30 |
31 | /// Owner can write.
32 | public static let writeOwner = Permissions(rawValue: 0o0200)
| |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
33 |
34 | /// Owner can execute.
35 | public static let executeOwner = Permissions(rawValue: 0o0100)
| |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
36 |
37 | /// Group can read.
38 | public static let readGroup = Permissions(rawValue: 0o0040)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
39 |
40 | /// Group can write.
41 | public static let writeGroup = Permissions(rawValue: 0o0020)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
42 |
43 | /// Group can execute.
44 | public static let executeGroup = Permissions(rawValue: 0o0010)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
45 |
46 | /// Others can read.
47 | public static let readOther = Permissions(rawValue: 0o0004)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
48 |
49 | /// Others can write.
50 | public static let writeOther = Permissions(rawValue: 0o0002)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
51 |
52 | /// Others can execute.
53 | public static let executeOther = Permissions(rawValue: 0o0001)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[77/121] Compiling SWCompression ContainerEntryInfo.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
18 |
19 | /// File is archive or archived.
20 | public static let archive = DosAttributes(rawValue: 0b00100000)
| |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
21 |
22 | /// File is a directory.
23 | public static let directory = DosAttributes(rawValue: 0b00010000)
| |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
24 |
25 | /// File is a volume.
26 | public static let volume = DosAttributes(rawValue: 0b00001000)
| |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
27 |
28 | /// File is a system file.
29 | public static let system = DosAttributes(rawValue: 0b00000100)
| |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
30 |
31 | /// File is hidden.
32 | public static let hidden = DosAttributes(rawValue: 0b00000010)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
33 |
34 | /// File is read-only.
35 | public static let readOnly = DosAttributes(rawValue: 0b00000001)
| |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
18 |
19 | /// Set UID.
20 | public static let setuid = Permissions(rawValue: 0o4000)
| |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
21 |
22 | /// Set GID.
23 | public static let setgid = Permissions(rawValue: 0o2000)
| |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
24 |
25 | /// Sticky bit.
26 | public static let sticky = Permissions(rawValue: 0o1000)
| |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
27 |
28 | /// Owner can read.
29 | public static let readOwner = Permissions(rawValue: 0o0400)
| |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
30 |
31 | /// Owner can write.
32 | public static let writeOwner = Permissions(rawValue: 0o0200)
| |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
33 |
34 | /// Owner can execute.
35 | public static let executeOwner = Permissions(rawValue: 0o0100)
| |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
36 |
37 | /// Group can read.
38 | public static let readGroup = Permissions(rawValue: 0o0040)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
39 |
40 | /// Group can write.
41 | public static let writeGroup = Permissions(rawValue: 0o0020)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
42 |
43 | /// Group can execute.
44 | public static let executeGroup = Permissions(rawValue: 0o0010)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
45 |
46 | /// Others can read.
47 | public static let readOther = Permissions(rawValue: 0o0004)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
48 |
49 | /// Others can write.
50 | public static let writeOther = Permissions(rawValue: 0o0002)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
51 |
52 | /// Others can execute.
53 | public static let executeOther = Permissions(rawValue: 0o0001)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[78/121] Compiling SWCompression ContainerEntryType.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
18 |
19 | /// File is archive or archived.
20 | public static let archive = DosAttributes(rawValue: 0b00100000)
| |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
21 |
22 | /// File is a directory.
23 | public static let directory = DosAttributes(rawValue: 0b00010000)
| |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
24 |
25 | /// File is a volume.
26 | public static let volume = DosAttributes(rawValue: 0b00001000)
| |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
27 |
28 | /// File is a system file.
29 | public static let system = DosAttributes(rawValue: 0b00000100)
| |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
30 |
31 | /// File is hidden.
32 | public static let hidden = DosAttributes(rawValue: 0b00000010)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
33 |
34 | /// File is read-only.
35 | public static let readOnly = DosAttributes(rawValue: 0b00000001)
| |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
18 |
19 | /// Set UID.
20 | public static let setuid = Permissions(rawValue: 0o4000)
| |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
21 |
22 | /// Set GID.
23 | public static let setgid = Permissions(rawValue: 0o2000)
| |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
24 |
25 | /// Sticky bit.
26 | public static let sticky = Permissions(rawValue: 0o1000)
| |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
27 |
28 | /// Owner can read.
29 | public static let readOwner = Permissions(rawValue: 0o0400)
| |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
30 |
31 | /// Owner can write.
32 | public static let writeOwner = Permissions(rawValue: 0o0200)
| |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
33 |
34 | /// Owner can execute.
35 | public static let executeOwner = Permissions(rawValue: 0o0100)
| |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
36 |
37 | /// Group can read.
38 | public static let readGroup = Permissions(rawValue: 0o0040)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
39 |
40 | /// Group can write.
41 | public static let writeGroup = Permissions(rawValue: 0o0020)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
42 |
43 | /// Group can execute.
44 | public static let executeGroup = Permissions(rawValue: 0o0010)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
45 |
46 | /// Others can read.
47 | public static let readOther = Permissions(rawValue: 0o0004)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
48 |
49 | /// Others can write.
50 | public static let writeOther = Permissions(rawValue: 0o0002)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
51 |
52 | /// Others can execute.
53 | public static let executeOther = Permissions(rawValue: 0o0001)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[79/121] Compiling SWCompression DosAttributes.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
18 |
19 | /// File is archive or archived.
20 | public static let archive = DosAttributes(rawValue: 0b00100000)
| |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
21 |
22 | /// File is a directory.
23 | public static let directory = DosAttributes(rawValue: 0b00010000)
| |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
24 |
25 | /// File is a volume.
26 | public static let volume = DosAttributes(rawValue: 0b00001000)
| |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
27 |
28 | /// File is a system file.
29 | public static let system = DosAttributes(rawValue: 0b00000100)
| |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
30 |
31 | /// File is hidden.
32 | public static let hidden = DosAttributes(rawValue: 0b00000010)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
33 |
34 | /// File is read-only.
35 | public static let readOnly = DosAttributes(rawValue: 0b00000001)
| |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
18 |
19 | /// Set UID.
20 | public static let setuid = Permissions(rawValue: 0o4000)
| |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
21 |
22 | /// Set GID.
23 | public static let setgid = Permissions(rawValue: 0o2000)
| |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
24 |
25 | /// Sticky bit.
26 | public static let sticky = Permissions(rawValue: 0o1000)
| |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
27 |
28 | /// Owner can read.
29 | public static let readOwner = Permissions(rawValue: 0o0400)
| |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
30 |
31 | /// Owner can write.
32 | public static let writeOwner = Permissions(rawValue: 0o0200)
| |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
33 |
34 | /// Owner can execute.
35 | public static let executeOwner = Permissions(rawValue: 0o0100)
| |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
36 |
37 | /// Group can read.
38 | public static let readGroup = Permissions(rawValue: 0o0040)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
39 |
40 | /// Group can write.
41 | public static let writeGroup = Permissions(rawValue: 0o0020)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
42 |
43 | /// Group can execute.
44 | public static let executeGroup = Permissions(rawValue: 0o0010)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
45 |
46 | /// Others can read.
47 | public static let readOther = Permissions(rawValue: 0o0004)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
48 |
49 | /// Others can write.
50 | public static let writeOther = Permissions(rawValue: 0o0002)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
51 |
52 | /// Others can execute.
53 | public static let executeOther = Permissions(rawValue: 0o0001)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[80/121] Compiling SWCompression Permissions.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
18 |
19 | /// File is archive or archived.
20 | public static let archive = DosAttributes(rawValue: 0b00100000)
| |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
21 |
22 | /// File is a directory.
23 | public static let directory = DosAttributes(rawValue: 0b00010000)
| |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
24 |
25 | /// File is a volume.
26 | public static let volume = DosAttributes(rawValue: 0b00001000)
| |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
27 |
28 | /// File is a system file.
29 | public static let system = DosAttributes(rawValue: 0b00000100)
| |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
30 |
31 | /// File is hidden.
32 | public static let hidden = DosAttributes(rawValue: 0b00000010)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
33 |
34 | /// File is read-only.
35 | public static let readOnly = DosAttributes(rawValue: 0b00000001)
| |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
18 |
19 | /// Set UID.
20 | public static let setuid = Permissions(rawValue: 0o4000)
| |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
21 |
22 | /// Set GID.
23 | public static let setgid = Permissions(rawValue: 0o2000)
| |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
24 |
25 | /// Sticky bit.
26 | public static let sticky = Permissions(rawValue: 0o1000)
| |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
27 |
28 | /// Owner can read.
29 | public static let readOwner = Permissions(rawValue: 0o0400)
| |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
30 |
31 | /// Owner can write.
32 | public static let writeOwner = Permissions(rawValue: 0o0200)
| |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
33 |
34 | /// Owner can execute.
35 | public static let executeOwner = Permissions(rawValue: 0o0100)
| |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
36 |
37 | /// Group can read.
38 | public static let readGroup = Permissions(rawValue: 0o0040)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
39 |
40 | /// Group can write.
41 | public static let writeGroup = Permissions(rawValue: 0o0020)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
42 |
43 | /// Group can execute.
44 | public static let executeGroup = Permissions(rawValue: 0o0010)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
45 |
46 | /// Others can read.
47 | public static let readOther = Permissions(rawValue: 0o0004)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
48 |
49 | /// Others can write.
50 | public static let writeOther = Permissions(rawValue: 0o0002)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
51 |
52 | /// Others can execute.
53 | public static let executeOther = Permissions(rawValue: 0o0001)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[81/121] Compiling SWCompression DataError.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
18 |
19 | /// File is archive or archived.
20 | public static let archive = DosAttributes(rawValue: 0b00100000)
| |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
21 |
22 | /// File is a directory.
23 | public static let directory = DosAttributes(rawValue: 0b00010000)
| |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
24 |
25 | /// File is a volume.
26 | public static let volume = DosAttributes(rawValue: 0b00001000)
| |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
27 |
28 | /// File is a system file.
29 | public static let system = DosAttributes(rawValue: 0b00000100)
| |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
30 |
31 | /// File is hidden.
32 | public static let hidden = DosAttributes(rawValue: 0b00000010)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
33 |
34 | /// File is read-only.
35 | public static let readOnly = DosAttributes(rawValue: 0b00000001)
| |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
18 |
19 | /// Set UID.
20 | public static let setuid = Permissions(rawValue: 0o4000)
| |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
21 |
22 | /// Set GID.
23 | public static let setgid = Permissions(rawValue: 0o2000)
| |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
24 |
25 | /// Sticky bit.
26 | public static let sticky = Permissions(rawValue: 0o1000)
| |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
27 |
28 | /// Owner can read.
29 | public static let readOwner = Permissions(rawValue: 0o0400)
| |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
30 |
31 | /// Owner can write.
32 | public static let writeOwner = Permissions(rawValue: 0o0200)
| |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
33 |
34 | /// Owner can execute.
35 | public static let executeOwner = Permissions(rawValue: 0o0100)
| |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
36 |
37 | /// Group can read.
38 | public static let readGroup = Permissions(rawValue: 0o0040)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
39 |
40 | /// Group can write.
41 | public static let writeGroup = Permissions(rawValue: 0o0020)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
42 |
43 | /// Group can execute.
44 | public static let executeGroup = Permissions(rawValue: 0o0010)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
45 |
46 | /// Others can read.
47 | public static let readOther = Permissions(rawValue: 0o0004)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
48 |
49 | /// Others can write.
50 | public static let writeOther = Permissions(rawValue: 0o0002)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
51 |
52 | /// Others can execute.
53 | public static let executeOther = Permissions(rawValue: 0o0001)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[82/121] Compiling SWCompression DecompressionAlgorithm.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
18 |
19 | /// File is archive or archived.
20 | public static let archive = DosAttributes(rawValue: 0b00100000)
| |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
21 |
22 | /// File is a directory.
23 | public static let directory = DosAttributes(rawValue: 0b00010000)
| |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
24 |
25 | /// File is a volume.
26 | public static let volume = DosAttributes(rawValue: 0b00001000)
| |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
27 |
28 | /// File is a system file.
29 | public static let system = DosAttributes(rawValue: 0b00000100)
| |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
30 |
31 | /// File is hidden.
32 | public static let hidden = DosAttributes(rawValue: 0b00000010)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file attributes in DOS format.
9 | public struct DosAttributes: OptionSet {
| `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value.
:
33 |
34 | /// File is read-only.
35 | public static let readOnly = DosAttributes(rawValue: 0b00000001)
| |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
18 |
19 | /// Set UID.
20 | public static let setuid = Permissions(rawValue: 0o4000)
| |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
21 |
22 | /// Set GID.
23 | public static let setgid = Permissions(rawValue: 0o2000)
| |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
24 |
25 | /// Sticky bit.
26 | public static let sticky = Permissions(rawValue: 0o1000)
| |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
27 |
28 | /// Owner can read.
29 | public static let readOwner = Permissions(rawValue: 0o0400)
| |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
30 |
31 | /// Owner can write.
32 | public static let writeOwner = Permissions(rawValue: 0o0200)
| |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
33 |
34 | /// Owner can execute.
35 | public static let executeOwner = Permissions(rawValue: 0o0100)
| |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
36 |
37 | /// Group can read.
38 | public static let readGroup = Permissions(rawValue: 0o0040)
| |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
39 |
40 | /// Group can write.
41 | public static let writeGroup = Permissions(rawValue: 0o0020)
| |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
42 |
43 | /// Group can execute.
44 | public static let executeGroup = Permissions(rawValue: 0o0010)
| |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
45 |
46 | /// Others can read.
47 | public static let readOther = Permissions(rawValue: 0o0004)
| |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
48 |
49 | /// Others can write.
50 | public static let writeOther = Permissions(rawValue: 0o0002)
| |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// Represents file access permissions in UNIX format.
9 | public struct Permissions: OptionSet {
| `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 | /// Raw bit flags value (in decimal).
:
51 |
52 | /// Others can execute.
53 | public static let executeOther = Permissions(rawValue: 0o0001)
| |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[83/121] Compiling SWCompression 7zSubstreamInfo.swift
[84/121] Compiling SWCompression CompressionMethod+7z.swift
[85/121] Compiling SWCompression MsbBitReader+7z.swift
[86/121] Compiling SWCompression BZip2+BlockSize.swift
[87/121] Compiling SWCompression BZip2+Compress.swift
[88/121] Compiling SWCompression BZip2+Lengths.swift
[89/121] Compiling SWCompression BZip2.swift
[90/121] Compiling SWCompression BZip2Error.swift
[91/121] Compiling SWCompression BurrowsWheeler.swift
[92/121] Compiling SWCompression SuffixArray.swift
[93/121] Compiling SWCompression Archive.swift
[94/121] Compiling SWCompression CheckSums.swift
[95/121] Compiling SWCompression Code.swift
[96/121] Compiling SWCompression DeltaFilter.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[97/121] Compiling SWCompression Extensions.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[98/121] Compiling SWCompression FileSystemType.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[99/121] Compiling SWCompression Deflate+Compress.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[100/121] Compiling SWCompression Deflate+Constants.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[101/121] Compiling SWCompression Deflate.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[102/121] Compiling SWCompression DeflateError.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[103/121] Compiling SWCompression FileSystemType+Gzip.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[104/121] Compiling SWCompression GzipArchive.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[105/121] Compiling SWCompression GzipError.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[106/121] Compiling SWCompression GzipHeader+ExtraField.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[107/121] Compiling SWCompression GzipHeader.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[108/121] Compiling SWCompression LZ4+Compress.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:30:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
28 | for each already decompressed member, including the one with mismatching checksum.
29 | */
30 | case wrongCRC([GzipArchive.Member])
| `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
31 | /// Computed 'isize' didn't match the value stored in the archive.
32 | case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
11 |
12 | /// Represents the member of a multi-member GZip archive.
13 | public struct Member {
| `- note: consider making struct 'Member' conform to the 'Sendable' protocol
14 |
15 | /// GZip header of a member.
[109/121] Compiling SWCompression 7zCoder+Equatable.swift
[110/121] Compiling SWCompression 7zCoder.swift
[111/121] Compiling SWCompression 7zCoderInfo.swift
[112/121] Compiling SWCompression 7zContainer.swift
[113/121] Compiling SWCompression 7zEntry.swift
[114/121] Compiling SWCompression 7zEntryInfo.swift
[115/121] Compiling SWCompression 7zError.swift
[116/121] Compiling SWCompression 7zFileInfo.swift
[117/121] Compiling SWCompression 7zFolder.swift
[118/121] Compiling SWCompression 7zHeader.swift
[119/121] Compiling SWCompression 7zPackInfo.swift
[120/121] Compiling SWCompression 7zProperty.swift
[121/121] Compiling SWCompression 7zStreamInfo.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:08fa5f1bd27c53c71ebe7c2842e29d52715d90da2c5b8f52513c9039c232613d
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/13] Compiling BitByteData SignedNumberRepresentation.swift
[3/14] Compiling BitByteData resource_bundle_accessor.swift
[4/14] Compiling BitByteData MsbBitWriter.swift
[5/14] Compiling BitByteData Extensions.swift
[6/14] Compiling BitByteData LittleEndianByteReader.swift
[7/14] Emitting module BitByteData
[8/14] Compiling BitByteData BitWriter.swift
[9/14] Compiling BitByteData ByteReader.swift
[10/14] Compiling BitByteData BigEndianByteReader.swift
[11/14] Compiling BitByteData BitReader.swift
[12/14] Compiling BitByteData LsbBitReader.swift
[13/14] Compiling BitByteData LsbBitWriter.swift
[14/14] Compiling BitByteData MsbBitReader.swift
[16/105] Compiling SWCompression CodeLength.swift
[17/105] Compiling SWCompression DecodingTree.swift
[18/105] Compiling SWCompression EncodingTree.swift
[19/105] Compiling SWCompression CompressionAlgorithm.swift
[20/105] Compiling SWCompression CompressionMethod.swift
[21/105] Compiling SWCompression Container.swift
[22/105] Compiling SWCompression ContainerEntry.swift
[23/105] Compiling SWCompression ContainerEntryInfo.swift
[24/105] Compiling SWCompression ContainerEntryType.swift
[25/105] Compiling SWCompression DosAttributes.swift
[26/105] Compiling SWCompression Permissions.swift
[27/105] Compiling SWCompression DataError.swift
[28/105] Compiling SWCompression DecompressionAlgorithm.swift
[29/117] Emitting module SWCompression
[30/117] Compiling SWCompression ZipContainer.swift
[31/117] Compiling SWCompression ZipEndOfCentralDirectory.swift
[32/117] Compiling SWCompression ZipEntry.swift
[33/117] Compiling SWCompression ZipEntryInfo.swift
[34/117] Compiling SWCompression ZipEntryInfoHelper.swift
[35/117] Compiling SWCompression ZipError.swift
[36/117] Compiling SWCompression ZipExtraField.swift
[37/117] Compiling SWCompression ZipLocalHeader.swift
[38/117] Compiling SWCompression ZlibArchive.swift
[39/117] Compiling SWCompression ZlibError.swift
[40/117] Compiling SWCompression ZlibHeader.swift
[41/117] Compiling SWCompression resource_bundle_accessor.swift
[42/117] Compiling SWCompression TarWriter.swift
[43/117] Compiling SWCompression LittleEndianByteReader+XZ.swift
[44/117] Compiling SWCompression Sha256.swift
[45/117] Compiling SWCompression XZArchive.swift
[46/117] Compiling SWCompression XZBlock.swift
[47/117] Compiling SWCompression XZError.swift
[48/117] Compiling SWCompression XZStreamHeader.swift
[49/117] Compiling SWCompression BuiltinExtraFields.swift
[50/117] Compiling SWCompression CompressionMethod+Zip.swift
[51/117] Compiling SWCompression FileSystemType+Zip.swift
[52/117] Compiling SWCompression LittleEndianByteReader+Zip.swift
[53/117] Compiling SWCompression ZipCentralDirectoryEntry.swift
[54/117] Compiling SWCompression ContainerEntryType+Tar.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[55/117] Compiling SWCompression Data+Tar.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[56/117] Compiling SWCompression LittleEndianByteReader+Tar.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[57/117] Compiling SWCompression TarContainer.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[58/117] Compiling SWCompression TarCreateError.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[59/117] Compiling SWCompression TarEntry.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[60/117] Compiling SWCompression TarEntryInfo.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[61/117] Compiling SWCompression TarError.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[62/117] Compiling SWCompression TarExtendedHeader.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[63/117] Compiling SWCompression TarHeader.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[64/117] Compiling SWCompression TarParser.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[65/117] Compiling SWCompression TarReader.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
58 | */
59 | public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
60 | return try autoreleasepool {
| `- error: cannot find 'autoreleasepool' in scope
61 | let entry = try read()
62 | return try transform(entry)
[66/117] Compiling SWCompression 7zSubstreamInfo.swift
[67/117] Compiling SWCompression CompressionMethod+7z.swift
[68/117] Compiling SWCompression MsbBitReader+7z.swift
[69/117] Compiling SWCompression BZip2+BlockSize.swift
[70/117] Compiling SWCompression BZip2+Compress.swift
[71/117] Compiling SWCompression BZip2+Lengths.swift
[72/117] Compiling SWCompression BZip2.swift
[73/117] Compiling SWCompression BZip2Error.swift
[74/117] Compiling SWCompression BurrowsWheeler.swift
[75/117] Compiling SWCompression SuffixArray.swift
[76/117] Compiling SWCompression Archive.swift
[77/117] Compiling SWCompression CheckSums.swift
[78/117] Compiling SWCompression Code.swift
[79/117] Compiling SWCompression 7zCoder+Equatable.swift
[80/117] Compiling SWCompression 7zCoder.swift
[81/117] Compiling SWCompression 7zCoderInfo.swift
[82/117] Compiling SWCompression 7zContainer.swift
[83/117] Compiling SWCompression 7zEntry.swift
[84/117] Compiling SWCompression 7zEntryInfo.swift
[85/117] Compiling SWCompression 7zError.swift
[86/117] Compiling SWCompression 7zFileInfo.swift
[87/117] Compiling SWCompression 7zFolder.swift
[88/117] Compiling SWCompression 7zHeader.swift
[89/117] Compiling SWCompression 7zPackInfo.swift
[90/117] Compiling SWCompression 7zProperty.swift
[91/117] Compiling SWCompression 7zStreamInfo.swift
[92/117] Compiling SWCompression LZ4.swift
[93/117] Compiling SWCompression XxHash32.swift
[94/117] Compiling SWCompression LZMA.swift
[95/117] Compiling SWCompression LZMABitTreeDecoder.swift
[96/117] Compiling SWCompression LZMAConstants.swift
[97/117] Compiling SWCompression LZMADecoder.swift
[98/117] Compiling SWCompression LZMAError.swift
[99/117] Compiling SWCompression LZMALenDecoder.swift
[100/117] Compiling SWCompression LZMAProperties.swift
[101/117] Compiling SWCompression LZMARangeDecoder.swift
[102/117] Compiling SWCompression LZMA2.swift
[103/117] Compiling SWCompression LZMA2Decoder.swift
[104/117] Compiling SWCompression LZMA2Error.swift
[105/117] Compiling SWCompression DeltaFilter.swift
[106/117] Compiling SWCompression Extensions.swift
[107/117] Compiling SWCompression FileSystemType.swift
[108/117] Compiling SWCompression Deflate+Compress.swift
[109/117] Compiling SWCompression Deflate+Constants.swift
[110/117] Compiling SWCompression Deflate.swift
[111/117] Compiling SWCompression DeflateError.swift
[112/117] Compiling SWCompression FileSystemType+Gzip.swift
[113/117] Compiling SWCompression GzipArchive.swift
[114/117] Compiling SWCompression GzipError.swift
[115/117] Compiling SWCompression GzipHeader+ExtraField.swift
[116/117] Compiling SWCompression GzipHeader.swift
[117/117] Compiling SWCompression LZ4+Compress.swift
BUILD FAILURE 6.1 android