Build Information
Successful build of MusicTheory, reference master (af7d53
), with Swift 6.0 for watchOS using Xcode 16.2 on 30 Nov 2024 18:05:27 UTC.
Swift 6 data race errors: 630
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme MusicTheory -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
public static let P4 = Interval(quality: .perfect, degree: 4, semitones: 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P4 = Interval(quality: .perfect, degree: 4, semitones: 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:97:23: warning: static property 'P5' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P5 = Interval(quality: .perfect, degree: 5, semitones: 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:97:23: note: annotate 'P5' with '@MainActor' if property should only be accessed from the main actor
public static let P5 = Interval(quality: .perfect, degree: 5, semitones: 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:97:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P5 = Interval(quality: .perfect, degree: 5, semitones: 7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:99:23: warning: static property 'P8' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P8 = Interval(quality: .perfect, degree: 8, semitones: 12)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:99:23: note: annotate 'P8' with '@MainActor' if property should only be accessed from the main actor
public static let P8 = Interval(quality: .perfect, degree: 8, semitones: 12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P8 = Interval(quality: .perfect, degree: 8, semitones: 12)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:101:23: warning: static property 'P11' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P11 = Interval(quality: .perfect, degree: 11, semitones: 17)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:101:23: note: annotate 'P11' with '@MainActor' if property should only be accessed from the main actor
public static let P11 = Interval(quality: .perfect, degree: 11, semitones: 17)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P11 = Interval(quality: .perfect, degree: 11, semitones: 17)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:103:23: warning: static property 'P12' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P12 = Interval(quality: .perfect, degree: 12, semitones: 19)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:103:23: note: annotate 'P12' with '@MainActor' if property should only be accessed from the main actor
public static let P12 = Interval(quality: .perfect, degree: 12, semitones: 19)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:103:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P12 = Interval(quality: .perfect, degree: 12, semitones: 19)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:105:23: warning: static property 'P15' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P15 = Interval(quality: .perfect, degree: 15, semitones: 24)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:105:23: note: annotate 'P15' with '@MainActor' if property should only be accessed from the main actor
public static let P15 = Interval(quality: .perfect, degree: 15, semitones: 24)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:105:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P15 = Interval(quality: .perfect, degree: 15, semitones: 24)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:108:23: warning: static property 'm2' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m2 = Interval(quality: .minor, degree: 2, semitones: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:108:23: note: annotate 'm2' with '@MainActor' if property should only be accessed from the main actor
public static let m2 = Interval(quality: .minor, degree: 2, semitones: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m2 = Interval(quality: .minor, degree: 2, semitones: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:110:23: warning: static property 'm3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m3 = Interval(quality: .minor, degree: 3, semitones: 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:110:23: note: annotate 'm3' with '@MainActor' if property should only be accessed from the main actor
public static let m3 = Interval(quality: .minor, degree: 3, semitones: 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m3 = Interval(quality: .minor, degree: 3, semitones: 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:112:23: warning: static property 'm6' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m6 = Interval(quality: .minor, degree: 6, semitones: 8)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:112:23: note: annotate 'm6' with '@MainActor' if property should only be accessed from the main actor
public static let m6 = Interval(quality: .minor, degree: 6, semitones: 8)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m6 = Interval(quality: .minor, degree: 6, semitones: 8)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:114:23: warning: static property 'm7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m7 = Interval(quality: .minor, degree: 7, semitones: 10)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:114:23: note: annotate 'm7' with '@MainActor' if property should only be accessed from the main actor
public static let m7 = Interval(quality: .minor, degree: 7, semitones: 10)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m7 = Interval(quality: .minor, degree: 7, semitones: 10)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:116:23: warning: static property 'm9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m9 = Interval(quality: .minor, degree: 9, semitones: 13)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:116:23: note: annotate 'm9' with '@MainActor' if property should only be accessed from the main actor
public static let m9 = Interval(quality: .minor, degree: 9, semitones: 13)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m9 = Interval(quality: .minor, degree: 9, semitones: 13)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:118:23: warning: static property 'm10' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m10 = Interval(quality: .minor, degree: 10, semitones: 15)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:118:23: note: annotate 'm10' with '@MainActor' if property should only be accessed from the main actor
public static let m10 = Interval(quality: .minor, degree: 10, semitones: 15)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m10 = Interval(quality: .minor, degree: 10, semitones: 15)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:120:23: warning: static property 'm13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m13 = Interval(quality: .minor, degree: 13, semitones: 20)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:120:23: note: annotate 'm13' with '@MainActor' if property should only be accessed from the main actor
public static let m13 = Interval(quality: .minor, degree: 13, semitones: 20)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:120:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m13 = Interval(quality: .minor, degree: 13, semitones: 20)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:122:23: warning: static property 'm14' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m14 = Interval(quality: .minor, degree: 14, semitones: 22)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:122:23: note: annotate 'm14' with '@MainActor' if property should only be accessed from the main actor
public static let m14 = Interval(quality: .minor, degree: 14, semitones: 22)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:122:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m14 = Interval(quality: .minor, degree: 14, semitones: 22)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:125:23: warning: static property 'M2' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M2 = Interval(quality: .major, degree: 2, semitones: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:125:23: note: annotate 'M2' with '@MainActor' if property should only be accessed from the main actor
public static let M2 = Interval(quality: .major, degree: 2, semitones: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:125:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M2 = Interval(quality: .major, degree: 2, semitones: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:127:23: warning: static property 'M3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M3 = Interval(quality: .major, degree: 3, semitones: 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:127:23: note: annotate 'M3' with '@MainActor' if property should only be accessed from the main actor
public static let M3 = Interval(quality: .major, degree: 3, semitones: 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M3 = Interval(quality: .major, degree: 3, semitones: 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:129:23: warning: static property 'M6' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M6 = Interval(quality: .major, degree: 6, semitones: 9)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:129:23: note: annotate 'M6' with '@MainActor' if property should only be accessed from the main actor
public static let M6 = Interval(quality: .major, degree: 6, semitones: 9)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:129:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M6 = Interval(quality: .major, degree: 6, semitones: 9)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:131:23: warning: static property 'M7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M7 = Interval(quality: .major, degree: 7, semitones: 11)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:131:23: note: annotate 'M7' with '@MainActor' if property should only be accessed from the main actor
public static let M7 = Interval(quality: .major, degree: 7, semitones: 11)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:131:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M7 = Interval(quality: .major, degree: 7, semitones: 11)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:133:23: warning: static property 'M9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M9 = Interval(quality: .major, degree: 9, semitones: 14)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:133:23: note: annotate 'M9' with '@MainActor' if property should only be accessed from the main actor
public static let M9 = Interval(quality: .major, degree: 9, semitones: 14)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M9 = Interval(quality: .major, degree: 9, semitones: 14)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:135:23: warning: static property 'M10' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M10 = Interval(quality: .major, degree: 10, semitones: 16)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:135:23: note: annotate 'M10' with '@MainActor' if property should only be accessed from the main actor
public static let M10 = Interval(quality: .major, degree: 10, semitones: 16)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:135:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M10 = Interval(quality: .major, degree: 10, semitones: 16)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:137:23: warning: static property 'M13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M13 = Interval(quality: .major, degree: 13, semitones: 21)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:137:23: note: annotate 'M13' with '@MainActor' if property should only be accessed from the main actor
public static let M13 = Interval(quality: .major, degree: 13, semitones: 21)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:137:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M13 = Interval(quality: .major, degree: 13, semitones: 21)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:139:23: warning: static property 'M14' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M14 = Interval(quality: .major, degree: 14, semitones: 23)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:139:23: note: annotate 'M14' with '@MainActor' if property should only be accessed from the main actor
public static let M14 = Interval(quality: .major, degree: 14, semitones: 23)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:139:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M14 = Interval(quality: .major, degree: 14, semitones: 23)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:142:23: warning: static property 'd1' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d1 = Interval(quality: .diminished, degree: 1, semitones: -1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:142:23: note: annotate 'd1' with '@MainActor' if property should only be accessed from the main actor
public static let d1 = Interval(quality: .diminished, degree: 1, semitones: -1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:142:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d1 = Interval(quality: .diminished, degree: 1, semitones: -1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:144:23: warning: static property 'd2' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d2 = Interval(quality: .diminished, degree: 2, semitones: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:144:23: note: annotate 'd2' with '@MainActor' if property should only be accessed from the main actor
public static let d2 = Interval(quality: .diminished, degree: 2, semitones: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:144:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d2 = Interval(quality: .diminished, degree: 2, semitones: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:146:23: warning: static property 'd3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d3 = Interval(quality: .diminished, degree: 3, semitones: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:146:23: note: annotate 'd3' with '@MainActor' if property should only be accessed from the main actor
public static let d3 = Interval(quality: .diminished, degree: 3, semitones: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:146:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d3 = Interval(quality: .diminished, degree: 3, semitones: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:148:23: warning: static property 'd4' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d4 = Interval(quality: .diminished, degree: 4, semitones: 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:148:23: note: annotate 'd4' with '@MainActor' if property should only be accessed from the main actor
public static let d4 = Interval(quality: .diminished, degree: 4, semitones: 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:148:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d4 = Interval(quality: .diminished, degree: 4, semitones: 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:150:23: warning: static property 'd5' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d5 = Interval(quality: .diminished, degree: 5, semitones: 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:150:23: note: annotate 'd5' with '@MainActor' if property should only be accessed from the main actor
public static let d5 = Interval(quality: .diminished, degree: 5, semitones: 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:150:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d5 = Interval(quality: .diminished, degree: 5, semitones: 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:152:23: warning: static property 'd6' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d6 = Interval(quality: .diminished, degree: 6, semitones: 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:152:23: note: annotate 'd6' with '@MainActor' if property should only be accessed from the main actor
public static let d6 = Interval(quality: .diminished, degree: 6, semitones: 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:152:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d6 = Interval(quality: .diminished, degree: 6, semitones: 7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:154:23: warning: static property 'd7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d7 = Interval(quality: .diminished, degree: 7, semitones: 9)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:154:23: note: annotate 'd7' with '@MainActor' if property should only be accessed from the main actor
public static let d7 = Interval(quality: .diminished, degree: 7, semitones: 9)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:154:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d7 = Interval(quality: .diminished, degree: 7, semitones: 9)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:156:23: warning: static property 'd8' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d8 = Interval(quality: .diminished, degree: 8, semitones: 11)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:156:23: note: annotate 'd8' with '@MainActor' if property should only be accessed from the main actor
public static let d8 = Interval(quality: .diminished, degree: 8, semitones: 11)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:156:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d8 = Interval(quality: .diminished, degree: 8, semitones: 11)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:158:23: warning: static property 'd9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d9 = Interval(quality: .diminished, degree: 9, semitones: 12)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:158:23: note: annotate 'd9' with '@MainActor' if property should only be accessed from the main actor
public static let d9 = Interval(quality: .diminished, degree: 9, semitones: 12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:158:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d9 = Interval(quality: .diminished, degree: 9, semitones: 12)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:160:23: warning: static property 'd10' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d10 = Interval(quality: .diminished, degree: 10, semitones: 14)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:160:23: note: annotate 'd10' with '@MainActor' if property should only be accessed from the main actor
public static let d10 = Interval(quality: .diminished, degree: 10, semitones: 14)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:160:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d10 = Interval(quality: .diminished, degree: 10, semitones: 14)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:162:23: warning: static property 'd11' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d11 = Interval(quality: .diminished, degree: 11, semitones: 16)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:162:23: note: annotate 'd11' with '@MainActor' if property should only be accessed from the main actor
public static let d11 = Interval(quality: .diminished, degree: 11, semitones: 16)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d11 = Interval(quality: .diminished, degree: 11, semitones: 16)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:164:23: warning: static property 'd12' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d12 = Interval(quality: .diminished, degree: 12, semitones: 18)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:164:23: note: annotate 'd12' with '@MainActor' if property should only be accessed from the main actor
public static let d12 = Interval(quality: .diminished, degree: 12, semitones: 18)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:164:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d12 = Interval(quality: .diminished, degree: 12, semitones: 18)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:166:23: warning: static property 'd13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d13 = Interval(quality: .diminished, degree: 13, semitones: 19)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:166:23: note: annotate 'd13' with '@MainActor' if property should only be accessed from the main actor
public static let d13 = Interval(quality: .diminished, degree: 13, semitones: 19)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:166:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d13 = Interval(quality: .diminished, degree: 13, semitones: 19)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:168:23: warning: static property 'd14' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d14 = Interval(quality: .diminished, degree: 14, semitones: 21)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:168:23: note: annotate 'd14' with '@MainActor' if property should only be accessed from the main actor
public static let d14 = Interval(quality: .diminished, degree: 14, semitones: 21)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:168:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d14 = Interval(quality: .diminished, degree: 14, semitones: 21)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:170:23: warning: static property 'd15' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d15 = Interval(quality: .diminished, degree: 15, semitones: 23)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:170:23: note: annotate 'd15' with '@MainActor' if property should only be accessed from the main actor
public static let d15 = Interval(quality: .diminished, degree: 15, semitones: 23)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:170:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d15 = Interval(quality: .diminished, degree: 15, semitones: 23)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:173:23: warning: static property 'A1' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A1 = Interval(quality: .augmented, degree: 1, semitones: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:173:23: note: annotate 'A1' with '@MainActor' if property should only be accessed from the main actor
public static let A1 = Interval(quality: .augmented, degree: 1, semitones: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:173:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A1 = Interval(quality: .augmented, degree: 1, semitones: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:175:23: warning: static property 'A2' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A2 = Interval(quality: .augmented, degree: 2, semitones: 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:175:23: note: annotate 'A2' with '@MainActor' if property should only be accessed from the main actor
public static let A2 = Interval(quality: .augmented, degree: 2, semitones: 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:175:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A2 = Interval(quality: .augmented, degree: 2, semitones: 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:177:23: warning: static property 'A3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A3 = Interval(quality: .augmented, degree: 3, semitones: 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:177:23: note: annotate 'A3' with '@MainActor' if property should only be accessed from the main actor
public static let A3 = Interval(quality: .augmented, degree: 3, semitones: 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:177:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A3 = Interval(quality: .augmented, degree: 3, semitones: 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:179:23: warning: static property 'A4' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A4 = Interval(quality: .augmented, degree: 4, semitones: 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:179:23: note: annotate 'A4' with '@MainActor' if property should only be accessed from the main actor
public static let A4 = Interval(quality: .augmented, degree: 4, semitones: 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:179:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A4 = Interval(quality: .augmented, degree: 4, semitones: 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:181:23: warning: static property 'A5' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A5 = Interval(quality: .augmented, degree: 5, semitones: 8)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:181:23: note: annotate 'A5' with '@MainActor' if property should only be accessed from the main actor
public static let A5 = Interval(quality: .augmented, degree: 5, semitones: 8)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:181:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A5 = Interval(quality: .augmented, degree: 5, semitones: 8)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:183:23: warning: static property 'A6' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A6 = Interval(quality: .augmented, degree: 6, semitones: 10)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:183:23: note: annotate 'A6' with '@MainActor' if property should only be accessed from the main actor
public static let A6 = Interval(quality: .augmented, degree: 6, semitones: 10)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:183:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A6 = Interval(quality: .augmented, degree: 6, semitones: 10)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:185:23: warning: static property 'A7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A7 = Interval(quality: .augmented, degree: 7, semitones: 12)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:185:23: note: annotate 'A7' with '@MainActor' if property should only be accessed from the main actor
public static let A7 = Interval(quality: .augmented, degree: 7, semitones: 12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:185:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A7 = Interval(quality: .augmented, degree: 7, semitones: 12)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:187:23: warning: static property 'A8' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A8 = Interval(quality: .augmented, degree: 8, semitones: 13)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:187:23: note: annotate 'A8' with '@MainActor' if property should only be accessed from the main actor
public static let A8 = Interval(quality: .augmented, degree: 8, semitones: 13)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:187:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A8 = Interval(quality: .augmented, degree: 8, semitones: 13)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:189:23: warning: static property 'A9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A9 = Interval(quality: .augmented, degree: 9, semitones: 15)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:189:23: note: annotate 'A9' with '@MainActor' if property should only be accessed from the main actor
public static let A9 = Interval(quality: .augmented, degree: 9, semitones: 15)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:189:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A9 = Interval(quality: .augmented, degree: 9, semitones: 15)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:191:23: warning: static property 'A10' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A10 = Interval(quality: .augmented, degree: 10, semitones: 17)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:191:23: note: annotate 'A10' with '@MainActor' if property should only be accessed from the main actor
public static let A10 = Interval(quality: .augmented, degree: 10, semitones: 17)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:191:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A10 = Interval(quality: .augmented, degree: 10, semitones: 17)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:193:23: warning: static property 'A11' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A11 = Interval(quality: .augmented, degree: 11, semitones: 18)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:193:23: note: annotate 'A11' with '@MainActor' if property should only be accessed from the main actor
public static let A11 = Interval(quality: .augmented, degree: 11, semitones: 18)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:193:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A11 = Interval(quality: .augmented, degree: 11, semitones: 18)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:195:23: warning: static property 'A12' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A12 = Interval(quality: .augmented, degree: 12, semitones: 20)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:195:23: note: annotate 'A12' with '@MainActor' if property should only be accessed from the main actor
public static let A12 = Interval(quality: .augmented, degree: 12, semitones: 20)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:195:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A12 = Interval(quality: .augmented, degree: 12, semitones: 20)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:197:23: warning: static property 'A13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A13 = Interval(quality: .augmented, degree: 13, semitones: 22)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:197:23: note: annotate 'A13' with '@MainActor' if property should only be accessed from the main actor
public static let A13 = Interval(quality: .augmented, degree: 13, semitones: 22)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:197:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A13 = Interval(quality: .augmented, degree: 13, semitones: 22)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:199:23: warning: static property 'A14' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A14 = Interval(quality: .augmented, degree: 14, semitones: 24)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:199:23: note: annotate 'A14' with '@MainActor' if property should only be accessed from the main actor
public static let A14 = Interval(quality: .augmented, degree: 14, semitones: 24)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:199:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A14 = Interval(quality: .augmented, degree: 14, semitones: 24)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:201:23: warning: static property 'A15' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A15 = Interval(quality: .augmented, degree: 15, semitones: 25)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:201:23: note: annotate 'A15' with '@MainActor' if property should only be accessed from the main actor
public static let A15 = Interval(quality: .augmented, degree: 15, semitones: 25)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:201:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A15 = Interval(quality: .augmented, degree: 15, semitones: 25)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:204:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Interval]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: [Interval] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:204:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
public static let all: [Interval] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:204:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: [Interval] = [
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Scale.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 Compiling\ Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/NoteValue.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/NoteValue.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Scale.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:98:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Scale.HarmonicField]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: [HarmonicField] = [.triad, .tetrad, .ninth, .eleventh, .thirteenth]
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:85:17: note: consider making enum 'HarmonicField' conform to the 'Sendable' protocol
public enum HarmonicField: Int, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:98:27: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
public static let all: [HarmonicField] = [.triad, .tetrad, .ninth, .eleventh, .thirteenth]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:98:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: [HarmonicField] = [.triad, .tetrad, .ninth, .eleventh, .thirteenth]
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Pitch.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal armv7k Compiling NoteValue.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 Compiling\ Pitch.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/NoteValue.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/NoteValue.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Pitch.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:59:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Key.KeyType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: [KeyType] = [.c, .d, .e, .f, .g, .a, .b]
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:42:17: note: consider making enum 'KeyType' conform to the 'Sendable' protocol
public enum KeyType: Int, Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:59:27: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
public static let all: [KeyType] = [.c, .d, .e, .f, .g, .a, .b]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:59:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: [KeyType] = [.c, .d, .e, .f, .g, .a, .b]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift:81:23: warning: static property 'major' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let major = ScaleType(intervals: ScaleType.ionian.intervals, description: "Major")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift:13:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift:81:23: note: annotate 'major' with '@MainActor' if property should only be accessed from the main actor
public static let major = ScaleType(intervals: ScaleType.ionian.intervals, description: "Major")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let major = ScaleType(intervals: ScaleType.ionian.intervals, description: "Major")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:157:23: warning: static property 'keysWithSharps' is not concurrency-safe because non-'Sendable' type '[Key]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let keysWithSharps = [
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:40:15: note: consider making struct 'Key' conform to the 'Sendable' protocol
public struct Key: Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:157:23: note: annotate 'keysWithSharps' with '@MainActor' if property should only be accessed from the main actor
public static let keysWithSharps = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:157:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let keysWithSharps = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:173:23: warning: static property 'keysWithFlats' is not concurrency-safe because non-'Sendable' type '[Key]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let keysWithFlats = [
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:40:15: note: consider making struct 'Key' conform to the 'Sendable' protocol
public struct Key: Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:173:23: note: annotate 'keysWithFlats' with '@MainActor' if property should only be accessed from the main actor
public static let keysWithFlats = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:173:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let keysWithFlats = [
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling ChordProgression.swift, HarmonicFunctions.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal armv7k Compiling\ Accidental.swift,\ Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/NoteValue.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/NoteValue.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:112:23: warning: static property 'flat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let flat: Accidental = .flats(amount: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:112:23: note: annotate 'flat' with '@MainActor' if property should only be accessed from the main actor
public static let flat: Accidental = .flats(amount: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let flat: Accidental = .flats(amount: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:114:23: warning: static property 'sharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sharp: Accidental = .sharps(amount: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:114:23: note: annotate 'sharp' with '@MainActor' if property should only be accessed from the main actor
public static let sharp: Accidental = .sharps(amount: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sharp: Accidental = .sharps(amount: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:116:23: warning: static property 'doubleFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let doubleFlat: Accidental = .flats(amount: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:116:23: note: annotate 'doubleFlat' with '@MainActor' if property should only be accessed from the main actor
public static let doubleFlat: Accidental = .flats(amount: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let doubleFlat: Accidental = .flats(amount: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:118:23: warning: static property 'doubleSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let doubleSharp: Accidental = .sharps(amount: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:118:23: note: annotate 'doubleSharp' with '@MainActor' if property should only be accessed from the main actor
public static let doubleSharp: Accidental = .sharps(amount: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let doubleSharp: Accidental = .sharps(amount: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:122:23: warning: static property 'shouldUseDoubleFlatAndDoubleSharpNotation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var shouldUseDoubleFlatAndDoubleSharpNotation = true
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:122:23: note: convert 'shouldUseDoubleFlatAndDoubleSharpNotation' to a 'let' constant to make 'Sendable' shared state immutable
public static var shouldUseDoubleFlatAndDoubleSharpNotation = true
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:122:23: note: annotate 'shouldUseDoubleFlatAndDoubleSharpNotation' with '@MainActor' if property should only be accessed from the main actor
public static var shouldUseDoubleFlatAndDoubleSharpNotation = true
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:122:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var shouldUseDoubleFlatAndDoubleSharpNotation = true
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/NoteValue.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Accidental.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Chord.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:127:23: warning: static property 'M3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M3 = Interval(quality: .major, degree: 3, semitones: 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:127:23: note: annotate 'M3' with '@MainActor' if property should only be accessed from the main actor
public static let M3 = Interval(quality: .major, degree: 3, semitones: 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M3 = Interval(quality: .major, degree: 3, semitones: 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:110:23: warning: static property 'm3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m3 = Interval(quality: .minor, degree: 3, semitones: 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:110:23: note: annotate 'm3' with '@MainActor' if property should only be accessed from the main actor
public static let m3 = Interval(quality: .minor, degree: 3, semitones: 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m3 = Interval(quality: .minor, degree: 3, semitones: 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:97:23: warning: static property 'P5' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P5 = Interval(quality: .perfect, degree: 5, semitones: 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:97:23: note: annotate 'P5' with '@MainActor' if property should only be accessed from the main actor
public static let P5 = Interval(quality: .perfect, degree: 5, semitones: 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:97:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P5 = Interval(quality: .perfect, degree: 5, semitones: 7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:150:23: warning: static property 'd5' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d5 = Interval(quality: .diminished, degree: 5, semitones: 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:150:23: note: annotate 'd5' with '@MainActor' if property should only be accessed from the main actor
public static let d5 = Interval(quality: .diminished, degree: 5, semitones: 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:150:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d5 = Interval(quality: .diminished, degree: 5, semitones: 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:181:23: warning: static property 'A5' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A5 = Interval(quality: .augmented, degree: 5, semitones: 8)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:181:23: note: annotate 'A5' with '@MainActor' if property should only be accessed from the main actor
public static let A5 = Interval(quality: .augmented, degree: 5, semitones: 8)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:181:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A5 = Interval(quality: .augmented, degree: 5, semitones: 8)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:129:23: warning: static property 'M6' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M6 = Interval(quality: .major, degree: 6, semitones: 9)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:129:23: note: annotate 'M6' with '@MainActor' if property should only be accessed from the main actor
public static let M6 = Interval(quality: .major, degree: 6, semitones: 9)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:129:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M6 = Interval(quality: .major, degree: 6, semitones: 9)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:131:23: warning: static property 'M7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M7 = Interval(quality: .major, degree: 7, semitones: 11)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:131:23: note: annotate 'M7' with '@MainActor' if property should only be accessed from the main actor
public static let M7 = Interval(quality: .major, degree: 7, semitones: 11)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:131:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M7 = Interval(quality: .major, degree: 7, semitones: 11)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:114:23: warning: static property 'm7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m7 = Interval(quality: .minor, degree: 7, semitones: 10)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:114:23: note: annotate 'm7' with '@MainActor' if property should only be accessed from the main actor
public static let m7 = Interval(quality: .minor, degree: 7, semitones: 10)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m7 = Interval(quality: .minor, degree: 7, semitones: 10)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:125:23: warning: static property 'M2' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M2 = Interval(quality: .major, degree: 2, semitones: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:125:23: note: annotate 'M2' with '@MainActor' if property should only be accessed from the main actor
public static let M2 = Interval(quality: .major, degree: 2, semitones: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:125:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M2 = Interval(quality: .major, degree: 2, semitones: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:95:23: warning: static property 'P4' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P4 = Interval(quality: .perfect, degree: 4, semitones: 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:95:23: note: annotate 'P4' with '@MainActor' if property should only be accessed from the main actor
public static let P4 = Interval(quality: .perfect, degree: 4, semitones: 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P4 = Interval(quality: .perfect, degree: 4, semitones: 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:133:23: warning: static property 'M9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M9 = Interval(quality: .major, degree: 9, semitones: 14)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:133:23: note: annotate 'M9' with '@MainActor' if property should only be accessed from the main actor
public static let M9 = Interval(quality: .major, degree: 9, semitones: 14)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M9 = Interval(quality: .major, degree: 9, semitones: 14)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:101:23: warning: static property 'P11' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P11 = Interval(quality: .perfect, degree: 11, semitones: 17)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:101:23: note: annotate 'P11' with '@MainActor' if property should only be accessed from the main actor
public static let P11 = Interval(quality: .perfect, degree: 11, semitones: 17)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P11 = Interval(quality: .perfect, degree: 11, semitones: 17)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:137:23: warning: static property 'M13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M13 = Interval(quality: .major, degree: 13, semitones: 21)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:137:23: note: annotate 'M13' with '@MainActor' if property should only be accessed from the main actor
public static let M13 = Interval(quality: .major, degree: 13, semitones: 21)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:137:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M13 = Interval(quality: .major, degree: 13, semitones: 21)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:116:23: warning: static property 'm9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m9 = Interval(quality: .minor, degree: 9, semitones: 13)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:116:23: note: annotate 'm9' with '@MainActor' if property should only be accessed from the main actor
public static let m9 = Interval(quality: .minor, degree: 9, semitones: 13)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m9 = Interval(quality: .minor, degree: 9, semitones: 13)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:189:23: warning: static property 'A9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A9 = Interval(quality: .augmented, degree: 9, semitones: 15)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:189:23: note: annotate 'A9' with '@MainActor' if property should only be accessed from the main actor
public static let A9 = Interval(quality: .augmented, degree: 9, semitones: 15)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:189:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A9 = Interval(quality: .augmented, degree: 9, semitones: 15)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:193:23: warning: static property 'A11' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A11 = Interval(quality: .augmented, degree: 11, semitones: 18)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:193:23: note: annotate 'A11' with '@MainActor' if property should only be accessed from the main actor
public static let A11 = Interval(quality: .augmented, degree: 11, semitones: 18)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:193:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A11 = Interval(quality: .augmented, degree: 11, semitones: 18)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:120:23: warning: static property 'm13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m13 = Interval(quality: .minor, degree: 13, semitones: 20)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:120:23: note: annotate 'm13' with '@MainActor' if property should only be accessed from the main actor
public static let m13 = Interval(quality: .minor, degree: 13, semitones: 20)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:120:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m13 = Interval(quality: .minor, degree: 13, semitones: 20)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:197:23: warning: static property 'A13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A13 = Interval(quality: .augmented, degree: 13, semitones: 22)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:197:23: note: annotate 'A13' with '@MainActor' if property should only be accessed from the main actor
public static let A13 = Interval(quality: .augmented, degree: 13, semitones: 22)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:197:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A13 = Interval(quality: .augmented, degree: 13, semitones: 22)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:93:23: warning: static property 'P1' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P1 = Interval(quality: .perfect, degree: 1, semitones: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:34:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:93:23: note: annotate 'P1' with '@MainActor' if property should only be accessed from the main actor
public static let P1 = Interval(quality: .perfect, degree: 1, semitones: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:93:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P1 = Interval(quality: .perfect, degree: 1, semitones: 0)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Tempo.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 Compiling\ Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/NoteValue.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/NoteValue.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Pitch.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ScaleType.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.o -index-unit-output-path /MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Key.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:59:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Key.KeyType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: [KeyType] = [.c, .d, .e, .f, .g, .a, .b]
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:42:17: note: consider making enum 'KeyType' conform to the 'Sendable' protocol
public enum KeyType: Int, Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:59:27: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
public static let all: [KeyType] = [.c, .d, .e, .f, .g, .a, .b]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:59:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: [KeyType] = [.c, .d, .e, .f, .g, .a, .b]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:157:23: warning: static property 'keysWithSharps' is not concurrency-safe because non-'Sendable' type '[Key]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let keysWithSharps = [
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:40:15: note: consider making struct 'Key' conform to the 'Sendable' protocol
public struct Key: Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:157:23: note: annotate 'keysWithSharps' with '@MainActor' if property should only be accessed from the main actor
public static let keysWithSharps = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:157:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let keysWithSharps = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:114:23: warning: static property 'sharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sharp: Accidental = .sharps(amount: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:114:23: note: annotate 'sharp' with '@MainActor' if property should only be accessed from the main actor
public static let sharp: Accidental = .sharps(amount: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sharp: Accidental = .sharps(amount: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:173:23: warning: static property 'keysWithFlats' is not concurrency-safe because non-'Sendable' type '[Key]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let keysWithFlats = [
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:40:15: note: consider making struct 'Key' conform to the 'Sendable' protocol
public struct Key: Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:173:23: note: annotate 'keysWithFlats' with '@MainActor' if property should only be accessed from the main actor
public static let keysWithFlats = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:173:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let keysWithFlats = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:112:23: warning: static property 'flat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let flat: Accidental = .flats(amount: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:112:23: note: annotate 'flat' with '@MainActor' if property should only be accessed from the main actor
public static let flat: Accidental = .flats(amount: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let flat: Accidental = .flats(amount: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:189:23: warning: static property 'allKeys' is not concurrency-safe because non-'Sendable' type '[Key]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allKeys = [
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:40:15: note: consider making struct 'Key' conform to the 'Sendable' protocol
public struct Key: Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:189:23: note: annotate 'allKeys' with '@MainActor' if property should only be accessed from the main actor
public static let allKeys = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:189:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allKeys = [
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling TimeSignature.swift (in target 'MusicTheory' from project 'MusicTheory')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64_32/Binary/MusicTheory.o normal arm64_32 (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64_32/MusicTheory.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64_32/MusicTheory_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64_32/MusicTheory.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64_32/MusicTheory_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64_32/Binary/MusicTheory.o
SwiftDriverJobDiscovery normal arm64 Compiling ChordProgression.swift, HarmonicFunctions.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling ScaleType.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Pitch.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Key.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Accidental.swift, Chord.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal armv7k Compiling Accidental.swift, Chord.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriver\ Compilation MusicTheory normal armv7k com.apple.xcode.tools.swift.compiler (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MusicTheory -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Binary/MusicTheory.o normal armv7k (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/MusicTheory_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Binary/MusicTheory.o
SwiftDriverJobDiscovery normal arm64 Compiling NoteValue.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Interval.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Scale.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriver\ Compilation MusicTheory normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MusicTheory -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Binary/MusicTheory.o normal arm64 (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/MusicTheory_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Binary/MusicTheory.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MusicTheory.o normal arm64\ armv7k\ arm64_32 (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64/Binary/MusicTheory.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/armv7k/Binary/MusicTheory.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-watchos/MusicTheory.build/Objects-normal/arm64_32/Binary/MusicTheory.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MusicTheory.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MusicTheory.o (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/MusicTheory.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "MusicTheory",
"name" : "MusicTheory",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "MusicTheory",
"targets" : [
"MusicTheory"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MusicTheoryTests",
"module_type" : "SwiftTarget",
"name" : "MusicTheoryTests",
"path" : "Tests/MusicTheoryTests",
"sources" : [
"MusicTheoryTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"MusicTheory"
],
"type" : "test"
},
{
"c99name" : "MusicTheory",
"module_type" : "SwiftTarget",
"name" : "MusicTheory",
"path" : "Sources/MusicTheory",
"product_memberships" : [
"MusicTheory"
],
"sources" : [
"Accidental.swift",
"Chord.swift",
"ChordProgression.swift",
"HarmonicFunctions.swift",
"Interval.swift",
"Key.swift",
"NoteValue.swift",
"Pitch.swift",
"Scale.swift",
"ScaleType.swift",
"Tempo.swift",
"TimeSignature.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.