Build Information
Successful build of SmartCodable, reference 5.0.12 (9e0914
), with Swift 6.1 for watchOS using Xcode 16.3 on 4 Jun 2025 16:59:33 UTC.
Swift 6 data race errors: 24
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SmartCodable -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
SwiftEmitModule normal armv7k Emitting\ module\ for\ SmartCodable (in target 'SmartCodable' from project 'SmartCodable')
EmitSwiftModule normal armv7k (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: warning: let '_iso8601Formatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: add '@MainActor' to make let '_iso8601Formatter' part of global actor 'MainActor'
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: warning: static property 'parsingMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: convert 'parsingMark' to a 'let' constant to make 'Sendable' shared state immutable
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: add '@MainActor' to make static property 'parsingMark' part of global actor 'MainActor'
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: warning: static property 'logContextHeader' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: convert 'logContextHeader' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: add '@MainActor' to make static property 'logContextHeader' part of global actor 'MainActor'
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: warning: static property 'logContextFooter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: convert 'logContextFooter' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: add '@MainActor' to make static property 'logContextFooter' part of global actor 'MainActor'
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: warning: static property '_mode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _mode = Level.none
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: convert '_mode' to a 'let' constant to make 'Sendable' shared state immutable
private static var _mode = Level.none
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: add '@MainActor' to make static property '_mode' part of global actor 'MainActor'
private static var _mode = Level.none
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _mode = Level.none
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var cache = LogCache()
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
private static var cache = LogCache()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
private static var cache = LogCache()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var cache = LogCache()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: warning: static property 'logsHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var logsHandler: ((String) -> Void)?
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: convert 'logsHandler' to a 'let' constant to make 'Sendable' shared state immutable
private static var logsHandler: ((String) -> Void)?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: add '@MainActor' to make static property 'logsHandler' part of global actor 'MainActor'
private static var logsHandler: ((String) -> Void)?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var logsHandler: ((String) -> Void)?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: warning: static property '_numberConversionStrategy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: convert '_numberConversionStrategy' to a 'let' constant to make 'Sendable' shared state immutable
private static var _numberConversionStrategy = NumberConversionStrategy.strict
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: add '@MainActor' to make static property '_numberConversionStrategy' part of global actor 'MainActor'
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
nonisolated(unsafe)
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal armv7k Compiling\ JSONFuture.swift,\ SmartJSONEncoder.swift,\ SmartKeyEncodingStrategy.swift,\ JSONParser.swift,\ JSONValue+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/JSONFuture.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartJSONEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartKeyEncodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/JSONFuture.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartJSONEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartKeyEncodingStrategy.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONParser.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ SmartDate.swift,\ SmartFlat.swift,\ SmartHexColor.swift,\ SmartPublished.swift,\ LogCache.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartDate.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartFlat.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartHexColor.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartPublished.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogCache.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartDate.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartFlat.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartHexColor.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartPublished.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogCache.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ SmartKeyDecodingStrategy.swift,\ Patcher+Provider.swift,\ Patcher+Transformer.swift,\ Patcher.swift,\ JSONKeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartKeyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Provider.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Transformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONKeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartKeyDecodingStrategy.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Provider.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Transformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONKeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ JSONSingleValueEncodingContainer.swift,\ JSONUnkeyedEncodingContainer.swift,\ EncodingCache.swift,\ JSONEncoderImpl.swift,\ _SpecialTreatmentEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONSingleValueEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONUnkeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/EncodingCache.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/JSONEncoderImpl.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/_SpecialTreatmentEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONSingleValueEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONUnkeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/EncodingCache.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/JSONEncoderImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/_SpecialTreatmentEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ SmartDecodable.swift,\ SmartEncodable.swift,\ SmartUpdater.swift,\ SmartCoding.swift,\ SmartCaseDefaultable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartDecodable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartUpdater.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartType/SmartCaseDefaultable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartDecodable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartEncodable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartUpdater.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: warning: static property '_numberConversionStrategy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: convert '_numberConversionStrategy' to a 'let' constant to make 'Sendable' shared state immutable
private static var _numberConversionStrategy = NumberConversionStrategy.strict
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: add '@MainActor' to make static property '_numberConversionStrategy' part of global actor 'MainActor'
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartType/SmartCaseDefaultable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ JSONValue.swift,\ IgnoredKey.swift,\ PropertyWrapperProtocol.swift,\ SmartAny.swift,\ SmartAnyImpl.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/IgnoredKey.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/PropertyWrapperProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAny.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAnyImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/IgnoredKey.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/PropertyWrapperProtocol.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAny.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAnyImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ DataTransformer.swift,\ DateTransformer.swift,\ Transformer.swift,\ URLTransformer.swift,\ SmartCodableMacros.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DataTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DateTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/Transformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/URLTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/MacroSupport/SmartCodableMacros.swift (in target 'SmartCodable' from project 'SmartCodable')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DataTransformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DateTransformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/Transformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/URLTransformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/MacroSupport/SmartCodableMacros.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ LogContainer.swift,\ LogItem.swift,\ SafeDictionary.swift,\ SmartSentinel.swift,\ SmartCodable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartCodable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogItem.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SafeDictionary.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: warning: static property '_mode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _mode = Level.none
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: convert '_mode' to a 'let' constant to make 'Sendable' shared state immutable
private static var _mode = Level.none
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: add '@MainActor' to make static property '_mode' part of global actor 'MainActor'
private static var _mode = Level.none
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _mode = Level.none
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var cache = LogCache()
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
private static var cache = LogCache()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
private static var cache = LogCache()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var cache = LogCache()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: warning: static property 'logsHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var logsHandler: ((String) -> Void)?
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: convert 'logsHandler' to a 'let' constant to make 'Sendable' shared state immutable
private static var logsHandler: ((String) -> Void)?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: add '@MainActor' to make static property 'logsHandler' part of global actor 'MainActor'
private static var logsHandler: ((String) -> Void)?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var logsHandler: ((String) -> Void)?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:130:33: warning: sending 'message' risks causing data races; this is an error in the Swift 6 language mode
handler(message)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:130:33: note: task-isolated 'message' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
handler(message)
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:160:37: warning: sending 'message' risks causing data races; this is an error in the Swift 6 language mode
handler(message)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:160:37: note: task-isolated 'message' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
handler(message)
^~~~~~~
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartCodable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ JSONDecoderImpl+UnkeyedContainer.swift,\ JSONDecoderImpl+Unwrap.swift,\ JSONDecoderImpl.swift,\ KeysMapper.swift,\ SmartJSONDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+UnkeyedContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/KeysMapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+UnkeyedContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: warning: let '_iso8601Formatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: add '@MainActor' to make let '_iso8601Formatter' part of global actor 'MainActor'
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/KeysMapper.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: warning: static property 'parsingMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: convert 'parsingMark' to a 'let' constant to make 'Sendable' shared state immutable
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: add '@MainActor' to make static property 'parsingMark' part of global actor 'MainActor'
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: warning: static property 'logContextHeader' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: convert 'logContextHeader' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: add '@MainActor' to make static property 'logContextHeader' part of global actor 'MainActor'
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: warning: static property 'logContextFooter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: convert 'logContextFooter' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: add '@MainActor' to make static property 'logContextFooter' part of global actor 'MainActor'
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
nonisolated(unsafe)
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ SmartCodable (in target 'SmartCodable' from project 'SmartCodable')
EmitSwiftModule normal arm64_32 (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: warning: let '_iso8601Formatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: add '@MainActor' to make let '_iso8601Formatter' part of global actor 'MainActor'
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: warning: static property 'parsingMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: convert 'parsingMark' to a 'let' constant to make 'Sendable' shared state immutable
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: add '@MainActor' to make static property 'parsingMark' part of global actor 'MainActor'
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: warning: static property 'logContextHeader' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: convert 'logContextHeader' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: add '@MainActor' to make static property 'logContextHeader' part of global actor 'MainActor'
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: warning: static property 'logContextFooter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: convert 'logContextFooter' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: add '@MainActor' to make static property 'logContextFooter' part of global actor 'MainActor'
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: warning: static property '_mode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _mode = Level.none
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: convert '_mode' to a 'let' constant to make 'Sendable' shared state immutable
private static var _mode = Level.none
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: add '@MainActor' to make static property '_mode' part of global actor 'MainActor'
private static var _mode = Level.none
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _mode = Level.none
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var cache = LogCache()
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
private static var cache = LogCache()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
private static var cache = LogCache()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var cache = LogCache()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: warning: static property 'logsHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var logsHandler: ((String) -> Void)?
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: convert 'logsHandler' to a 'let' constant to make 'Sendable' shared state immutable
private static var logsHandler: ((String) -> Void)?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: add '@MainActor' to make static property 'logsHandler' part of global actor 'MainActor'
private static var logsHandler: ((String) -> Void)?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var logsHandler: ((String) -> Void)?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: warning: static property '_numberConversionStrategy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: convert '_numberConversionStrategy' to a 'let' constant to make 'Sendable' shared state immutable
private static var _numberConversionStrategy = NumberConversionStrategy.strict
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: add '@MainActor' to make static property '_numberConversionStrategy' part of global actor 'MainActor'
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
nonisolated(unsafe)
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftDriverJobDiscovery normal armv7k Emitting module for SmartCodable (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriver\ Compilation\ Requirements SmartCodable normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SmartCodable' from project 'SmartCodable')
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 SmartCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.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-watchos6.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 -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SmartCodableMacros\#SmartCodableMacros -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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable-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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable_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/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling DataTransformer.swift, DateTransformer.swift, Transformer.swift, URLTransformer.swift, SmartCodableMacros.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftEmitModule normal arm64 Emitting\ module\ for\ SmartCodable (in target 'SmartCodable' from project 'SmartCodable')
EmitSwiftModule normal arm64 (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: warning: let '_iso8601Formatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: add '@MainActor' to make let '_iso8601Formatter' part of global actor 'MainActor'
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: warning: static property 'parsingMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: convert 'parsingMark' to a 'let' constant to make 'Sendable' shared state immutable
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: add '@MainActor' to make static property 'parsingMark' part of global actor 'MainActor'
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: warning: static property 'logContextHeader' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: convert 'logContextHeader' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: add '@MainActor' to make static property 'logContextHeader' part of global actor 'MainActor'
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: warning: static property 'logContextFooter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: convert 'logContextFooter' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: add '@MainActor' to make static property 'logContextFooter' part of global actor 'MainActor'
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: warning: static property '_mode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _mode = Level.none
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: convert '_mode' to a 'let' constant to make 'Sendable' shared state immutable
private static var _mode = Level.none
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: add '@MainActor' to make static property '_mode' part of global actor 'MainActor'
private static var _mode = Level.none
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _mode = Level.none
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var cache = LogCache()
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
private static var cache = LogCache()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
private static var cache = LogCache()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var cache = LogCache()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: warning: static property 'logsHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var logsHandler: ((String) -> Void)?
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: convert 'logsHandler' to a 'let' constant to make 'Sendable' shared state immutable
private static var logsHandler: ((String) -> Void)?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: add '@MainActor' to make static property 'logsHandler' part of global actor 'MainActor'
private static var logsHandler: ((String) -> Void)?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var logsHandler: ((String) -> Void)?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: warning: static property '_numberConversionStrategy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: convert '_numberConversionStrategy' to a 'let' constant to make 'Sendable' shared state immutable
private static var _numberConversionStrategy = NumberConversionStrategy.strict
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: add '@MainActor' to make static property '_numberConversionStrategy' part of global actor 'MainActor'
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
nonisolated(unsafe)
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.swiftmodule (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal armv7k Compiling LogContainer.swift, LogItem.swift, SafeDictionary.swift, SmartSentinel.swift, SmartCodable.swift (in target 'SmartCodable' from project 'SmartCodable')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.swiftdoc (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.abi.json (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/armv7k-apple-watchos.abi.json
SwiftCompile normal arm64_32 Compiling\ JSONSingleValueEncodingContainer.swift,\ JSONUnkeyedEncodingContainer.swift,\ EncodingCache.swift,\ JSONEncoderImpl.swift,\ _SpecialTreatmentEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONSingleValueEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONUnkeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/EncodingCache.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/JSONEncoderImpl.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/_SpecialTreatmentEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONSingleValueEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONUnkeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/EncodingCache.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/JSONEncoderImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/_SpecialTreatmentEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.swiftsourceinfo (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal armv7k Compiling SmartKeyDecodingStrategy.swift, Patcher+Provider.swift, Patcher+Transformer.swift, Patcher.swift, JSONKeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 Compiling\ LogContainer.swift,\ LogItem.swift,\ SafeDictionary.swift,\ SmartSentinel.swift,\ SmartCodable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartCodable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogItem.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SafeDictionary.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: warning: static property '_mode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _mode = Level.none
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: convert '_mode' to a 'let' constant to make 'Sendable' shared state immutable
private static var _mode = Level.none
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: add '@MainActor' to make static property '_mode' part of global actor 'MainActor'
private static var _mode = Level.none
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _mode = Level.none
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var cache = LogCache()
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
private static var cache = LogCache()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
private static var cache = LogCache()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var cache = LogCache()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: warning: static property 'logsHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var logsHandler: ((String) -> Void)?
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: convert 'logsHandler' to a 'let' constant to make 'Sendable' shared state immutable
private static var logsHandler: ((String) -> Void)?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: add '@MainActor' to make static property 'logsHandler' part of global actor 'MainActor'
private static var logsHandler: ((String) -> Void)?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var logsHandler: ((String) -> Void)?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:130:33: warning: sending 'message' risks causing data races; this is an error in the Swift 6 language mode
handler(message)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:130:33: note: task-isolated 'message' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
handler(message)
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:160:37: warning: sending 'message' risks causing data races; this is an error in the Swift 6 language mode
handler(message)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:160:37: note: task-isolated 'message' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
handler(message)
^~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartCodable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ JSONFuture.swift,\ SmartJSONEncoder.swift,\ SmartKeyEncodingStrategy.swift,\ JSONParser.swift,\ JSONValue+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/JSONFuture.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartJSONEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartKeyEncodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/JSONFuture.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartJSONEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartKeyEncodingStrategy.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONParser.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling SmartDecodable.swift, SmartEncodable.swift, SmartUpdater.swift, SmartCoding.swift, SmartCaseDefaultable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 Compiling\ LogContainer.swift,\ LogItem.swift,\ SafeDictionary.swift,\ SmartSentinel.swift,\ SmartCodable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogItem.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartCodable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogItem.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SafeDictionary.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: warning: static property '_mode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _mode = Level.none
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: convert '_mode' to a 'let' constant to make 'Sendable' shared state immutable
private static var _mode = Level.none
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: add '@MainActor' to make static property '_mode' part of global actor 'MainActor'
private static var _mode = Level.none
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:44:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _mode = Level.none
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var cache = LogCache()
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
private static var cache = LogCache()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
private static var cache = LogCache()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:46:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var cache = LogCache()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: warning: static property 'logsHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var logsHandler: ((String) -> Void)?
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: convert 'logsHandler' to a 'let' constant to make 'Sendable' shared state immutable
private static var logsHandler: ((String) -> Void)?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: add '@MainActor' to make static property 'logsHandler' part of global actor 'MainActor'
private static var logsHandler: ((String) -> Void)?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:49:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var logsHandler: ((String) -> Void)?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:130:33: warning: sending 'message' risks causing data races; this is an error in the Swift 6 language mode
handler(message)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:130:33: note: task-isolated 'message' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
handler(message)
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:160:37: warning: sending 'message' risks causing data races; this is an error in the Swift 6 language mode
handler(message)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/SmartSentinel.swift:160:37: note: task-isolated 'message' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
handler(message)
^~~~~~~
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartCodable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling JSONFuture.swift, SmartJSONEncoder.swift, SmartKeyEncodingStrategy.swift, JSONParser.swift, JSONValue+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 Compiling\ JSONSingleValueEncodingContainer.swift,\ JSONUnkeyedEncodingContainer.swift,\ EncodingCache.swift,\ JSONEncoderImpl.swift,\ _SpecialTreatmentEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONSingleValueEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONUnkeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/EncodingCache.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/JSONEncoderImpl.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/_SpecialTreatmentEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONSingleValueEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONUnkeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/EncodingCache.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/JSONEncoderImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Impl/_SpecialTreatmentEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SmartDecodable.swift,\ SmartEncodable.swift,\ SmartUpdater.swift,\ SmartCoding.swift,\ SmartCaseDefaultable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartDecodable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartUpdater.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartType/SmartCaseDefaultable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartDecodable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartEncodable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartUpdater.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: warning: static property '_numberConversionStrategy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: convert '_numberConversionStrategy' to a 'let' constant to make 'Sendable' shared state immutable
private static var _numberConversionStrategy = NumberConversionStrategy.strict
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: add '@MainActor' to make static property '_numberConversionStrategy' part of global actor 'MainActor'
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartType/SmartCaseDefaultable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling JSONValue.swift, IgnoredKey.swift, PropertyWrapperProtocol.swift, SmartAny.swift, SmartAnyImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal armv7k Compiling JSONSingleValueEncodingContainer.swift, JSONUnkeyedEncodingContainer.swift, EncodingCache.swift, JSONEncoderImpl.swift, _SpecialTreatmentEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 Compiling\ Cachable.swift,\ DecodingCache.swift,\ DecodingError+Extension.swift,\ JSONDecoderImpl+KeyedContainer.swift,\ JSONDecoderImpl+SingleValueContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Cache/Cachable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingCache.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingError+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+KeyedContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+SingleValueContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Cache/Cachable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingCache.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingError+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+KeyedContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+SingleValueContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling JSONDecoderImpl+UnkeyedContainer.swift, JSONDecoderImpl+Unwrap.swift, JSONDecoderImpl.swift, KeysMapper.swift, SmartJSONDecoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 Compiling\ DataTransformer.swift,\ DateTransformer.swift,\ Transformer.swift,\ URLTransformer.swift,\ SmartCodableMacros.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DataTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DateTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/Transformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/URLTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/MacroSupport/SmartCodableMacros.swift (in target 'SmartCodable' from project 'SmartCodable')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DataTransformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DateTransformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/Transformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/URLTransformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/MacroSupport/SmartCodableMacros.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling SmartDate.swift, SmartFlat.swift, SmartHexColor.swift, SmartPublished.swift, LogCache.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 Compiling\ SmartDate.swift,\ SmartFlat.swift,\ SmartHexColor.swift,\ SmartPublished.swift,\ LogCache.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartDate.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartFlat.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartHexColor.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartPublished.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogCache.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartDate.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartFlat.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartHexColor.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartPublished.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogCache.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Emitting module for SmartCodable (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriver\ Compilation\ Requirements SmartCodable normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'SmartCodable' from project 'SmartCodable')
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 SmartCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.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-watchos6.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 -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SmartCodableMacros\#SmartCodableMacros -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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable-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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable_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/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for SmartCodable (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 Compiling\ JSONFuture.swift,\ SmartJSONEncoder.swift,\ SmartKeyEncodingStrategy.swift,\ JSONParser.swift,\ JSONValue+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/JSONFuture.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartJSONEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartKeyEncodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/JSONFuture.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartJSONEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/SmartKeyEncodingStrategy.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONParser.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriver\ Compilation\ Requirements SmartCodable normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SmartCodable' from project 'SmartCodable')
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 SmartCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.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-watchos6.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 -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SmartCodableMacros\#SmartCodableMacros -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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable-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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable_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/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling LogContainer.swift, LogItem.swift, SafeDictionary.swift, SmartSentinel.swift, SmartCodable.swift (in target 'SmartCodable' from project 'SmartCodable')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.swiftmodule (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64_32-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/SmartCodable-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable-Swift.h (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/SmartCodable-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.swiftdoc (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64_32-apple-watchos.swiftdoc
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONSingleValueEncodingContainer.swift, JSONUnkeyedEncodingContainer.swift, EncodingCache.swift, JSONEncoderImpl.swift, _SpecialTreatmentEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.abi.json (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.swiftmodule (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.swiftdoc (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.abi.json (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.swiftsourceinfo (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.swiftsourceinfo (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ JSONDecoderImpl+UnkeyedContainer.swift,\ JSONDecoderImpl+Unwrap.swift,\ JSONDecoderImpl.swift,\ KeysMapper.swift,\ SmartJSONDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+UnkeyedContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/KeysMapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+UnkeyedContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: warning: let '_iso8601Formatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: add '@MainActor' to make let '_iso8601Formatter' part of global actor 'MainActor'
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/KeysMapper.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: warning: static property 'parsingMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: convert 'parsingMark' to a 'let' constant to make 'Sendable' shared state immutable
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: add '@MainActor' to make static property 'parsingMark' part of global actor 'MainActor'
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: warning: static property 'logContextHeader' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: convert 'logContextHeader' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: add '@MainActor' to make static property 'logContextHeader' part of global actor 'MainActor'
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: warning: static property 'logContextFooter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: convert 'logContextFooter' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: add '@MainActor' to make static property 'logContextFooter' part of global actor 'MainActor'
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ SmartKeyDecodingStrategy.swift,\ Patcher+Provider.swift,\ Patcher+Transformer.swift,\ Patcher.swift,\ JSONKeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartKeyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Provider.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Transformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONKeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartKeyDecodingStrategy.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Provider.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Transformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONKeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ SmartDate.swift,\ SmartFlat.swift,\ SmartHexColor.swift,\ SmartPublished.swift,\ LogCache.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartDate.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartFlat.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartHexColor.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartPublished.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogCache.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartDate.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartFlat.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartHexColor.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartPublished.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Sentinel/LogCache.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling SmartKeyDecodingStrategy.swift, Patcher+Provider.swift, Patcher+Transformer.swift, Patcher.swift, JSONKeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 Compiling\ SmartDecodable.swift,\ SmartEncodable.swift,\ SmartUpdater.swift,\ SmartCoding.swift,\ SmartCaseDefaultable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartDecodable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartUpdater.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartType/SmartCaseDefaultable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartDecodable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartEncodable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCodable/SmartUpdater.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: warning: static property '_numberConversionStrategy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: convert '_numberConversionStrategy' to a 'let' constant to make 'Sendable' shared state immutable
private static var _numberConversionStrategy = NumberConversionStrategy.strict
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: add '@MainActor' to make static property '_numberConversionStrategy' part of global actor 'MainActor'
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartCoding/SmartCoding.swift:28:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _numberConversionStrategy = NumberConversionStrategy.strict
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/SmartType/SmartCaseDefaultable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONFuture.swift, SmartJSONEncoder.swift, SmartKeyEncodingStrategy.swift, JSONParser.swift, JSONValue+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 Compiling\ DataTransformer.swift,\ DateTransformer.swift,\ Transformer.swift,\ URLTransformer.swift,\ SmartCodableMacros.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DataTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DateTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/Transformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/URLTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/MacroSupport/SmartCodableMacros.swift (in target 'SmartCodable' from project 'SmartCodable')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DataTransformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/DateTransformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/Transformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Transformer/URLTransformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/MacroSupport/SmartCodableMacros.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONDecoderImpl+UnkeyedContainer.swift, JSONDecoderImpl+Unwrap.swift, JSONDecoderImpl.swift, KeysMapper.swift, SmartJSONDecoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 Compiling\ JSONValue.swift,\ IgnoredKey.swift,\ PropertyWrapperProtocol.swift,\ SmartAny.swift,\ SmartAnyImpl.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/IgnoredKey.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/PropertyWrapperProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAny.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAnyImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/IgnoredKey.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/PropertyWrapperProtocol.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAny.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAnyImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling DataTransformer.swift, DateTransformer.swift, Transformer.swift, URLTransformer.swift, SmartCodableMacros.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 Compiling\ SmartKeyDecodingStrategy.swift,\ Patcher+Provider.swift,\ Patcher+Transformer.swift,\ Patcher.swift,\ JSONKeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartKeyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Provider.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Transformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONKeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartKeyDecodingStrategy.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Provider.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher+Transformer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Patcher/Patcher.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONEncoder/Container/JSONKeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling LogContainer.swift, LogItem.swift, SafeDictionary.swift, SmartSentinel.swift, SmartCodable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 Compiling\ Cachable.swift,\ DecodingCache.swift,\ DecodingError+Extension.swift,\ JSONDecoderImpl+KeyedContainer.swift,\ JSONDecoderImpl+SingleValueContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Cache/Cachable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingCache.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingError+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+KeyedContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+SingleValueContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Cache/Cachable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingCache.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingError+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+KeyedContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+SingleValueContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ JSONDecoderImpl+UnkeyedContainer.swift,\ JSONDecoderImpl+Unwrap.swift,\ JSONDecoderImpl.swift,\ KeysMapper.swift,\ SmartJSONDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+UnkeyedContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/KeysMapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+UnkeyedContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: warning: let '_iso8601Formatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: add '@MainActor' to make let '_iso8601Formatter' part of global actor 'MainActor'
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift:361:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal let _iso8601Formatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/KeysMapper.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: warning: static property 'parsingMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: convert 'parsingMark' to a 'let' constant to make 'Sendable' shared state immutable
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: add '@MainActor' to make static property 'parsingMark' part of global actor 'MainActor'
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:76:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parsingMark = CodingUserInfoKey.init(rawValue: "Stamrt.parsingMark")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: warning: static property 'logContextHeader' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: convert 'logContextHeader' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: add '@MainActor' to make static property 'logContextHeader' part of global actor 'MainActor'
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:78:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextHeader = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.header")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: warning: static property 'logContextFooter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: convert 'logContextFooter' to a 'let' constant to make 'Sendable' shared state immutable
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: add '@MainActor' to make static property 'logContextFooter' part of global actor 'MainActor'
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/SmartJSONDecoder.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logContextFooter = CodingUserInfoKey.init(rawValue: "Stamrt.logContext.footer")
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling SmartDecodable.swift, SmartEncodable.swift, SmartUpdater.swift, SmartCoding.swift, SmartCaseDefaultable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 Compiling\ JSONValue.swift,\ IgnoredKey.swift,\ PropertyWrapperProtocol.swift,\ SmartAny.swift,\ SmartAnyImpl.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/IgnoredKey.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/PropertyWrapperProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAny.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAnyImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONValue/JSONValue.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/IgnoredKey.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/PropertyWrapperProtocol.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAny.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/PropertyWrapper/SmartAny/SmartAnyImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Cachable.swift, DecodingCache.swift, DecodingError+Extension.swift, JSONDecoderImpl+KeyedContainer.swift, JSONDecoderImpl+SingleValueContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal arm64 Compiling JSONSingleValueEncodingContainer.swift, JSONUnkeyedEncodingContainer.swift, EncodingCache.swift, JSONEncoderImpl.swift, _SpecialTreatmentEncoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k Compiling\ Cachable.swift,\ DecodingCache.swift,\ DecodingError+Extension.swift,\ JSONDecoderImpl+KeyedContainer.swift,\ JSONDecoderImpl+SingleValueContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Cache/Cachable.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingCache.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingError+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+KeyedContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+SingleValueContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/Cache/Cachable.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingCache.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/DecodingError+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+KeyedContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SmartCodable/Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+SingleValueContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling JSONFuture.swift, SmartJSONEncoder.swift, SmartKeyEncodingStrategy.swift, JSONParser.swift, JSONValue+Extension.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal arm64_32 Compiling DataTransformer.swift, DateTransformer.swift, Transformer.swift, URLTransformer.swift, SmartCodableMacros.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal arm64_32 Compiling SmartDecodable.swift, SmartEncodable.swift, SmartUpdater.swift, SmartCoding.swift, SmartCaseDefaultable.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal arm64 Compiling SmartKeyDecodingStrategy.swift, Patcher+Provider.swift, Patcher+Transformer.swift, Patcher.swift, JSONKeyedEncodingContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal arm64_32 Compiling Cachable.swift, DecodingCache.swift, DecodingError+Extension.swift, JSONDecoderImpl+KeyedContainer.swift, JSONDecoderImpl+SingleValueContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal armv7k Compiling Cachable.swift, DecodingCache.swift, DecodingError+Extension.swift, JSONDecoderImpl+KeyedContainer.swift, JSONDecoderImpl+SingleValueContainer.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriver\ Compilation SmartCodable normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SmartCodable' from project 'SmartCodable')
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 SmartCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.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-watchos6.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 -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SmartCodableMacros\#SmartCodableMacros -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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable-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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable_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/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable-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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/Binary/SmartCodable.o normal armv7k (in target 'SmartCodable' from project 'SmartCodable')
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-watchos6.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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable_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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/Binary/SmartCodable.o
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONValue.swift, IgnoredKey.swift, PropertyWrapperProtocol.swift, SmartAny.swift, SmartAnyImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal arm64 Compiling JSONValue.swift, IgnoredKey.swift, PropertyWrapperProtocol.swift, SmartAny.swift, SmartAnyImpl.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal arm64 Compiling JSONDecoderImpl+UnkeyedContainer.swift, JSONDecoderImpl+Unwrap.swift, JSONDecoderImpl.swift, KeysMapper.swift, SmartJSONDecoder.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriverJobDiscovery normal arm64 Compiling SmartDate.swift, SmartFlat.swift, SmartHexColor.swift, SmartPublished.swift, LogCache.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriver\ Compilation SmartCodable normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SmartCodable' from project 'SmartCodable')
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 SmartCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.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-watchos6.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 -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SmartCodableMacros\#SmartCodableMacros -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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable-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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable_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/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable-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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/Binary/SmartCodable.o normal arm64 (in target 'SmartCodable' from project 'SmartCodable')
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-watchos6.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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable_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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/Binary/SmartCodable.o
SwiftDriverJobDiscovery normal arm64_32 Compiling SmartDate.swift, SmartFlat.swift, SmartHexColor.swift, SmartPublished.swift, LogCache.swift (in target 'SmartCodable' from project 'SmartCodable')
SwiftDriver\ Compilation SmartCodable normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'SmartCodable' from project 'SmartCodable')
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 SmartCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.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-watchos6.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 -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SmartCodableMacros\#SmartCodableMacros -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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable-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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable_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/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable-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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/Binary/SmartCodable.o normal arm64_32 (in target 'SmartCodable' from project 'SmartCodable')
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-watchos6.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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable_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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/Binary/SmartCodable.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.o normal arm64\ armv7k\ arm64_32 (in target 'SmartCodable' from project 'SmartCodable')
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/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/Binary/SmartCodable.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/Binary/SmartCodable.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/Binary/SmartCodable.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.o
ExtractAppIntentsMetadata (in target 'SmartCodable' from project 'SmartCodable')
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 SmartCodable --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 6.0 --bundle-identifier spi-builder-workspace.SmartCodable --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.appintents --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/SmartCodable.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/SmartCodable.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64/SmartCodable.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/armv7k/SmartCodable.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SmartCodable.build/Debug-watchos/SmartCodable.build/Objects-normal/arm64_32/SmartCodable.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-04 09:59:32.200 appintentsmetadataprocessor[1153:6756] Starting appintentsmetadataprocessor export
2025-06-04 09:59:32.244 appintentsmetadataprocessor[1153:6756] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.o (in target 'SmartCodable' from project 'SmartCodable')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SmartCodable.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "509.0.0",
"upper_bound" : "601.0.0-prerelease"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-syntax"
}
],
"manifest_display_name" : "SmartCodable",
"name" : "SmartCodable",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "SmartCodable",
"targets" : [
"SmartCodable"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SmartCodableMacros",
"targets" : [
"SmartCodableMacros"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "SmartCodableTests",
"module_type" : "SwiftTarget",
"name" : "SmartCodableTests",
"path" : "Tests",
"product_dependencies" : [
"SwiftSyntaxMacrosTestSupport"
],
"sources" : [
"Example.swift"
],
"target_dependencies" : [
"SmartCodable"
],
"type" : "test"
},
{
"c99name" : "SmartCodableMacros",
"module_type" : "SwiftTarget",
"name" : "SmartCodableMacros",
"path" : "Sources/SmartCodableMacros",
"product_dependencies" : [
"SwiftSyntax",
"SwiftSyntaxMacros",
"SwiftOperators",
"SwiftParser",
"SwiftParserDiagnostics",
"SwiftCompilerPlugin"
],
"product_memberships" : [
"SmartCodable",
"SmartCodableMacros"
],
"sources" : [
"MacroError.swift",
"ModelMemberPropertyContainer.swift",
"PatternBindingSyntax+Extension.swift",
"Plugin.swift",
"SmartSubclassMacro.swift"
],
"type" : "macro"
},
{
"c99name" : "SmartCodable",
"module_type" : "SwiftTarget",
"name" : "SmartCodable",
"path" : "Sources/SmartCodable",
"product_memberships" : [
"SmartCodable"
],
"sources" : [
"Core/Cache/Cachable.swift",
"Core/JSONDecoder/Decoder/DecodingCache.swift",
"Core/JSONDecoder/Decoder/DecodingError+Extension.swift",
"Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+KeyedContainer.swift",
"Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+SingleValueContainer.swift",
"Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+UnkeyedContainer.swift",
"Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl+Unwrap.swift",
"Core/JSONDecoder/Decoder/Impl/JSONDecoderImpl.swift",
"Core/JSONDecoder/Decoder/KeysMapper.swift",
"Core/JSONDecoder/Decoder/SmartJSONDecoder.swift",
"Core/JSONDecoder/Decoder/SmartKeyDecodingStrategy.swift",
"Core/JSONDecoder/Patcher/Patcher+Provider.swift",
"Core/JSONDecoder/Patcher/Patcher+Transformer.swift",
"Core/JSONDecoder/Patcher/Patcher.swift",
"Core/JSONEncoder/Container/JSONKeyedEncodingContainer.swift",
"Core/JSONEncoder/Container/JSONSingleValueEncodingContainer.swift",
"Core/JSONEncoder/Container/JSONUnkeyedEncodingContainer.swift",
"Core/JSONEncoder/EncodingCache.swift",
"Core/JSONEncoder/Impl/JSONEncoderImpl.swift",
"Core/JSONEncoder/Impl/_SpecialTreatmentEncoder.swift",
"Core/JSONEncoder/JSONFuture.swift",
"Core/JSONEncoder/SmartJSONEncoder.swift",
"Core/JSONEncoder/SmartKeyEncodingStrategy.swift",
"Core/JSONValue/JSONParser.swift",
"Core/JSONValue/JSONValue+Extension.swift",
"Core/JSONValue/JSONValue.swift",
"Core/PropertyWrapper/IgnoredKey.swift",
"Core/PropertyWrapper/PropertyWrapperProtocol.swift",
"Core/PropertyWrapper/SmartAny/SmartAny.swift",
"Core/PropertyWrapper/SmartAny/SmartAnyImpl.swift",
"Core/PropertyWrapper/SmartDate.swift",
"Core/PropertyWrapper/SmartFlat.swift",
"Core/PropertyWrapper/SmartHexColor.swift",
"Core/PropertyWrapper/SmartPublished.swift",
"Core/Sentinel/LogCache.swift",
"Core/Sentinel/LogContainer.swift",
"Core/Sentinel/LogItem.swift",
"Core/Sentinel/SafeDictionary.swift",
"Core/Sentinel/SmartSentinel.swift",
"Core/SmartCodable/SmartCodable.swift",
"Core/SmartCodable/SmartDecodable.swift",
"Core/SmartCodable/SmartEncodable.swift",
"Core/SmartCodable/SmartUpdater.swift",
"Core/SmartCoding/SmartCoding.swift",
"Core/SmartType/SmartCaseDefaultable.swift",
"Core/Transformer/DataTransformer.swift",
"Core/Transformer/DateTransformer.swift",
"Core/Transformer/Transformer.swift",
"Core/Transformer/URLTransformer.swift",
"MacroSupport/SmartCodableMacros.swift"
],
"target_dependencies" : [
"SmartCodableMacros"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.