The Swift Package Index logo.Swift Package Index

Build Information

Successful build of swift-chess-neo, reference 2.0.0 (36df37), with Swift 6.0 for macOS (Xcode) using Xcode 16.2 on 15 Sep 2025 23:15:38 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme swift-chess-neo-Package -destination platform=macOS,arch=arm64

Build Log

    public static let queenside: [Right] = all.filter({ $0.side.isQueenside })
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:27:15: note: consider making enum 'Right' conform to the 'Sendable' protocol
  public enum Right: String, CustomStringConvertible {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:56:23: note: annotate 'queenside' with '@MainActor' if property should only be accessed from the main actor
    public static let queenside: [Right] = all.filter({ $0.side.isQueenside })
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let queenside: [Right] = all.filter({ $0.side.isQueenside })
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:176:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CastlingRights' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all = CastlingRights(Right.all)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:24:15: note: consider making struct 'CastlingRights' conform to the 'Sendable' protocol
public struct CastlingRights: CustomStringConvertible {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:176:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all = CastlingRights(Right.all)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:176:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all = CastlingRights(Right.all)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:179:21: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'CastlingRights' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let white = CastlingRights(Right.white)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:24:15: note: consider making struct 'CastlingRights' conform to the 'Sendable' protocol
public struct CastlingRights: CustomStringConvertible {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:179:21: note: annotate 'white' with '@MainActor' if property should only be accessed from the main actor
  public static let white = CastlingRights(Right.white)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:179:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let white = CastlingRights(Right.white)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:182:21: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'CastlingRights' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let black = CastlingRights(Right.black)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:24:15: note: consider making struct 'CastlingRights' conform to the 'Sendable' protocol
public struct CastlingRights: CustomStringConvertible {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:182:21: note: annotate 'black' with '@MainActor' if property should only be accessed from the main actor
  public static let black = CastlingRights(Right.black)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:182:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let black = CastlingRights(Right.black)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:185:21: warning: static property 'kingside' is not concurrency-safe because non-'Sendable' type 'CastlingRights' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let kingside = CastlingRights(Right.kingside)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:24:15: note: consider making struct 'CastlingRights' conform to the 'Sendable' protocol
public struct CastlingRights: CustomStringConvertible {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:185:21: note: annotate 'kingside' with '@MainActor' if property should only be accessed from the main actor
  public static let kingside = CastlingRights(Right.kingside)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:185:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let kingside = CastlingRights(Right.kingside)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:188:21: warning: static property 'queenside' is not concurrency-safe because non-'Sendable' type 'CastlingRights' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let queenside = CastlingRights(Right.queenside)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:24:15: note: consider making struct 'CastlingRights' conform to the 'Sendable' protocol
public struct CastlingRights: CustomStringConvertible {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:188:21: note: annotate 'queenside' with '@MainActor' if property should only be accessed from the main actor
  public static let queenside = CastlingRights(Right.queenside)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:188:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let queenside = CastlingRights(Right.queenside)
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/CastlingRights.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/CastlingRights.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/CastlingRights.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/CastlingRights.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Color.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Color.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Color.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Color.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/CastlingRights.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Color.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/CastlingRights.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Color.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:31:23: warning: static property '_white' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _white = Color.white
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:22:13: note: consider making enum 'Color' conform to the 'Sendable' protocol
public enum Color: String, CustomStringConvertible {
            ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:31:23: note: annotate '_white' with '@MainActor' if property should only be accessed from the main actor
  internal static let _white = Color.white
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _white = Color.white
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:34:23: warning: static property '_black' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _black = Color.black
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:22:13: note: consider making enum 'Color' conform to the 'Sendable' protocol
public enum Color: String, CustomStringConvertible {
            ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:34:23: note: annotate '_black' with '@MainActor' if property should only be accessed from the main actor
  internal static let _black = Color.black
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _black = Color.black
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:37:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Color]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all: [Color] = [.white, .black]
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:22:13: note: consider making enum 'Color' conform to the 'Sendable' protocol
public enum Color: String, CustomStringConvertible {
            ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:37:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all: [Color] = [.white, .black]
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:37:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all: [Color] = [.white, .black]
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ InternalTypes.swift,\ Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.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/SwiftChessCore/InternalTypes.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.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/SwiftChessCore/Minimax.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/InternalTypes.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Minimax.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:226:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Square]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all: [Square] = (0..<64).compactMap(Square.init(rawValue:))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:226:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all: [Square] = (0..<64).compactMap(Square.init(rawValue:))
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:226:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all: [Square] = (0..<64).compactMap(Square.init(rawValue:))
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Bitboard.swift,\ Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.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/SwiftChessCore/Bitboard.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:46:13: warning: let '_bitboardTable' is not concurrency-safe because non-'Sendable' type '[Bitboard]' may have shared mutable state; this is an error in the Swift 6 language mode
private let _bitboardTable: [Bitboard] = (0..<64).map { Bitboard(rawValue: 1 << $0) }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:82:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:46:13: note: annotate '_bitboardTable' with '@MainActor' if property should only be accessed from the main actor
private let _bitboardTable: [Bitboard] = (0..<64).map { Bitboard(rawValue: 1 << $0) }
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:46:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _bitboardTable: [Bitboard] = (0..<64).map { Bitboard(rawValue: 1 << $0) }
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:60:13: warning: let '_notFileA' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
private let _notFileA: Bitboard = 0xfefe_fefe_fefe_fefe
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:82:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:60:13: note: annotate '_notFileA' with '@MainActor' if property should only be accessed from the main actor
private let _notFileA: Bitboard = 0xfefe_fefe_fefe_fefe
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:60:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _notFileA: Bitboard = 0xfefe_fefe_fefe_fefe
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:63:13: warning: let '_notFileAB' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
private let _notFileAB: Bitboard = 0xfcfc_fcfc_fcfc_fcfc
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:82:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:63:13: note: annotate '_notFileAB' with '@MainActor' if property should only be accessed from the main actor
private let _notFileAB: Bitboard = 0xfcfc_fcfc_fcfc_fcfc
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:63:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _notFileAB: Bitboard = 0xfcfc_fcfc_fcfc_fcfc
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:66:13: warning: let '_notFileH' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
private let _notFileH: Bitboard = 0x7f7f_7f7f_7f7f_7f7f
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:82:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:66:13: note: annotate '_notFileH' with '@MainActor' if property should only be accessed from the main actor
private let _notFileH: Bitboard = 0x7f7f_7f7f_7f7f_7f7f
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:66:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _notFileH: Bitboard = 0x7f7f_7f7f_7f7f_7f7f
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:69:13: warning: let '_notFileGH' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
private let _notFileGH: Bitboard = 0x3f3f_3f3f_3f3f_3f3f
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:82:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:69:13: note: annotate '_notFileGH' with '@MainActor' if property should only be accessed from the main actor
private let _notFileGH: Bitboard = 0x3f3f_3f3f_3f3f_3f3f
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:69:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _notFileGH: Bitboard = 0x3f3f_3f3f_3f3f_3f3f
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:112:25: warning: static property '_north' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _north = ShiftDirection.north
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:85:15: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
  public enum ShiftDirection {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:112:25: note: annotate '_north' with '@MainActor' if property should only be accessed from the main actor
    internal static let _north = ShiftDirection.north
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:112:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _north = ShiftDirection.north
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:115:25: warning: static property '_south' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _south = ShiftDirection.south
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:85:15: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
  public enum ShiftDirection {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:115:25: note: annotate '_south' with '@MainActor' if property should only be accessed from the main actor
    internal static let _south = ShiftDirection.south
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:115:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _south = ShiftDirection.south
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:118:25: warning: static property '_east' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _east = ShiftDirection.east
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:85:15: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
  public enum ShiftDirection {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:118:25: note: annotate '_east' with '@MainActor' if property should only be accessed from the main actor
    internal static let _east = ShiftDirection.east
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:118:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _east = ShiftDirection.east
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:121:25: warning: static property '_west' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _west = ShiftDirection.west
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:85:15: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
  public enum ShiftDirection {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:121:25: note: annotate '_west' with '@MainActor' if property should only be accessed from the main actor
    internal static let _west = ShiftDirection.west
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:121:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _west = ShiftDirection.west
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:124:25: warning: static property '_northeast' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _northeast = ShiftDirection.northeast
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:85:15: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
  public enum ShiftDirection {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:124:25: note: annotate '_northeast' with '@MainActor' if property should only be accessed from the main actor
    internal static let _northeast = ShiftDirection.northeast
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:124:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _northeast = ShiftDirection.northeast
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:127:25: warning: static property '_southeast' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _southeast = ShiftDirection.southeast
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:85:15: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
  public enum ShiftDirection {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:127:25: note: annotate '_southeast' with '@MainActor' if property should only be accessed from the main actor
    internal static let _southeast = ShiftDirection.southeast
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:127:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _southeast = ShiftDirection.southeast
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:130:25: warning: static property '_northwest' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _northwest = ShiftDirection.northwest
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:85:15: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
  public enum ShiftDirection {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:130:25: note: annotate '_northwest' with '@MainActor' if property should only be accessed from the main actor
    internal static let _northwest = ShiftDirection.northwest
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:130:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _northwest = ShiftDirection.northwest
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:133:25: warning: static property '_southwest' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _southwest = ShiftDirection.southwest
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:85:15: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
  public enum ShiftDirection {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:133:25: note: annotate '_southwest' with '@MainActor' if property should only be accessed from the main actor
    internal static let _southwest = ShiftDirection.southwest
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:133:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _southwest = ShiftDirection.southwest
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:156:21: warning: static property 'edges' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let edges: Bitboard = 0xff81_8181_8181_81ff
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:82:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:156:21: note: annotate 'edges' with '@MainActor' if property should only be accessed from the main actor
  public static let edges: Bitboard = 0xff81_8181_8181_81ff
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift:156:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let edges: Bitboard = 0xff81_8181_8181_81ff
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift:66:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Rank]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all: [Rank] = [1, 2, 3, 4, 5, 6, 7, 8]
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift:24:13: note: consider making enum 'Rank' conform to the 'Sendable' protocol
public enum Rank: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift:66:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all: [Rank] = [1, 2, 3, 4, 5, 6, 7, 8]
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift:66:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all: [Rank] = [1, 2, 3, 4, 5, 6, 7, 8]
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:90:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[File]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:90:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:90:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Bitboard.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Board.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:149:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Piece]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all: [Piece] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:22:15: note: consider making struct 'Piece' conform to the 'Sendable' protocol
public struct Piece: Hashable, CustomStringConvertible {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:149:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all: [Piece] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:149:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all: [Piece] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:83:23: warning: static property '_h' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _h = File.h
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:83:23: note: annotate '_h' with '@MainActor' if property should only be accessed from the main actor
  internal static let _h = File.h
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _h = File.h
                      ^
  nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ File.swift,\ Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.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/SwiftChessCore/File.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:62:23: warning: static property '_a' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _a = File.a
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:62:23: note: annotate '_a' with '@MainActor' if property should only be accessed from the main actor
  internal static let _a = File.a
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _a = File.a
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:65:23: warning: static property '_b' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _b = File.b
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:65:23: note: annotate '_b' with '@MainActor' if property should only be accessed from the main actor
  internal static let _b = File.b
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _b = File.b
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:68:23: warning: static property '_c' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _c = File.c
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:68:23: note: annotate '_c' with '@MainActor' if property should only be accessed from the main actor
  internal static let _c = File.c
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _c = File.c
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:71:23: warning: static property '_d' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _d = File.d
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:71:23: note: annotate '_d' with '@MainActor' if property should only be accessed from the main actor
  internal static let _d = File.d
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _d = File.d
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:74:23: warning: static property '_e' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _e = File.e
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:74:23: note: annotate '_e' with '@MainActor' if property should only be accessed from the main actor
  internal static let _e = File.e
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _e = File.e
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:77:23: warning: static property '_f' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _f = File.f
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:77:23: note: annotate '_f' with '@MainActor' if property should only be accessed from the main actor
  internal static let _f = File.f
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _f = File.f
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:80:23: warning: static property '_g' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _g = File.g
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:80:23: note: annotate '_g' with '@MainActor' if property should only be accessed from the main actor
  internal static let _g = File.g
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _g = File.g
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:83:23: warning: static property '_h' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
  internal static let _h = File.h
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:83:23: note: annotate '_h' with '@MainActor' if property should only be accessed from the main actor
  internal static let _h = File.h
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static let _h = File.h
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:90:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[File]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:90:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift:90:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/File.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Minimax.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessCore -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/File.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/Game.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:35:25: warning: static property '_draw' is not concurrency-safe because non-'Sendable' type 'Game.Outcome' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _draw = Outcome.draw
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:26:15: note: consider making enum 'Outcome' conform to the 'Sendable' protocol
  public enum Outcome: Hashable, CustomStringConvertible {
              ^
                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:35:25: note: annotate '_draw' with '@MainActor' if property should only be accessed from the main actor
    internal static let _draw = Outcome.draw
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:35:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _draw = Outcome.draw
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:176:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CastlingRights' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all = CastlingRights(Right.all)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:24:15: note: consider making struct 'CastlingRights' conform to the 'Sendable' protocol
public struct CastlingRights: CustomStringConvertible {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:176:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all = CastlingRights(Right.all)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:176:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all = CastlingRights(Right.all)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:240:10: warning: associated value 'wrongKingCount' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Color'; this is an error in the Swift 6 language mode
    case wrongKingCount(Color)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:22:13: note: consider making enum 'Color' conform to the 'Sendable' protocol
public enum Color: String, CustomStringConvertible {
            ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:243:10: warning: associated value 'missingKing' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'CastlingRights.Right'; this is an error in the Swift 6 language mode
    case missingKing(CastlingRights.Right)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:27:15: note: consider making enum 'Right' conform to the 'Sendable' protocol
  public enum Right: String, CustomStringConvertible {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:246:10: warning: associated value 'missingRook' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'CastlingRights.Right'; this is an error in the Swift 6 language mode
    case missingRook(CastlingRights.Right)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/CastlingRights.swift:27:15: note: consider making enum 'Right' conform to the 'Sendable' protocol
  public enum Right: String, CustomStringConvertible {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:249:10: warning: associated value 'wrongEnPassantTargetRank' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Rank'; this is an error in the Swift 6 language mode
    case wrongEnPassantTargetRank(Rank)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Rank.swift:24:13: note: consider making enum 'Rank' conform to the 'Sendable' protocol
public enum Rank: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:252:10: warning: associated value 'nonEmptyEnPassantTarget' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Square'; this is an error in the Swift 6 language mode
    case nonEmptyEnPassantTarget(Square, Piece)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:252:10: warning: associated value 'nonEmptyEnPassantTarget' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Piece'; this is an error in the Swift 6 language mode
    case nonEmptyEnPassantTarget(Square, Piece)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:22:15: note: consider making struct 'Piece' conform to the 'Sendable' protocol
public struct Piece: Hashable, CustomStringConvertible {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:255:10: warning: associated value 'missingEnPassantPawn' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Square'; this is an error in the Swift 6 language mode
    case missingEnPassantPawn(Square)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:258:10: warning: associated value 'nonEmptyEnPassantSquare' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Square'; this is an error in the Swift 6 language mode
    case nonEmptyEnPassantSquare(Square, Piece)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:258:10: warning: associated value 'nonEmptyEnPassantSquare' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Piece'; this is an error in the Swift 6 language mode
    case nonEmptyEnPassantSquare(Square, Piece)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:22:15: note: consider making struct 'Piece' conform to the 'Sendable' protocol
public struct Piece: Hashable, CustomStringConvertible {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:268:10: warning: associated value 'missingPiece' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Square'; this is an error in the Swift 6 language mode
    case missingPiece(Square)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:271:10: warning: associated value 'illegalMove' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Move'; this is an error in the Swift 6 language mode
    case illegalMove(Move, Color, Board)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Move.swift:22:15: note: consider making struct 'Move' conform to the 'Sendable' protocol
public struct Move: Hashable, CustomStringConvertible {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:271:10: warning: associated value 'illegalMove' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Color'; this is an error in the Swift 6 language mode
    case illegalMove(Move, Color, Board)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:22:13: note: consider making enum 'Color' conform to the 'Sendable' protocol
public enum Color: String, CustomStringConvertible {
            ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:271:10: warning: associated value 'illegalMove' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Board'; this is an error in the Swift 6 language mode
    case illegalMove(Move, Color, Board)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Board.swift:24:15: note: consider making struct 'Board' conform to the 'Sendable' protocol
public struct Board: Hashable, CustomStringConvertible {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Game.swift:274:10: warning: associated value 'invalidPromotion' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Piece.Kind'; this is an error in the Swift 6 language mode
    case invalidPromotion(Piece.Kind)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:25:15: note: consider making enum 'Kind' conform to the 'Sendable' protocol
  public enum Kind: Int {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:37:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Color]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all: [Color] = [.white, .black]
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:22:13: note: consider making enum 'Color' conform to the 'Sendable' protocol
public enum Color: String, CustomStringConvertible {
            ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:37:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all: [Color] = [.white, .black]
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Color.swift:37:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all: [Color] = [.white, .black]
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:58:25: warning: static property '_queen' is not concurrency-safe because non-'Sendable' type 'Piece.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _queen = Kind.queen
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:25:15: note: consider making enum 'Kind' conform to the 'Sendable' protocol
  public enum Kind: Int {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:58:25: note: annotate '_queen' with '@MainActor' if property should only be accessed from the main actor
    internal static let _queen = Kind.queen
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Piece.swift:58:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _queen = Kind.queen
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:226:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Square]' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let all: [Square] = (0..<64).compactMap(Square.init(rawValue:))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:226:21: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
  public static let all: [Square] = (0..<64).compactMap(Square.init(rawValue:))
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessCore/Square.swift:226:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let all: [Square] = (0..<64).compactMap(Square.init(rawValue:))
                    ^
  nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftChessCore (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling InternalTypes.swift, Minimax.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftDriver\ Compilation\ Requirements SwiftChessCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -enable-experimental-feature StrictConcurrency -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -target arm64-apple-macos10.13 -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 -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore-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/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.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/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CastlingRights.swift, Color.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling Sequence+Sage.swift, Square.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SwiftChessCore-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore-Swift.h (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SwiftChessCore-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.swiftmodule (in target 'SwiftChessCore' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.swiftdoc (in target 'SwiftChessCore' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.abi.json (in target 'SwiftChessCore' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.swiftmodule/arm64-apple-macos.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling Tables.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.swiftsourceinfo (in target 'SwiftChessCore' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SwiftChessUI.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/SwiftChessUI.modulemap (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/SwiftChessUI.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps
SwiftDriverJobDiscovery normal arm64 Compiling Player.swift, Rank.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftDriver SwiftChessUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -target arm64-apple-macos10.13 -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 -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ SwiftChessUI (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessUI/Board+View.swift -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessUI -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-master-emit-module.d -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.abi.json
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessUI/Board+View.swift (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessUI/Board+View.swift -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessUI -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-master-emit-module.d -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.abi.json
SwiftCompile normal arm64 Compiling\ Board+View.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessUI/Board+View.swift (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessUI/Board+View.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessUI -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.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/SwiftChessUI/Board+View.swift (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessUI/Board+View.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.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.2.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/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessUI -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.2 -target-sdk-name macosx15.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.o -index-unit-output-path /swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/Board+View.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Variant.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling File.swift, Game.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling PGNMove.swift, Piece.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling Move.swift, PGN.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling Bitboard.swift, Board.swift (in target 'SwiftChessCore' from project 'swift-chess-neo')
SwiftDriver\ Compilation SwiftChessCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -enable-experimental-feature StrictConcurrency -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -target arm64-apple-macos10.13 -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 -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore-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/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.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/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore-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/SwiftChessCore.o normal (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessCore.build/Objects-normal/arm64/SwiftChessCore_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.o (in target 'SwiftChessCore' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessCore.o
SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftChessUI (in target 'SwiftChessUI' from project 'swift-chess-neo')
SwiftDriver\ Compilation\ Requirements SwiftChessUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -target arm64-apple-macos10.13 -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 -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SwiftChessUI-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-Swift.h (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SwiftChessUI-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftdoc (in target 'SwiftChessUI' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftmodule (in target 'SwiftChessUI' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftsourceinfo (in target 'SwiftChessUI' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.abi.json (in target 'SwiftChessUI' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.swiftmodule/arm64-apple-macos.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling Board+View.swift (in target 'SwiftChessUI' from project 'swift-chess-neo')
SwiftDriver\ Compilation SwiftChessUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -target arm64-apple-macos10.13 -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 -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.2-24C94-e9512ba338551096f4c3ebf3c3012957.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.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/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI-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/SwiftChessUI.o normal (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug/SwiftChessUI.build/Objects-normal/arm64/SwiftChessUI_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.o (in target 'SwiftChessUI' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftChessUI.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:27cda2c7c3b6400f837fa87e314ded41d846f8cb, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:27cda2c7c3b6400f837fa87e314ded41d846f8cb, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:27cda2c7c3b6400f837fa87e314ded41d846f8cb, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:27cda2c7c3b6400f837fa87e314ded41d846f8cb, name:My Mac }
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swift-chess-neo",
  "name" : "swift-chess-neo",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftChessCore",
      "targets" : [
        "SwiftChessCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftChessUI",
      "targets" : [
        "SwiftChessUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftChessUI",
      "module_type" : "SwiftTarget",
      "name" : "SwiftChessUI",
      "path" : "Sources/SwiftChessUI",
      "product_memberships" : [
        "SwiftChessUI"
      ],
      "sources" : [
        "Board+View.swift"
      ],
      "target_dependencies" : [
        "SwiftChessCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftChessCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftChessCoreTests",
      "path" : "Tests/SwiftChessCoreTests",
      "sources" : [
        "MiscTests.swift",
        "PGNParsingTests.swift",
        "SwiftChessCoreTests.swift"
      ],
      "target_dependencies" : [
        "SwiftChessCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftChessCore",
      "module_type" : "SwiftTarget",
      "name" : "SwiftChessCore",
      "path" : "Sources/SwiftChessCore",
      "product_memberships" : [
        "SwiftChessCore",
        "SwiftChessUI"
      ],
      "sources" : [
        "Bitboard.swift",
        "Board.swift",
        "CastlingRights.swift",
        "Color.swift",
        "File.swift",
        "Game.swift",
        "InternalTypes.swift",
        "Minimax.swift",
        "Move.swift",
        "PGN.swift",
        "PGNMove.swift",
        "Piece.swift",
        "Player.swift",
        "Rank.swift",
        "Sequence+Sage.swift",
        "Square.swift",
        "Tables.swift",
        "Variant.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.