The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of MusicTheory, reference 1.3.1 (c98ffa), with Swift 6.0 for tvOS using Xcode 16.2 on 29 Nov 2024 20:27:31 UTC.

Swift 6 data race errors: 132

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=tvOS 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 auxiliaryDiminished = ScaleType(intervals: [.P1, .M2, .m3, .P4, .d5, .m6, .M6, .M7], description: "Auxiliary Diminished")
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:98:21: warning: static property 'auxiliaryAugmented' 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 auxiliaryAugmented = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .m7], description: "Auxiliary Augmented")
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16: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/Scale.swift:98:21: note: annotate 'auxiliaryAugmented' with '@MainActor' if property should only be accessed from the main actor
  public static let auxiliaryAugmented = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .m7], description: "Auxiliary Augmented")
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:98:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let auxiliaryAugmented = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .m7], description: "Auxiliary Augmented")
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:100:21: warning: static property 'auxiliaryDimBlues' 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 auxiliaryDimBlues = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .P5, .M6, .m7], description: "Auxiliary Diminished Blues")
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16: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/Scale.swift:100:21: note: annotate 'auxiliaryDimBlues' with '@MainActor' if property should only be accessed from the main actor
  public static let auxiliaryDimBlues = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .P5, .M6, .m7], description: "Auxiliary Diminished Blues")
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:100:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let auxiliaryDimBlues = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .P5, .M6, .m7], description: "Auxiliary Diminished Blues")
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:102:21: warning: static property 'majorLocrian' 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 majorLocrian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .d5, .m6, .m7], description: "Major Locrian")
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16: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/Scale.swift:102:21: note: annotate 'majorLocrian' with '@MainActor' if property should only be accessed from the main actor
  public static let majorLocrian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .d5, .m6, .m7], description: "Major Locrian")
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:102:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let majorLocrian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .d5, .m6, .m7], description: "Major Locrian")
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:104:21: warning: static property 'overtone' 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 overtone = ScaleType(intervals: [.P1, .M2, .M3, .d5, .P5, .M6, .m7], description: "Overtone")
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16: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/Scale.swift:104:21: note: annotate 'overtone' with '@MainActor' if property should only be accessed from the main actor
  public static let overtone = ScaleType(intervals: [.P1, .M2, .M3, .d5, .P5, .M6, .m7], description: "Overtone")
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:104:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let overtone = ScaleType(intervals: [.P1, .M2, .M3, .d5, .P5, .M6, .m7], description: "Overtone")
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:106:21: warning: static property 'diminishedWholeTone' 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 diminishedWholeTone = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .m6, .m7], description: "Diminished Whole Tone")
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16: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/Scale.swift:106:21: note: annotate 'diminishedWholeTone' with '@MainActor' if property should only be accessed from the main actor
  public static let diminishedWholeTone = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .m6, .m7], description: "Diminished Whole Tone")
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:106:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let diminishedWholeTone = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .m6, .m7], description: "Diminished Whole Tone")
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:108:21: warning: static property 'pureMinor' 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 pureMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .m7], description: "Pure Minor")
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16: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/Scale.swift:108:21: note: annotate 'pureMinor' with '@MainActor' if property should only be accessed from the main actor
  public static let pureMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .m7], description: "Pure Minor")
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:108:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let pureMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .m7], description: "Pure Minor")
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:110:21: warning: static property 'dominant7th' 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 dominant7th = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .m7], description: "Dominant 7th")
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16: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/Scale.swift:110:21: note: annotate 'dominant7th' with '@MainActor' if property should only be accessed from the main actor
  public static let dominant7th = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .m7], description: "Dominant 7th")
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:110:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let dominant7th = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .m7], description: "Dominant 7th")
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:310:23: 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:297:15: 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:310:23: 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:310:23: 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)
SwiftCompile normal arm64 Compiling\ Interval.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.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 -primary-file /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/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-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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-appletvos/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/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.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-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.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/Interval.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 -primary-file /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/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-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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-appletvos/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/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.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-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Interval.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:91:21: 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:32: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:91:21: 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:91:21: 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)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:93:21: 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:32: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:21: 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:93:21: 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:95:21: 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:32: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:21: 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:95:21: 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:97:21: 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:32: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:21: 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:97:21: 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:99:21: 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:32: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:21: 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:99:21: 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:101:21: 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:32: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:21: 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:101:21: 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:103:21: 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:32: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:21: 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:103:21: 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:106:21: 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:32: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:106:21: 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:106:21: 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:108:21: 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:32: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:21: 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:108:21: 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:110:21: 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:32: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:21: 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:110:21: 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:112:21: 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:32: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:21: 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:112:21: 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:114:21: 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:32: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:21: 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:114:21: 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:116:21: 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:32: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:21: 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:116:21: 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:118:21: 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:32: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:21: 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:118:21: 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:120:21: 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:32: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:21: 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:120:21: 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:123:21: 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:32: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:123:21: 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:123:21: 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:125:21: 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:32: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:21: 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:125:21: 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:127:21: 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:32: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:21: 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:127:21: 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:129:21: 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:32: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:21: 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:129:21: 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:131:21: 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:32: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:21: 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:131:21: 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:133:21: 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:32: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:21: 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:133:21: 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:135:21: 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:32: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:21: 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:135:21: 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:137:21: 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:32: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:21: 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:137:21: 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:140:21: 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:32: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:140:21: 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:140:21: 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:142:21: 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:32: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:21: 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:142:21: 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:144:21: 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:32: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:21: 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:144:21: 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:146:21: 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:32: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:21: 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:146:21: 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:148:21: 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:32: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:21: 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:148:21: 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:150:21: 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:32: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:21: 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:150:21: 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:152:21: 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:32: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:21: 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:152:21: 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:154:21: 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:32: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:21: 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:154:21: 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:156:21: 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:32: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:21: 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:156:21: 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:158:21: 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:32: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:21: 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:158:21: 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:160:21: 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:32: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:21: 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:160:21: 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:162:21: 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:32: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:21: 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:162:21: 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:164:21: 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:32: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:21: 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:164:21: 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:166:21: 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:32: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:21: 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:166:21: 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:168:21: 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:32: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:21: 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:168:21: 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:171:21: 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:32: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:171:21: 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:171:21: 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:173:21: 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:32: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:21: 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:173:21: 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:175:21: 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:32: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:21: 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:175:21: 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:177:21: 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:32: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:21: 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:177:21: 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:179:21: 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:32: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:21: 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:179:21: 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:181:21: 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:32: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:21: 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:181:21: 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:183:21: 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:32: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:21: 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:183:21: 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:185:21: 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:32: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:21: 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:185:21: 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:187:21: 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:32: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:21: 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:187:21: 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:189:21: 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:32: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:21: 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:189:21: 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:191:21: 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:32: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:21: 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:191:21: 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:193:21: 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:32: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:21: 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:193:21: 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:195:21: 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:32: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:21: 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:195:21: 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:197:21: 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:32: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:21: 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:197:21: 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:199:21: 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:32: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:21: 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:199:21: 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:202:21: 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:32: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:202:21: 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:202:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all: [Interval] = [
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ HarmonicFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.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 -primary-file /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/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-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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-appletvos/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/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.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-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.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/HarmonicFunctions.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 -primary-file /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/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-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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-appletvos/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/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.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-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/HarmonicFunctions.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/HarmonicFunctions.swift:29:21: warning: static property 'tonicProlongationFunctions' is not concurrency-safe because non-'Sendable' type '[HarmonicFunctionType]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let tonicProlongationFunctions: [HarmonicFunctionType] = [.mediant, .submediant]
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:12:13: note: consider making enum 'HarmonicFunctionType' conform to the 'Sendable' protocol
public enum HarmonicFunctionType: Int, Codable, CaseIterable {
            ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:29:21: note: annotate 'tonicProlongationFunctions' with '@MainActor' if property should only be accessed from the main actor
  public static let tonicProlongationFunctions: [HarmonicFunctionType] = [.mediant, .submediant]
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:29:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let tonicProlongationFunctions: [HarmonicFunctionType] = [.mediant, .submediant]
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:32:21: warning: static property 'predominantFunctions' is not concurrency-safe because non-'Sendable' type '[HarmonicFunctionType]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let predominantFunctions: [HarmonicFunctionType] = [.supertonic, .submediant]
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:12:13: note: consider making enum 'HarmonicFunctionType' conform to the 'Sendable' protocol
public enum HarmonicFunctionType: Int, Codable, CaseIterable {
            ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:32:21: note: annotate 'predominantFunctions' with '@MainActor' if property should only be accessed from the main actor
  public static let predominantFunctions: [HarmonicFunctionType] = [.supertonic, .submediant]
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:32:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let predominantFunctions: [HarmonicFunctionType] = [.supertonic, .submediant]
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:35:21: warning: static property 'dominantFunctions' is not concurrency-safe because non-'Sendable' type '[HarmonicFunctionType]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let dominantFunctions: [HarmonicFunctionType] = [.dominant, .leading]
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:12:13: note: consider making enum 'HarmonicFunctionType' conform to the 'Sendable' protocol
public enum HarmonicFunctionType: Int, Codable, CaseIterable {
            ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:35:21: note: annotate 'dominantFunctions' with '@MainActor' if property should only be accessed from the main actor
  public static let dominantFunctions: [HarmonicFunctionType] = [.dominant, .leading]
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:35:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let dominantFunctions: [HarmonicFunctionType] = [.dominant, .leading]
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 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/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-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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-appletvos/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/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.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-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.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/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/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-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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-appletvos/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/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.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-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: 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:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var shouldUseDoubleFlatAndDoubleSharpNotation = true
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /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/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-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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-appletvos/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/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.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-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Chord.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/Accidental.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/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:125:21: 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:32: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:21: 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:125:21: 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:108:21: 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:32: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:21: 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:108:21: 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:95:21: 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:32: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:21: 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:95:21: 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:148:21: 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:32: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:21: 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:148:21: 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:179:21: 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:32: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:21: 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:179:21: 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:127:21: 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:32: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:21: 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:127:21: 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:129:21: 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:32: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:21: 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:129:21: 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:112:21: 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:32: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:21: 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:112:21: 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:123:21: 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:32: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:123:21: 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:123:21: 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:93:21: 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:32: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:21: 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:93:21: 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:131:21: 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:32: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:21: 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:131:21: 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:99:21: 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:32: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:21: 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:99:21: 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:135:21: 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:32: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:21: 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:135:21: 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:114:21: 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:32: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:21: 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:114:21: 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:187:21: 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:32: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:21: 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:187:21: 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:21: 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:32: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:21: 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:191:21: 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:118:21: 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:32: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:21: 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:118:21: 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:195:21: 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:32: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:21: 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:195:21: 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:91:21: 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:32: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:91:21: 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:91:21: 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 Emitting module for MusicTheory (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 Compiling\ TimeSignature.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/TimeSignature.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 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift -primary-file /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-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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-appletvos/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/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.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-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.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/TimeSignature.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 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift -primary-file /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-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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-appletvos/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/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MusicTheory -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.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-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.o -index-unit-output-path /MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/TimeSignature.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Pitch.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriver\ Compilation\ Requirements 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-Requirements -- /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-appletvos/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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.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-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/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-appletvos/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-appletvos/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-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/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-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling NoteValue.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Scale.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/MusicTheory-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory-Swift.h (in target 'MusicTheory' from project 'MusicTheory')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/MusicTheory-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/MusicTheory.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftdoc (in target 'MusicTheory' from project 'MusicTheory')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/MusicTheory.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/MusicTheory.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule (in target 'MusicTheory' from project 'MusicTheory')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/MusicTheory.swiftmodule/arm64-apple-tvos.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling Tempo.swift (in target 'MusicTheory' from project 'MusicTheory')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/MusicTheory.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory.abi.json (in target 'MusicTheory' from project 'MusicTheory')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/MusicTheory.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/MusicTheory.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftsourceinfo (in target 'MusicTheory' from project 'MusicTheory')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/MusicTheory.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling ChordProgression.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Key.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling HarmonicFunctions.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Interval.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling TimeSignature.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Accidental.swift, Chord.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-appletvos/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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.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-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/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-appletvos/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-appletvos/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-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/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-appletvos/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/Products/Debug-appletvos/MusicTheory.o normal (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-tvos12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/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-appletvos/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/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug-appletvos/MusicTheory.build/Objects-normal/arm64/MusicTheory_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/MusicTheory.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/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-appletvos/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",
        "Tempo.swift",
        "TimeSignature.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.