The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Kebab, reference 1.1.0 (abfb07), with Swift 6.0 for tvOS using Xcode 16.2 on 27 Nov 2024 22:23:43 UTC.

Swift 6 data race errors: 15

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Kebab-Package -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:57:23: warning: static property 'lowerCamelCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lowerCamelCase = Self.camelCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:57:23: note: annotate 'lowerCamelCase' with '@MainActor' if property should only be accessed from the main actor
    public static let lowerCamelCase = Self.camelCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lowerCamelCase = Self.camelCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:60:23: warning: static property 'dromedaryCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dromedaryCase = Self.camelCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:60:23: note: annotate 'dromedaryCase' with '@MainActor' if property should only be accessed from the main actor
    public static let dromedaryCase = Self.camelCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dromedaryCase = Self.camelCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:63:23: warning: static property 'UpperCamelCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let UpperCamelCase = Self.PascalCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:63:23: note: annotate 'UpperCamelCase' with '@MainActor' if property should only be accessed from the main actor
    public static let UpperCamelCase = Self.PascalCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let UpperCamelCase = Self.PascalCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:66:23: warning: static property 'StudlyCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let StudlyCase = Self.PascalCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:66:23: note: annotate 'StudlyCase' with '@MainActor' if property should only be accessed from the main actor
    public static let StudlyCase = Self.PascalCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let StudlyCase = Self.PascalCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:69:23: warning: static property 'pothole_case' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pothole_case = Self.snake_case
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:69:23: note: annotate 'pothole_case' with '@MainActor' if property should only be accessed from the main actor
    public static let pothole_case = Self.snake_case
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pothole_case = Self.snake_case
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:72:23: warning: static property 'SCREAMING_SNAKE_CASE' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let SCREAMING_SNAKE_CASE = Self.MACRO_CASE
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:72:23: note: annotate 'SCREAMING_SNAKE_CASE' with '@MainActor' if property should only be accessed from the main actor
    public static let SCREAMING_SNAKE_CASE = Self.MACRO_CASE
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let SCREAMING_SNAKE_CASE = Self.MACRO_CASE
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:75:23: warning: static property 'CONSTANT_CASE' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let CONSTANT_CASE = Self.MACRO_CASE
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:75:23: note: annotate 'CONSTANT_CASE' with '@MainActor' if property should only be accessed from the main actor
    public static let CONSTANT_CASE = Self.MACRO_CASE
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let CONSTANT_CASE = Self.MACRO_CASE
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:78:23: warning: static property 'spineCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let spineCase = Self.kebabCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:78:23: note: annotate 'spineCase' with '@MainActor' if property should only be accessed from the main actor
    public static let spineCase = Self.kebabCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let spineCase = Self.kebabCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:81:23: warning: static property 'dashCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dashCase = Self.kebabCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:81:23: note: annotate 'dashCase' with '@MainActor' if property should only be accessed from the main actor
    public static let dashCase = Self.kebabCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dashCase = Self.kebabCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:84:23: warning: static property 'lispCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lispCase = Self.kebabCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:84:23: note: annotate 'lispCase' with '@MainActor' if property should only be accessed from the main actor
    public static let lispCase = Self.kebabCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lispCase = Self.kebabCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:87:23: warning: static property 'httpHeaderCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let httpHeaderCase = Self.trainCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:87:23: note: annotate 'httpHeaderCase' with '@MainActor' if property should only be accessed from the main actor
    public static let httpHeaderCase = Self.trainCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:87:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let httpHeaderCase = Self.trainCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:90:23: warning: static property 'screamingKebabCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let screamingKebabCase = Self.cobolCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:90:23: note: annotate 'screamingKebabCase' with '@MainActor' if property should only be accessed from the main actor
    public static let screamingKebabCase = Self.cobolCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let screamingKebabCase = Self.cobolCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:93:23: warning: static property 'screamingTrainCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let screamingTrainCase = Self.cobolCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:93:23: note: annotate 'screamingTrainCase' with '@MainActor' if property should only be accessed from the main actor
    public static let screamingTrainCase = Self.cobolCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:93:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let screamingTrainCase = Self.cobolCase
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ MultiWordIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Kebab -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.o -index-unit-output-path /Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Kebab -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.o -index-unit-output-path /Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/MultiWordIdentifier.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:57:23: warning: static property 'lowerCamelCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lowerCamelCase = Self.camelCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:57:23: note: annotate 'lowerCamelCase' with '@MainActor' if property should only be accessed from the main actor
    public static let lowerCamelCase = Self.camelCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lowerCamelCase = Self.camelCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:60:23: warning: static property 'dromedaryCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dromedaryCase = Self.camelCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:60:23: note: annotate 'dromedaryCase' with '@MainActor' if property should only be accessed from the main actor
    public static let dromedaryCase = Self.camelCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dromedaryCase = Self.camelCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:63:23: warning: static property 'UpperCamelCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let UpperCamelCase = Self.PascalCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:63:23: note: annotate 'UpperCamelCase' with '@MainActor' if property should only be accessed from the main actor
    public static let UpperCamelCase = Self.PascalCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let UpperCamelCase = Self.PascalCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:66:23: warning: static property 'StudlyCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let StudlyCase = Self.PascalCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:66:23: note: annotate 'StudlyCase' with '@MainActor' if property should only be accessed from the main actor
    public static let StudlyCase = Self.PascalCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let StudlyCase = Self.PascalCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:69:23: warning: static property 'pothole_case' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pothole_case = Self.snake_case
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:69:23: note: annotate 'pothole_case' with '@MainActor' if property should only be accessed from the main actor
    public static let pothole_case = Self.snake_case
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pothole_case = Self.snake_case
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:72:23: warning: static property 'SCREAMING_SNAKE_CASE' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let SCREAMING_SNAKE_CASE = Self.MACRO_CASE
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:72:23: note: annotate 'SCREAMING_SNAKE_CASE' with '@MainActor' if property should only be accessed from the main actor
    public static let SCREAMING_SNAKE_CASE = Self.MACRO_CASE
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let SCREAMING_SNAKE_CASE = Self.MACRO_CASE
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:75:23: warning: static property 'CONSTANT_CASE' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let CONSTANT_CASE = Self.MACRO_CASE
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:75:23: note: annotate 'CONSTANT_CASE' with '@MainActor' if property should only be accessed from the main actor
    public static let CONSTANT_CASE = Self.MACRO_CASE
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let CONSTANT_CASE = Self.MACRO_CASE
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:78:23: warning: static property 'spineCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let spineCase = Self.kebabCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:78:23: note: annotate 'spineCase' with '@MainActor' if property should only be accessed from the main actor
    public static let spineCase = Self.kebabCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let spineCase = Self.kebabCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:81:23: warning: static property 'dashCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dashCase = Self.kebabCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:81:23: note: annotate 'dashCase' with '@MainActor' if property should only be accessed from the main actor
    public static let dashCase = Self.kebabCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dashCase = Self.kebabCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:84:23: warning: static property 'lispCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lispCase = Self.kebabCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:84:23: note: annotate 'lispCase' with '@MainActor' if property should only be accessed from the main actor
    public static let lispCase = Self.kebabCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lispCase = Self.kebabCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:87:23: warning: static property 'httpHeaderCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let httpHeaderCase = Self.trainCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:87:23: note: annotate 'httpHeaderCase' with '@MainActor' if property should only be accessed from the main actor
    public static let httpHeaderCase = Self.trainCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:87:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let httpHeaderCase = Self.trainCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:90:23: warning: static property 'screamingKebabCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let screamingKebabCase = Self.cobolCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:90:23: note: annotate 'screamingKebabCase' with '@MainActor' if property should only be accessed from the main actor
    public static let screamingKebabCase = Self.cobolCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let screamingKebabCase = Self.cobolCase
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:93:23: warning: static property 'screamingTrainCase' is not concurrency-safe because non-'Sendable' type 'MultiWordIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let screamingTrainCase = Self.cobolCase
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:11:13: note: consider making enum 'MultiWordIdentifier' conform to the 'Sendable' protocol
public enum MultiWordIdentifier: CaseIterable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:93:23: note: annotate 'screamingTrainCase' with '@MainActor' if property should only be accessed from the main actor
    public static let screamingTrainCase = Self.cobolCase
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift:93:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let screamingTrainCase = Self.cobolCase
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ CaseConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Kebab -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.o -index-unit-output-path /Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Kebab -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.o -index-unit-output-path /Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseConverter.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ StringExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Kebab -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.o -index-unit-output-path /Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Kebab -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.o -index-unit-output-path /Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/StringExtensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CaseDetector.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Kebab -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.o -index-unit-output-path /Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseDetector.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/MultiWordIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/Kebab/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Kebab -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.o -index-unit-output-path /Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/CaseDetector.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for Kebab (in target 'Kebab' from project 'Kebab')
SwiftDriver\ Compilation\ Requirements Kebab normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Kebab -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab-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/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.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/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Kebab-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab-Swift.h (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Kebab-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.swiftmodule (in target 'Kebab' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.swiftdoc (in target 'Kebab' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.abi.json (in target 'Kebab' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.swiftsourceinfo (in target 'Kebab' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/KebabJSON.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/KebabJSON.modulemap (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/KebabJSON.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/KebabExtensions.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/KebabExtensions.modulemap (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/KebabExtensions.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos
SwiftDriver KebabJSON normal arm64 com.apple.xcode.tools.swift.compiler (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name KebabJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver KebabExtensions normal arm64 com.apple.xcode.tools.swift.compiler (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name KebabExtensions -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ KebabExtensions (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/KebabExtensions/StringExtensions.swift -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name KebabExtensions -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-master-emit-module.d -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.abi.json
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KebabExtensions/StringExtensions.swift (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/KebabExtensions/StringExtensions.swift -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name KebabExtensions -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-master-emit-module.d -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.abi.json
SwiftEmitModule normal arm64 Emitting\ module\ for\ KebabJSON (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name KebabJSON -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-master-emit-module.d -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.abi.json
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name KebabJSON -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-master-emit-module.d -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:14:16: warning: static property 'converter' is not concurrency-safe because non-'Sendable' type 'CaseConverter' may have shared mutable state; this is an error in the Swift 6 language mode
    static let converter = CaseConverter()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift:11:15: note: struct 'CaseConverter' does not conform to the 'Sendable' protocol
public struct CaseConverter {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Kebab'
import Kebab
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:14:16: note: annotate 'converter' with '@MainActor' if property should only be accessed from the main actor
    static let converter = CaseConverter()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let converter = CaseConverter()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:40:16: warning: static property 'converter' is not concurrency-safe because non-'Sendable' type 'CaseConverter' may have shared mutable state; this is an error in the Swift 6 language mode
    static let converter = CaseConverter()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift:11:15: note: struct 'CaseConverter' does not conform to the 'Sendable' protocol
public struct CaseConverter {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:40:16: note: annotate 'converter' with '@MainActor' if property should only be accessed from the main actor
    static let converter = CaseConverter()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:40:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let converter = CaseConverter()
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ JSONStrategies.swift /Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name KebabJSON -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.o -index-unit-output-path /Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name KebabJSON -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.o -index-unit-output-path /Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/JSONStrategies.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:14:16: warning: static property 'converter' is not concurrency-safe because non-'Sendable' type 'CaseConverter' may have shared mutable state; this is an error in the Swift 6 language mode
    static let converter = CaseConverter()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift:11:15: note: struct 'CaseConverter' does not conform to the 'Sendable' protocol
public struct CaseConverter {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Kebab'
import Kebab
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:14:16: note: annotate 'converter' with '@MainActor' if property should only be accessed from the main actor
    static let converter = CaseConverter()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let converter = CaseConverter()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:40:16: warning: static property 'converter' is not concurrency-safe because non-'Sendable' type 'CaseConverter' may have shared mutable state; this is an error in the Swift 6 language mode
    static let converter = CaseConverter()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Kebab/CaseConverter.swift:11:15: note: struct 'CaseConverter' does not conform to the 'Sendable' protocol
public struct CaseConverter {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:40:16: note: annotate 'converter' with '@MainActor' if property should only be accessed from the main actor
    static let converter = CaseConverter()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/KebabJSON/JSONStrategies.swift:40:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let converter = CaseConverter()
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ StringExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/KebabExtensions/StringExtensions.swift (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/KebabExtensions/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name KebabExtensions -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.o -index-unit-output-path /Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KebabExtensions/StringExtensions.swift (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/KebabExtensions/StringExtensions.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name KebabExtensions -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.o -index-unit-output-path /Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/StringExtensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for KebabExtensions (in target 'KebabExtensions' from project 'Kebab')
SwiftDriver\ Compilation\ Requirements KebabExtensions normal arm64 com.apple.xcode.tools.swift.compiler (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name KebabExtensions -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/KebabExtensions-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-Swift.h (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/KebabExtensions-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftmodule (in target 'KebabExtensions' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftdoc (in target 'KebabExtensions' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.abi.json (in target 'KebabExtensions' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftsourceinfo (in target 'KebabExtensions' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Emitting module for KebabJSON (in target 'KebabJSON' from project 'Kebab')
SwiftDriver\ Compilation\ Requirements KebabJSON normal arm64 com.apple.xcode.tools.swift.compiler (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name KebabJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/KebabJSON-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-Swift.h (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/KebabJSON-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftdoc (in target 'KebabJSON' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.abi.json (in target 'KebabJSON' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftmodule (in target 'KebabJSON' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftsourceinfo (in target 'KebabJSON' from project 'Kebab')
    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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling StringExtensions.swift (in target 'KebabExtensions' from project 'Kebab')
SwiftDriver\ Compilation KebabExtensions normal arm64 com.apple.xcode.tools.swift.compiler (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name KebabExtensions -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.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/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling StringExtensions.swift (in target 'Kebab' from project 'Kebab')
SwiftDriverJobDiscovery normal arm64 Compiling CaseDetector.swift (in target 'Kebab' from project 'Kebab')
SwiftDriverJobDiscovery normal arm64 Compiling JSONStrategies.swift (in target 'KebabJSON' from project 'Kebab')
SwiftDriver\ Compilation KebabJSON normal arm64 com.apple.xcode.tools.swift.compiler (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name KebabJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.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/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CaseConverter.swift (in target 'Kebab' from project 'Kebab')
SwiftDriverJobDiscovery normal arm64 Compiling MultiWordIdentifier.swift (in target 'Kebab' from project 'Kebab')
SwiftDriver\ Compilation Kebab normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Kebab -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab-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/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.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/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.o normal (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/Kebab.build/Objects-normal/arm64/Kebab_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.o (in target 'Kebab' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Kebab.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.o normal (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabJSON.build/Objects-normal/arm64/KebabJSON_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.o normal (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Kebab.build/Debug-appletvos/KebabExtensions.build/Objects-normal/arm64/KebabExtensions_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.o (in target 'KebabJSON' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabJSON.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.o (in target 'KebabExtensions' from project 'Kebab')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/KebabExtensions.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Kebab",
  "name" : "Kebab",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Kebab",
      "targets" : [
        "Kebab"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "KebabExtensions",
      "targets" : [
        "KebabExtensions"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "KebabJSON",
      "targets" : [
        "KebabJSON"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "KebabTests",
      "module_type" : "SwiftTarget",
      "name" : "KebabTests",
      "path" : "Tests/KebabTests",
      "sources" : [
        "CaseConverter/CamelCaseTests.swift",
        "CaseConverter/CamelSnakeCaseTests.swift",
        "CaseConverter/CobolCaseTests.swift",
        "CaseConverter/DonerCaseTests.swift",
        "CaseConverter/FlatCaseTests.swift",
        "CaseConverter/KebabCaseTests.swift",
        "CaseConverter/MacroCaseTests.swift",
        "CaseConverter/PascalCaseTests.swift",
        "CaseConverter/PascalSnakeCaseTests.swift",
        "CaseConverter/SnakeCaseTests.swift",
        "CaseConverter/TrainCaseTests.swift",
        "CaseConverter/UpperFlatCaseTests.swift",
        "CaseDetectorTests.swift",
        "ExampleTests.swift",
        "Strings.swift"
      ],
      "target_dependencies" : [
        "Kebab"
      ],
      "type" : "test"
    },
    {
      "c99name" : "KebabJSONTests",
      "module_type" : "SwiftTarget",
      "name" : "KebabJSONTests",
      "path" : "Tests/KebabJSONTests",
      "sources" : [
        "KebabJSONTests.swift"
      ],
      "target_dependencies" : [
        "KebabJSON"
      ],
      "type" : "test"
    },
    {
      "c99name" : "KebabJSON",
      "module_type" : "SwiftTarget",
      "name" : "KebabJSON",
      "path" : "Sources/KebabJSON",
      "product_memberships" : [
        "KebabJSON"
      ],
      "sources" : [
        "JSONStrategies.swift"
      ],
      "target_dependencies" : [
        "Kebab"
      ],
      "type" : "library"
    },
    {
      "c99name" : "KebabExtensionsTests",
      "module_type" : "SwiftTarget",
      "name" : "KebabExtensionsTests",
      "path" : "Tests/KebabExtensionsTests",
      "sources" : [
        "StringExtensionsTests.swift"
      ],
      "target_dependencies" : [
        "KebabExtensions"
      ],
      "type" : "test"
    },
    {
      "c99name" : "KebabExtensions",
      "module_type" : "SwiftTarget",
      "name" : "KebabExtensions",
      "path" : "Sources/KebabExtensions",
      "product_memberships" : [
        "KebabExtensions"
      ],
      "sources" : [
        "StringExtensions.swift"
      ],
      "target_dependencies" : [
        "Kebab"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Kebab",
      "module_type" : "SwiftTarget",
      "name" : "Kebab",
      "path" : "Sources/Kebab",
      "product_memberships" : [
        "Kebab",
        "KebabExtensions",
        "KebabJSON"
      ],
      "sources" : [
        "CaseConverter.swift",
        "CaseDetector.swift",
        "MultiWordIdentifier.swift",
        "StringExtensions.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.