Build Information
Successful build of CoreColor, reference 1.0.0 (2db37b
), with Swift 6.1 for watchOS using Xcode 16.3 on 27 Apr 2025 06:04:40 UTC.
Swift 6 data race errors: 72
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CoreColor -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:17:15: note: consider making struct 'LABColorSpace' conform to the 'Sendable' protocol
public struct LABColorSpace: LABColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: note: add '@MainActor' to make static property 'LAB50' part of global actor 'MainActor'
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: warning: static property 'LAB65' is not concurrency-safe because non-'Sendable' type 'LABColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:17:15: note: consider making struct 'LABColorSpace' conform to the 'Sendable' protocol
public struct LABColorSpace: LABColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: note: add '@MainActor' to make static property 'LAB65' part of global actor 'MainActor'
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: warning: static property 'LUV65' is not concurrency-safe because non-'Sendable' type 'LUVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:11:15: note: consider making struct 'LUVColorSpace' conform to the 'Sendable' protocol
public struct LUVColorSpace: WhitePointColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: note: add '@MainActor' to make static property 'LUV65' part of global actor 'MainActor'
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: warning: static property 'LUV50' is not concurrency-safe because non-'Sendable' type 'LUVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:11:15: note: consider making struct 'LUVColorSpace' conform to the 'Sendable' protocol
public struct LUVColorSpace: WhitePointColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: note: add '@MainActor' to make static property 'LUV50' part of global actor 'MainActor'
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: warning: let 'SRGB_R' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: note: add '@MainActor' to make let 'SRGB_R' part of global actor 'MainActor'
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: warning: let 'SRGB_G' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: note: add '@MainActor' to make let 'SRGB_G' part of global actor 'MainActor'
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: warning: let 'SRGB_B' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: note: add '@MainActor' to make let 'SRGB_B' part of global actor 'MainActor'
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: warning: static property 'LinearSRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: note: add '@MainActor' to make static property 'LinearSRGB' part of global actor 'MainActor'
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: warning: static property 'AdobeRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: note: add '@MainActor' to make static property 'AdobeRGB' part of global actor 'MainActor'
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: warning: static property 'DisplayP3' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: note: add '@MainActor' to make static property 'DisplayP3' part of global actor 'MainActor'
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: warning: static property 'XYZ65' is not concurrency-safe because non-'Sendable' type 'XYZColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:62:15: note: consider making struct 'XYZColorSpace' conform to the 'Sendable' protocol
public struct XYZColorSpace: XYZColorSpaceRepresentable, ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: note: add '@MainActor' to make static property 'XYZ65' part of global actor 'MainActor'
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: warning: static property 'XYZ50' is not concurrency-safe because non-'Sendable' type 'XYZColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:62:15: note: consider making struct 'XYZColorSpace' conform to the 'Sendable' protocol
public struct XYZColorSpace: XYZColorSpaceRepresentable, ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: note: add '@MainActor' to make static property 'XYZ50' part of global actor 'MainActor'
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: warning: static property 'A' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: add '@MainActor' to make static property 'A' part of global actor 'MainActor'
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: warning: static property 'B' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: add '@MainActor' to make static property 'B' part of global actor 'MainActor'
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: warning: static property 'C' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: add '@MainActor' to make static property 'C' part of global actor 'MainActor'
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: warning: static property 'D50' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: add '@MainActor' to make static property 'D50' part of global actor 'MainActor'
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: warning: static property 'D55' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: add '@MainActor' to make static property 'D55' part of global actor 'MainActor'
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: warning: static property 'D65' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: add '@MainActor' to make static property 'D65' part of global actor 'MainActor'
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: warning: static property 'D75' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: add '@MainActor' to make static property 'D75' part of global actor 'MainActor'
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: warning: static property 'E' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: add '@MainActor' to make static property 'E' part of global actor 'MainActor'
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for CoreColor (in target 'CoreColor' from project 'CoreColor')
SwiftDriver\ Compilation\ Requirements CoreColor normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CoreColor -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor-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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Color+Constrast.swift, Color.swift (in target 'CoreColor' from project 'CoreColor')
SwiftEmitModule normal armv7k Emitting\ module\ for\ CoreColor (in target 'CoreColor' from project 'CoreColor')
EmitSwiftModule normal armv7k (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:70:16: warning: static property 'colorspace' is not concurrency-safe because non-'Sendable' type 'CMYKColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static let colorspace: CMYKColorSpace = CMYKColorSpace()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:55:15: note: consider making struct 'CMYKColorSpace' conform to the 'Sendable' protocol
public struct CMYKColorSpace: ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:70:16: note: add '@MainActor' to make static property 'colorspace' part of global actor 'MainActor'
static let colorspace: CMYKColorSpace = CMYKColorSpace()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:70:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let colorspace: CMYKColorSpace = CMYKColorSpace()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:110:16: warning: static property 'colorspace' is not concurrency-safe because non-'Sendable' type 'HSLColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static let colorspace: HSLColorSpace = HSLColorSpace()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:95:15: note: consider making struct 'HSLColorSpace' conform to the 'Sendable' protocol
public struct HSLColorSpace: ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:110:16: note: add '@MainActor' to make static property 'colorspace' part of global actor 'MainActor'
static let colorspace: HSLColorSpace = HSLColorSpace()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:110:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let colorspace: HSLColorSpace = HSLColorSpace()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:83:16: warning: static property 'colorspace' is not concurrency-safe because non-'Sendable' type 'HSVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static let colorspace: HSVColorSpace = HSVColorSpace()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:68:15: note: consider making struct 'HSVColorSpace' conform to the 'Sendable' protocol
public struct HSVColorSpace: ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:83:16: note: add '@MainActor' to make static property 'colorspace' part of global actor 'MainActor'
static let colorspace: HSVColorSpace = HSVColorSpace()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:83:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let colorspace: HSVColorSpace = HSVColorSpace()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: warning: static property 'LAB50' is not concurrency-safe because non-'Sendable' type 'LABColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:17:15: note: consider making struct 'LABColorSpace' conform to the 'Sendable' protocol
public struct LABColorSpace: LABColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: note: add '@MainActor' to make static property 'LAB50' part of global actor 'MainActor'
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: warning: static property 'LAB65' is not concurrency-safe because non-'Sendable' type 'LABColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:17:15: note: consider making struct 'LABColorSpace' conform to the 'Sendable' protocol
public struct LABColorSpace: LABColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: note: add '@MainActor' to make static property 'LAB65' part of global actor 'MainActor'
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: warning: static property 'LUV65' is not concurrency-safe because non-'Sendable' type 'LUVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:11:15: note: consider making struct 'LUVColorSpace' conform to the 'Sendable' protocol
public struct LUVColorSpace: WhitePointColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: note: add '@MainActor' to make static property 'LUV65' part of global actor 'MainActor'
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: warning: static property 'LUV50' is not concurrency-safe because non-'Sendable' type 'LUVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:11:15: note: consider making struct 'LUVColorSpace' conform to the 'Sendable' protocol
public struct LUVColorSpace: WhitePointColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: note: add '@MainActor' to make static property 'LUV50' part of global actor 'MainActor'
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: warning: let 'SRGB_R' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: note: add '@MainActor' to make let 'SRGB_R' part of global actor 'MainActor'
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: warning: let 'SRGB_G' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: note: add '@MainActor' to make let 'SRGB_G' part of global actor 'MainActor'
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: warning: let 'SRGB_B' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: note: add '@MainActor' to make let 'SRGB_B' part of global actor 'MainActor'
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: warning: static property 'LinearSRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: note: add '@MainActor' to make static property 'LinearSRGB' part of global actor 'MainActor'
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: warning: static property 'AdobeRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: note: add '@MainActor' to make static property 'AdobeRGB' part of global actor 'MainActor'
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: warning: static property 'DisplayP3' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: note: add '@MainActor' to make static property 'DisplayP3' part of global actor 'MainActor'
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: warning: static property 'XYZ65' is not concurrency-safe because non-'Sendable' type 'XYZColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:62:15: note: consider making struct 'XYZColorSpace' conform to the 'Sendable' protocol
public struct XYZColorSpace: XYZColorSpaceRepresentable, ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: note: add '@MainActor' to make static property 'XYZ65' part of global actor 'MainActor'
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: warning: static property 'XYZ50' is not concurrency-safe because non-'Sendable' type 'XYZColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:62:15: note: consider making struct 'XYZColorSpace' conform to the 'Sendable' protocol
public struct XYZColorSpace: XYZColorSpaceRepresentable, ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: note: add '@MainActor' to make static property 'XYZ50' part of global actor 'MainActor'
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: warning: static property 'A' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: add '@MainActor' to make static property 'A' part of global actor 'MainActor'
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: warning: static property 'B' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: add '@MainActor' to make static property 'B' part of global actor 'MainActor'
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: warning: static property 'C' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: add '@MainActor' to make static property 'C' part of global actor 'MainActor'
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: warning: static property 'D50' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: add '@MainActor' to make static property 'D50' part of global actor 'MainActor'
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: warning: static property 'D55' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: add '@MainActor' to make static property 'D55' part of global actor 'MainActor'
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: warning: static property 'D65' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: add '@MainActor' to make static property 'D65' part of global actor 'MainActor'
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: warning: static property 'D75' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: add '@MainActor' to make static property 'D75' part of global actor 'MainActor'
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: warning: static property 'E' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: add '@MainActor' to make static property 'E' part of global actor 'MainActor'
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
nonisolated(unsafe)
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.swiftmodule (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling WhitePointColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.swiftdoc (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.abi.json (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.swiftsourceinfo (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ RGBInt.swift,\ XYZ.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBInt.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBInt.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: warning: static property 'XYZ65' is not concurrency-safe because non-'Sendable' type 'XYZColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:62:15: note: consider making struct 'XYZColorSpace' conform to the 'Sendable' protocol
public struct XYZColorSpace: XYZColorSpaceRepresentable, ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: note: add '@MainActor' to make static property 'XYZ65' part of global actor 'MainActor'
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: warning: static property 'XYZ50' is not concurrency-safe because non-'Sendable' type 'XYZColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:62:15: note: consider making struct 'XYZColorSpace' conform to the 'Sendable' protocol
public struct XYZColorSpace: XYZColorSpaceRepresentable, ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: note: add '@MainActor' to make static property 'XYZ50' part of global actor 'MainActor'
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ CMYK.swift,\ HSL.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:70:16: warning: static property 'colorspace' is not concurrency-safe because non-'Sendable' type 'CMYKColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static let colorspace: CMYKColorSpace = CMYKColorSpace()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:55:15: note: consider making struct 'CMYKColorSpace' conform to the 'Sendable' protocol
public struct CMYKColorSpace: ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:70:16: note: add '@MainActor' to make static property 'colorspace' part of global actor 'MainActor'
static let colorspace: CMYKColorSpace = CMYKColorSpace()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:70:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let colorspace: CMYKColorSpace = CMYKColorSpace()
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:110:16: warning: static property 'colorspace' is not concurrency-safe because non-'Sendable' type 'HSLColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static let colorspace: HSLColorSpace = HSLColorSpace()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:95:15: note: consider making struct 'HSLColorSpace' conform to the 'Sendable' protocol
public struct HSLColorSpace: ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:110:16: note: add '@MainActor' to make static property 'colorspace' part of global actor 'MainActor'
static let colorspace: HSLColorSpace = HSLColorSpace()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:110:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let colorspace: HSLColorSpace = HSLColorSpace()
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ColorComponentInfo.swift, ColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 Compiling\ WhitePointColorSpace.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePointColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePointColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling CMYK.swift, HSL.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ xyY.swift,\ WhitePoint.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: warning: static property 'A' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: add '@MainActor' to make static property 'A' part of global actor 'MainActor'
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: warning: static property 'B' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: add '@MainActor' to make static property 'B' part of global actor 'MainActor'
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: warning: static property 'C' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: add '@MainActor' to make static property 'C' part of global actor 'MainActor'
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: warning: static property 'D50' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: add '@MainActor' to make static property 'D50' part of global actor 'MainActor'
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: warning: static property 'D55' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: add '@MainActor' to make static property 'D55' part of global actor 'MainActor'
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: warning: static property 'D65' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: add '@MainActor' to make static property 'D65' part of global actor 'MainActor'
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: warning: static property 'D75' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: add '@MainActor' to make static property 'D75' part of global actor 'MainActor'
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: warning: static property 'E' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: add '@MainActor' to make static property 'E' part of global actor 'MainActor'
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling RGBColorSpaces.swift, RGBColorspace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 Compiling\ LUV.swift,\ RGB.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: warning: static property 'LUV65' is not concurrency-safe because non-'Sendable' type 'LUVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:11:15: note: consider making struct 'LUVColorSpace' conform to the 'Sendable' protocol
public struct LUVColorSpace: WhitePointColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: note: add '@MainActor' to make static property 'LUV65' part of global actor 'MainActor'
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: warning: static property 'LUV50' is not concurrency-safe because non-'Sendable' type 'LUVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:11:15: note: consider making struct 'LUVColorSpace' conform to the 'Sendable' protocol
public struct LUVColorSpace: WhitePointColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: note: add '@MainActor' to make static property 'LUV50' part of global actor 'MainActor'
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGB.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling RGBInt.swift, XYZ.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ Color+Constrast.swift,\ Color.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Color+Constrast.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Color.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Color+Constrast.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Color.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ HSV.swift,\ LAB.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:83:16: warning: static property 'colorspace' is not concurrency-safe because non-'Sendable' type 'HSVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static let colorspace: HSVColorSpace = HSVColorSpace()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:68:15: note: consider making struct 'HSVColorSpace' conform to the 'Sendable' protocol
public struct HSVColorSpace: ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:83:16: note: add '@MainActor' to make static property 'colorspace' part of global actor 'MainActor'
static let colorspace: HSVColorSpace = HSVColorSpace()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:83:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let colorspace: HSVColorSpace = HSVColorSpace()
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: warning: static property 'LAB50' is not concurrency-safe because non-'Sendable' type 'LABColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:17:15: note: consider making struct 'LABColorSpace' conform to the 'Sendable' protocol
public struct LABColorSpace: LABColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: note: add '@MainActor' to make static property 'LAB50' part of global actor 'MainActor'
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: warning: static property 'LAB65' is not concurrency-safe because non-'Sendable' type 'LABColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:17:15: note: consider making struct 'LABColorSpace' conform to the 'Sendable' protocol
public struct LABColorSpace: LABColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: note: add '@MainActor' to make static property 'LAB65' part of global actor 'MainActor'
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling LUV.swift, RGB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriverJobDiscovery normal arm64 Compiling Constants.swift, FloatingPoint+Utilities.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ RGBColorSpaces.swift,\ RGBColorspace.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorspace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: warning: let 'SRGB_R' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: note: add '@MainActor' to make let 'SRGB_R' part of global actor 'MainActor'
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: warning: let 'SRGB_G' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: note: add '@MainActor' to make let 'SRGB_G' part of global actor 'MainActor'
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: warning: let 'SRGB_B' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: note: add '@MainActor' to make let 'SRGB_B' part of global actor 'MainActor'
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: warning: static property 'LinearSRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: note: add '@MainActor' to make static property 'LinearSRGB' part of global actor 'MainActor'
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: warning: static property 'AdobeRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: note: add '@MainActor' to make static property 'AdobeRGB' part of global actor 'MainActor'
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: warning: static property 'DisplayP3' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: note: add '@MainActor' to make static property 'DisplayP3' part of global actor 'MainActor'
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorspace.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling HSV.swift, LAB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ RGBInt.swift,\ XYZ.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBInt.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBInt.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: warning: static property 'XYZ65' is not concurrency-safe because non-'Sendable' type 'XYZColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:62:15: note: consider making struct 'XYZColorSpace' conform to the 'Sendable' protocol
public struct XYZColorSpace: XYZColorSpaceRepresentable, ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: note: add '@MainActor' to make static property 'XYZ65' part of global actor 'MainActor'
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let XYZ65: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: warning: static property 'XYZ50' is not concurrency-safe because non-'Sendable' type 'XYZColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:62:15: note: consider making struct 'XYZColorSpace' conform to the 'Sendable' protocol
public struct XYZColorSpace: XYZColorSpaceRepresentable, ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: note: add '@MainActor' to make static property 'XYZ50' part of global actor 'MainActor'
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/XYZ.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let XYZ50: XYZColorSpace = XYZColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Emitting module for CoreColor (in target 'CoreColor' from project 'CoreColor')
SwiftDriver\ Compilation\ Requirements CoreColor normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CoreColor -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor-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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Emitting module for CoreColor (in target 'CoreColor' from project 'CoreColor')
SwiftDriver\ Compilation\ Requirements CoreColor normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CoreColor -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor-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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.swiftmodule (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64_32-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CoreColor-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor-Swift.h (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CoreColor-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.swiftmodule (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.swiftdoc (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.abi.json (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.swiftdoc (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.abi.json (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.swiftsourceinfo (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.swiftsourceinfo (in target 'CoreColor' from project 'CoreColor')
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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ Constants.swift,\ FloatingPoint+Utilities.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Constants.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/FloatingPoint+Utilities.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Constants.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/FloatingPoint+Utilities.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ ColorComponentInfo.swift,\ ColorSpace.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/ColorComponentInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/ColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/ColorComponentInfo.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/ColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling WhitePointColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ ColorComponentInfo.swift,\ ColorSpace.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/ColorComponentInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/ColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/ColorComponentInfo.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/ColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling Color+Constrast.swift, Color.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 Compiling\ RGBColorSpaces.swift,\ RGBColorspace.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorspace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: warning: let 'SRGB_R' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: note: add '@MainActor' to make let 'SRGB_R' part of global actor 'MainActor'
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:10:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_R = xyY(x: 0.6400, y: 0.3300)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: warning: let 'SRGB_G' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: note: add '@MainActor' to make let 'SRGB_G' part of global actor 'MainActor'
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:12:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_G = xyY(x: 0.3000, y: 0.6000)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: warning: let 'SRGB_B' is not concurrency-safe because non-'Sendable' type 'xyY' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift:9:15: note: consider making struct 'xyY' conform to the 'Sendable' protocol
public struct xyY: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: note: add '@MainActor' to make let 'SRGB_B' part of global actor 'MainActor'
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:14:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let SRGB_B = xyY(x: 0.1500, y: 0.0600)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let sRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: warning: static property 'LinearSRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: note: add '@MainActor' to make static property 'LinearSRGB' part of global actor 'MainActor'
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LinearSRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: warning: static property 'AdobeRGB' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: note: add '@MainActor' to make static property 'AdobeRGB' part of global actor 'MainActor'
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let AdobeRGB: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: warning: static property 'DisplayP3' is not concurrency-safe because non-'Sendable' type 'RGBColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:87:15: note: consider making struct 'RGBColorSpace' conform to the 'Sendable' protocol
public struct RGBColorSpace: RGBColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: note: add '@MainActor' to make static property 'DisplayP3' part of global actor 'MainActor'
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorSpaces.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let DisplayP3: RGBColorSpace = RGBColorSpace(
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGBColorspace.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling xyY.swift, WhitePoint.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ HSV.swift,\ LAB.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:83:16: warning: static property 'colorspace' is not concurrency-safe because non-'Sendable' type 'HSVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static let colorspace: HSVColorSpace = HSVColorSpace()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:68:15: note: consider making struct 'HSVColorSpace' conform to the 'Sendable' protocol
public struct HSVColorSpace: ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:83:16: note: add '@MainActor' to make static property 'colorspace' part of global actor 'MainActor'
static let colorspace: HSVColorSpace = HSVColorSpace()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSV.swift:83:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let colorspace: HSVColorSpace = HSVColorSpace()
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: warning: static property 'LAB50' is not concurrency-safe because non-'Sendable' type 'LABColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:17:15: note: consider making struct 'LABColorSpace' conform to the 'Sendable' protocol
public struct LABColorSpace: LABColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: note: add '@MainActor' to make static property 'LAB50' part of global actor 'MainActor'
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LAB50: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: warning: static property 'LAB65' is not concurrency-safe because non-'Sendable' type 'LABColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:17:15: note: consider making struct 'LABColorSpace' conform to the 'Sendable' protocol
public struct LABColorSpace: LABColorSpaceRepresentable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: note: add '@MainActor' to make static property 'LAB65' part of global actor 'MainActor'
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LAB.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LAB65: LABColorSpace = LABColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling CMYK.swift, HSL.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 Compiling\ Color+Constrast.swift,\ Color.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Color+Constrast.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Color.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Color+Constrast.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Color.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling ColorComponentInfo.swift, ColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ LUV.swift,\ RGB.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: warning: static property 'LUV65' is not concurrency-safe because non-'Sendable' type 'LUVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:11:15: note: consider making struct 'LUVColorSpace' conform to the 'Sendable' protocol
public struct LUVColorSpace: WhitePointColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: note: add '@MainActor' to make static property 'LUV65' part of global actor 'MainActor'
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LUV65: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D65)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: warning: static property 'LUV50' is not concurrency-safe because non-'Sendable' type 'LUVColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:11:15: note: consider making struct 'LUVColorSpace' conform to the 'Sendable' protocol
public struct LUVColorSpace: WhitePointColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: note: add '@MainActor' to make static property 'LUV50' part of global actor 'MainActor'
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/LUV.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let LUV50: LUVColorSpace = LUVColorSpace(whitePoint: Illuminant.D50)
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/RGB.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling ColorComponentInfo.swift, ColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 Compiling\ xyY.swift,\ WhitePoint.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: warning: static property 'A' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: add '@MainActor' to make static property 'A' part of global actor 'MainActor'
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: warning: static property 'B' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: add '@MainActor' to make static property 'B' part of global actor 'MainActor'
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: warning: static property 'C' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: add '@MainActor' to make static property 'C' part of global actor 'MainActor'
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: warning: static property 'D50' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: add '@MainActor' to make static property 'D50' part of global actor 'MainActor'
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: warning: static property 'D55' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: add '@MainActor' to make static property 'D55' part of global actor 'MainActor'
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: warning: static property 'D65' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: add '@MainActor' to make static property 'D65' part of global actor 'MainActor'
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: warning: static property 'D75' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: add '@MainActor' to make static property 'D75' part of global actor 'MainActor'
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: warning: static property 'E' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: add '@MainActor' to make static property 'E' part of global actor 'MainActor'
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling RGBInt.swift, XYZ.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ Constants.swift,\ FloatingPoint+Utilities.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Constants.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/FloatingPoint+Utilities.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Constants.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/FloatingPoint+Utilities.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Color+Constrast.swift, Color.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ CMYK.swift,\ HSL.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:70:16: warning: static property 'colorspace' is not concurrency-safe because non-'Sendable' type 'CMYKColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static let colorspace: CMYKColorSpace = CMYKColorSpace()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:55:15: note: consider making struct 'CMYKColorSpace' conform to the 'Sendable' protocol
public struct CMYKColorSpace: ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:70:16: note: add '@MainActor' to make static property 'colorspace' part of global actor 'MainActor'
static let colorspace: CMYKColorSpace = CMYKColorSpace()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/CMYK.swift:70:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let colorspace: CMYKColorSpace = CMYKColorSpace()
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:110:16: warning: static property 'colorspace' is not concurrency-safe because non-'Sendable' type 'HSLColorSpace' may have shared mutable state; this is an error in the Swift 6 language mode
static let colorspace: HSLColorSpace = HSLColorSpace()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:95:15: note: consider making struct 'HSLColorSpace' conform to the 'Sendable' protocol
public struct HSLColorSpace: ColorSpace {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:110:16: note: add '@MainActor' to make static property 'colorspace' part of global actor 'MainActor'
static let colorspace: HSLColorSpace = HSLColorSpace()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/HSL.swift:110:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let colorspace: HSLColorSpace = HSLColorSpace()
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling RGBColorSpaces.swift, RGBColorspace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k Compiling\ WhitePointColorSpace.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePointColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePointColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling RGBColorSpaces.swift, RGBColorspace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64 Compiling\ xyY.swift,\ WhitePoint.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift (in target 'CoreColor' from project 'CoreColor')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/Models/xyY.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: warning: static property 'A' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: add '@MainActor' to make static property 'A' part of global actor 'MainActor'
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let A: WhitePoint = .init(name: "A", chromaticity: xyY(x: 0.44758, y: 0.40745))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: warning: static property 'B' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: add '@MainActor' to make static property 'B' part of global actor 'MainActor'
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let B: WhitePoint = .init(name: "B", chromaticity: xyY(x: 0.34842, y: 0.35161))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: warning: static property 'C' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: add '@MainActor' to make static property 'C' part of global actor 'MainActor'
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let C: WhitePoint = .init(name: "C", chromaticity: xyY(x: 0.31006, y: 0.31616))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: warning: static property 'D50' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: add '@MainActor' to make static property 'D50' part of global actor 'MainActor'
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D50: WhitePoint = .init(name: "D50", chromaticity: xyY(x: 0.34570, y: 0.35850))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: warning: static property 'D55' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: add '@MainActor' to make static property 'D55' part of global actor 'MainActor'
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D55: WhitePoint = .init(name: "D55", chromaticity: xyY(x: 0.33243, y: 0.34744))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: warning: static property 'D65' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: add '@MainActor' to make static property 'D65' part of global actor 'MainActor'
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D65: WhitePoint = .init(name: "D65", chromaticity: xyY(x: 0.31270, y: 0.32900))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: warning: static property 'D75' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: add '@MainActor' to make static property 'D75' part of global actor 'MainActor'
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let D75: WhitePoint = .init(name: "D75", chromaticity: xyY(x: 0.29903, y: 0.31488))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: warning: static property 'E' is not concurrency-safe because non-'Sendable' type 'WhitePoint' may have shared mutable state; this is an error in the Swift 6 language mode
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:9:15: note: consider making struct 'WhitePoint' conform to the 'Sendable' protocol
public struct WhitePoint: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: add '@MainActor' to make static property 'E' part of global actor 'MainActor'
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreColor/WhitePoint.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let E: WhitePoint = .init(name: "E", chromaticity: xyY(x: 1.0 / 3.0, y: 1.0 / 3.0))
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling RGBInt.swift, XYZ.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriverJobDiscovery normal arm64_32 Compiling xyY.swift, WhitePoint.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriverJobDiscovery normal armv7k Compiling WhitePointColorSpace.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriverJobDiscovery normal arm64 Compiling xyY.swift, WhitePoint.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriver\ Compilation CoreColor normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CoreColor -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor-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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/Binary/CoreColor.o normal arm64 (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/Binary/CoreColor.o
SwiftDriverJobDiscovery normal armv7k Compiling CMYK.swift, HSL.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriverJobDiscovery normal arm64_32 Compiling LUV.swift, RGB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriverJobDiscovery normal arm64_32 Compiling Constants.swift, FloatingPoint+Utilities.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriverJobDiscovery normal arm64_32 Compiling HSV.swift, LAB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriver\ Compilation CoreColor normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CoreColor -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor-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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/Binary/CoreColor.o normal arm64_32 (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/Binary/CoreColor.o
SwiftDriverJobDiscovery normal armv7k Compiling HSV.swift, LAB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriverJobDiscovery normal armv7k Compiling LUV.swift, RGB.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriverJobDiscovery normal armv7k Compiling Constants.swift, FloatingPoint+Utilities.swift (in target 'CoreColor' from project 'CoreColor')
SwiftDriver\ Compilation CoreColor normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CoreColor -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor-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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.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/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/Binary/CoreColor.o normal armv7k (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/Binary/CoreColor.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.o normal arm64\ armv7k\ arm64_32 (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/Binary/CoreColor.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/Binary/CoreColor.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/Binary/CoreColor.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.o
ExtractAppIntentsMetadata (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CoreColor --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier spi-builder-workspace.CoreColor --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/CoreColor.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/CoreColor.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64/CoreColor.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/armv7k/CoreColor.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreColor.build/Debug-watchos/CoreColor.build/Objects-normal/arm64_32/CoreColor.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 23:04:39.141 appintentsmetadataprocessor[744:4262] Starting appintentsmetadataprocessor export
2025-04-26 23:04:39.179 appintentsmetadataprocessor[744:4262] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.o (in target 'CoreColor' from project 'CoreColor')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CoreColor.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CoreColor",
"name" : "CoreColor",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CoreColor",
"targets" : [
"CoreColor"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CoreColorTests",
"module_type" : "SwiftTarget",
"name" : "CoreColorTests",
"path" : "Tests/CoreColorTests",
"sources" : [
"CMYKTests.swift",
"ColorTestCase.swift",
"HSLTests.swift",
"HSVTests.swift",
"LABTests.swift",
"LUVTests.swift",
"RGBColorSpaceTests.swift",
"RGBColorSpacesConversionTests.swift",
"RGBTests.swift",
"XYZTests.swift"
],
"target_dependencies" : [
"CoreColor"
],
"type" : "test"
},
{
"c99name" : "CoreColor",
"module_type" : "SwiftTarget",
"name" : "CoreColor",
"path" : "Sources/CoreColor",
"product_memberships" : [
"CoreColor"
],
"sources" : [
"Color+Constrast.swift",
"Color.swift",
"ColorComponentInfo.swift",
"ColorSpace.swift",
"Constants.swift",
"FloatingPoint+Utilities.swift",
"Models/CMYK.swift",
"Models/HSL.swift",
"Models/HSV.swift",
"Models/LAB.swift",
"Models/LUV.swift",
"Models/RGB.swift",
"Models/RGBColorSpaces.swift",
"Models/RGBColorspace.swift",
"Models/RGBInt.swift",
"Models/XYZ.swift",
"Models/xyY.swift",
"WhitePoint.swift",
"WhitePointColorSpace.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
Done.