The Swift Package Index logo.Swift Package Index

Build Information

Failed to build TransientLabel, reference 1.2.0 (3371d3), with Swift 6.0 for watchOS using Xcode 16.2 on 27 Oct 2025 15:10:21 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme TransientLabel -destination generic/platform=watchOS

Build Log

    public static let defaultBackground = TransientLabelBackground.solidColor(.systemBackground.withAlphaComponent(0.4))
                                                                              ~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:23:28: error: cannot find type 'UIView' in scope
    private let container: UIView
                           ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:24:24: error: cannot find type 'UILabel' in scope
    private let label: UILabel
                       ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:25:21: error: cannot find type 'UIView' in scope
    private let bg: UIView
                    ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:27:27: error: cannot find type 'UIViewPropertyAnimator' in scope
    private var animator: UIViewPropertyAnimator
                          ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:41:132: error: type 'UIColor' has no member 'label'
    public convenience init(delay: TimeInterval = 1, font: UIFont = .preferredFont(forTextStyle: .headline), textColor: UIColor = .label, backgroundColor: UIColor = .systemBackground.withAlphaComponent(0.4)) {
                                                                                                                                  ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:41:167: error: type 'UIColor' has no member 'systemBackground'
    public convenience init(delay: TimeInterval = 1, font: UIFont = .preferredFont(forTextStyle: .headline), textColor: UIColor = .label, backgroundColor: UIColor = .systemBackground.withAlphaComponent(0.4)) {
                                                                                                                                                                     ~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:53:120: error: type 'UIColor' has no member 'label'
    public init(delay: TimeInterval = 1, font: UIFont = .preferredFont(forTextStyle: .headline), textColor: UIColor = .label, background: TransientLabelBackground) {
                                                                                                                      ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:172:25: error: property does not override any property from its superclass
    public override var intrinsicContentSize: CGSize {
           ~~~~~~~~     ^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:177:37: error: cannot find type 'UIViewPropertyAnimator' in scope
    private func describe(animator: UIViewPropertyAnimator, label: String? = nil) {
                                    ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:5:36: error: cannot find type 'UIView' in scope
public final class TransientLabel: UIView {
                                   ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift:6:74: error: type 'UIColor' has no member 'systemBackground'
    public static let `default`: TransientLabelBackground = .solidColor(.systemBackground.withAlphaComponent(0.4))
                                                                        ~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift:15:15: error: cannot find type 'UIBlurEffect' in scope
    case blur(UIBlurEffect.Style)
              ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift:20:17: error: cannot find type 'UIView' in scope
    case custom(UIView)
                ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:92:17: error: cannot find type 'UIVisualEffect' in scope
    var effect: UIVisualEffect
                ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:93:67: error: cannot find type 'UIVisualEffectView' in scope
    func makeUIView(context: UIViewRepresentableContext<Self>) -> UIVisualEffectView { UIVisualEffectView(effect: effect) }
                                                                  ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:93:30: error: cannot find type 'UIViewRepresentableContext' in scope
    func makeUIView(context: UIViewRepresentableContext<Self>) -> UIVisualEffectView { UIVisualEffectView(effect: effect) }
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:94:33: error: cannot find type 'UIVisualEffectView' in scope
    func updateUIView(_ uiView: UIVisualEffectView, context: UIViewRepresentableContext<Self>) { uiView.effect = effect }
                                ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:94:62: error: cannot find type 'UIViewRepresentableContext' in scope
    func updateUIView(_ uiView: UIVisualEffectView, context: UIViewRepresentableContext<Self>) { uiView.effect = effect }
                                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:91:34: error: cannot find type 'UIViewRepresentable' in scope
private struct VisualEffectView: UIViewRepresentable {
                                 ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:99:17: error: cannot find type 'UIView' in scope
    var uiView: UIView
                ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:100:47: error: cannot find type 'UIView' in scope
    func makeUIView(context: Context) -> some UIView { uiView }
                                              ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:100:42: error: 'some' types are only permitted in properties, subscripts, and functions
    func makeUIView(context: Context) -> some UIView { uiView }
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:100:30: error: cannot find type 'Context' in scope
    func makeUIView(context: Context) -> some UIView { uiView }
                             ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:101:33: error: cannot find type 'UIViewType' in scope
    func updateUIView(_ uiView: UIViewType, context: Context) {}
                                ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:101:54: error: cannot find type 'Context' in scope
    func updateUIView(_ uiView: UIViewType, context: Context) {}
                                                     ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:98:31: error: cannot find type 'UIViewRepresentable' in scope
private struct UIViewWrapper: UIViewRepresentable {
                              ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:129:22: error: cannot find 'UIView' in scope
        let bgView = UIView(frame: .zero)
                     ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:136:5: error: cannot use explicit 'return' statement in the body of result builder 'ViewBuilder'
    return VStack {
    ^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:136:5: note: remove 'return' statements to apply the result builder
    return VStack {
    ^~~~~~~

SwiftCompile normal armv7k Compiling\ TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.dia -target armv7k-apple-watchos8.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.dia -target armv7k-apple-watchos8.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TransientLabel_TransientLabel.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel_TransientLabel.build/empty-TransientLabel_TransientLabel.plist (in target 'TransientLabel_TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel_TransientLabel.build/empty-TransientLabel_TransientLabel.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform watchos -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel_TransientLabel.build/assetcatalog_generated_info.plist -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TransientLabel_TransientLabel.bundle/Info.plist
** BUILD FAILED **
The following build commands failed:
	EmitSwiftModule normal arm64 (in target 'TransientLabel' from project 'TransientLabel')
	SwiftEmitModule normal arm64 Emitting\ module\ for\ TransientLabel (in target 'TransientLabel' from project 'TransientLabel')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ TransientLabel (in target 'TransientLabel' from project 'TransientLabel')
	EmitSwiftModule normal arm64_32 (in target 'TransientLabel' from project 'TransientLabel')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ TransientLabel (in target 'TransientLabel' from project 'TransientLabel')
	EmitSwiftModule normal armv7k (in target 'TransientLabel' from project 'TransientLabel')
	Building workspace spi-builder-workspace with scheme TransientLabel
(7 failures)
Command line invocation:
    /Applications/Xcode-16.2.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEPackageSupportUseBuiltinSCM = YES
Resolve Package Graph
Resolved source packages:
  TransientLabel: /Users/admin/builder/spi-builder-workspace
resolved source packages: TransientLabel
{
  "dependencies" : [
  ],
  "manifest_display_name" : "TransientLabel",
  "name" : "TransientLabel",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "TransientLabel",
      "targets" : [
        "TransientLabel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TransientLabelTests",
      "module_type" : "SwiftTarget",
      "name" : "TransientLabelTests",
      "path" : "Tests/TransientLabelTests",
      "sources" : [
        "TransientLabelBackgroundTests.swift",
        "TransientLabelTests.swift",
        "TransientLabelViewTests.swift"
      ],
      "target_dependencies" : [
        "TransientLabel"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TransientLabel",
      "module_type" : "SwiftTarget",
      "name" : "TransientLabel",
      "path" : "Sources/TransientLabel",
      "product_memberships" : [
        "TransientLabel"
      ],
      "sources" : [
        "TransientLabel.swift",
        "TransientLabelBackground.swift",
        "TransientLabelView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "TransientLabel"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme TransientLabel -destination generic/platform=watchOS
Command line invocation:
    /Applications/Xcode-16.2.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme TransientLabel -destination generic/platform=watchOS
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportUseBuiltinSCM = YES
Resolve Package Graph
Resolved source packages:
  TransientLabel: /Users/admin/builder/spi-builder-workspace
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (3 targets)
    Target 'TransientLabel' in project 'TransientLabel'
        ➜ Explicit dependency on target 'TransientLabel' in project 'TransientLabel'
        ➜ Explicit dependency on target 'TransientLabel_TransientLabel' in project 'TransientLabel'
    Target 'TransientLabel' in project 'TransientLabel'
        ➜ Explicit dependency on target 'TransientLabel_TransientLabel' in project 'TransientLabel'
    Target 'TransientLabel_TransientLabel' in project 'TransientLabel' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ClangStatCache /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TransientLabel_TransientLabel.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel_TransientLabel.build/empty-TransientLabel_TransientLabel.plist (in target 'TransientLabel_TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel_TransientLabel.build/empty-TransientLabel_TransientLabel.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform watchos -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel_TransientLabel.build/assetcatalog_generated_info.plist -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TransientLabel_TransientLabel.bundle/Info.plist
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TransientLabel_TransientLabel.bundle (in target 'TransientLabel_TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TransientLabel_TransientLabel.bundle
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TransientLabel_TransientLabel.bundle (in target 'TransientLabel_TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TransientLabel_TransientLabel.bundle
SwiftDriver TransientLabel normal armv7k com.apple.xcode.tools.swift.compiler (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TransientLabel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -target armv7k-apple-watchos8.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-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel-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/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.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/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver TransientLabel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TransientLabel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -target arm64-apple-watchos8.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-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel-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/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.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/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver TransientLabel normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TransientLabel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -target arm64_32-apple-watchos8.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-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel-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/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.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/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.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/TransientLabel/TransientLabel.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64 Emitting\ module\ for\ TransientLabel (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.abi.json
EmitSwiftModule normal arm64 (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:8:80: error: type 'UIColor' has no member 'systemBackground'
    public static let defaultBackground = TransientLabelBackground.solidColor(.systemBackground.withAlphaComponent(0.4))
                                                                              ~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:23:28: error: cannot find type 'UIView' in scope
    private let container: UIView
                           ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:24:24: error: cannot find type 'UILabel' in scope
    private let label: UILabel
                       ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:25:21: error: cannot find type 'UIView' in scope
    private let bg: UIView
                    ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:27:27: error: cannot find type 'UIViewPropertyAnimator' in scope
    private var animator: UIViewPropertyAnimator
                          ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:41:132: error: type 'UIColor' has no member 'label'
    public convenience init(delay: TimeInterval = 1, font: UIFont = .preferredFont(forTextStyle: .headline), textColor: UIColor = .label, backgroundColor: UIColor = .systemBackground.withAlphaComponent(0.4)) {
                                                                                                                                  ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:41:167: error: type 'UIColor' has no member 'systemBackground'
    public convenience init(delay: TimeInterval = 1, font: UIFont = .preferredFont(forTextStyle: .headline), textColor: UIColor = .label, backgroundColor: UIColor = .systemBackground.withAlphaComponent(0.4)) {
                                                                                                                                                                     ~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:53:120: error: type 'UIColor' has no member 'label'
    public init(delay: TimeInterval = 1, font: UIFont = .preferredFont(forTextStyle: .headline), textColor: UIColor = .label, background: TransientLabelBackground) {
                                                                                                                      ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:172:25: error: property does not override any property from its superclass
    public override var intrinsicContentSize: CGSize {
           ~~~~~~~~     ^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:177:37: error: cannot find type 'UIViewPropertyAnimator' in scope
    private func describe(animator: UIViewPropertyAnimator, label: String? = nil) {
                                    ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:5:36: error: cannot find type 'UIView' in scope
public final class TransientLabel: UIView {
                                   ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift:6:74: error: type 'UIColor' has no member 'systemBackground'
    public static let `default`: TransientLabelBackground = .solidColor(.systemBackground.withAlphaComponent(0.4))
                                                                        ~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift:15:15: error: cannot find type 'UIBlurEffect' in scope
    case blur(UIBlurEffect.Style)
              ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift:20:17: error: cannot find type 'UIView' in scope
    case custom(UIView)
                ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:92:17: error: cannot find type 'UIVisualEffect' in scope
    var effect: UIVisualEffect
                ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:93:67: error: cannot find type 'UIVisualEffectView' in scope
    func makeUIView(context: UIViewRepresentableContext<Self>) -> UIVisualEffectView { UIVisualEffectView(effect: effect) }
                                                                  ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:93:30: error: cannot find type 'UIViewRepresentableContext' in scope
    func makeUIView(context: UIViewRepresentableContext<Self>) -> UIVisualEffectView { UIVisualEffectView(effect: effect) }
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:94:33: error: cannot find type 'UIVisualEffectView' in scope
    func updateUIView(_ uiView: UIVisualEffectView, context: UIViewRepresentableContext<Self>) { uiView.effect = effect }
                                ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:94:62: error: cannot find type 'UIViewRepresentableContext' in scope
    func updateUIView(_ uiView: UIVisualEffectView, context: UIViewRepresentableContext<Self>) { uiView.effect = effect }
                                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:91:34: error: cannot find type 'UIViewRepresentable' in scope
private struct VisualEffectView: UIViewRepresentable {
                                 ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:99:17: error: cannot find type 'UIView' in scope
    var uiView: UIView
                ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:100:47: error: cannot find type 'UIView' in scope
    func makeUIView(context: Context) -> some UIView { uiView }
                                              ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:100:42: error: 'some' types are only permitted in properties, subscripts, and functions
    func makeUIView(context: Context) -> some UIView { uiView }
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:100:30: error: cannot find type 'Context' in scope
    func makeUIView(context: Context) -> some UIView { uiView }
                             ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:101:33: error: cannot find type 'UIViewType' in scope
    func updateUIView(_ uiView: UIViewType, context: Context) {}
                                ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:101:54: error: cannot find type 'Context' in scope
    func updateUIView(_ uiView: UIViewType, context: Context) {}
                                                     ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:98:31: error: cannot find type 'UIViewRepresentable' in scope
private struct UIViewWrapper: UIViewRepresentable {
                              ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:129:22: error: cannot find 'UIView' in scope
        let bgView = UIView(frame: .zero)
                     ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:136:5: error: cannot use explicit 'return' statement in the body of result builder 'ViewBuilder'
    return VStack {
    ^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:136:5: note: remove 'return' statements to apply the result builder
    return VStack {
    ^~~~~~~

SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.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/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/resource_bundle_accessor.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.dia -target arm64_32-apple-watchos8.0 -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.dia -target arm64_32-apple-watchos8.0 -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.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/TransientLabel/TransientLabelView.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabelView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.dia -target arm64_32-apple-watchos8.0 -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.dia -target arm64_32-apple-watchos8.0 -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/GeneratedAssetSymbols.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.dia -target arm64_32-apple-watchos8.0 -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.dia -target arm64_32-apple-watchos8.0 -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabelBackground.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.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/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.dia -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64/GeneratedAssetSymbols.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal armv7k Emitting\ module\ for\ TransientLabel (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -target armv7k-apple-watchos8.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.abi.json
EmitSwiftModule normal armv7k (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -target armv7k-apple-watchos8.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/armv7k/TransientLabel.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:8:80: error: type 'UIColor' has no member 'systemBackground'
    public static let defaultBackground = TransientLabelBackground.solidColor(.systemBackground.withAlphaComponent(0.4))
                                                                              ~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:23:28: error: cannot find type 'UIView' in scope
    private let container: UIView
                           ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:24:24: error: cannot find type 'UILabel' in scope
    private let label: UILabel
                       ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:25:21: error: cannot find type 'UIView' in scope
    private let bg: UIView
                    ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:27:27: error: cannot find type 'UIViewPropertyAnimator' in scope
    private var animator: UIViewPropertyAnimator
                          ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:41:132: error: type 'UIColor' has no member 'label'
    public convenience init(delay: TimeInterval = 1, font: UIFont = .preferredFont(forTextStyle: .headline), textColor: UIColor = .label, backgroundColor: UIColor = .systemBackground.withAlphaComponent(0.4)) {
                                                                                                                                  ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:41:167: error: type 'UIColor' has no member 'systemBackground'
    public convenience init(delay: TimeInterval = 1, font: UIFont = .preferredFont(forTextStyle: .headline), textColor: UIColor = .label, backgroundColor: UIColor = .systemBackground.withAlphaComponent(0.4)) {
                                                                                                                                                                     ~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:53:120: error: type 'UIColor' has no member 'label'
    public init(delay: TimeInterval = 1, font: UIFont = .preferredFont(forTextStyle: .headline), textColor: UIColor = .label, background: TransientLabelBackground) {
                                                                                                                      ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:172:25: error: property does not override any property from its superclass
    public override var intrinsicContentSize: CGSize {
           ~~~~~~~~     ^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:177:37: error: cannot find type 'UIViewPropertyAnimator' in scope
    private func describe(animator: UIViewPropertyAnimator, label: String? = nil) {
                                    ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift:5:36: error: cannot find type 'UIView' in scope
public final class TransientLabel: UIView {
                                   ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift:6:74: error: type 'UIColor' has no member 'systemBackground'
    public static let `default`: TransientLabelBackground = .solidColor(.systemBackground.withAlphaComponent(0.4))
                                                                        ~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift:15:15: error: cannot find type 'UIBlurEffect' in scope
    case blur(UIBlurEffect.Style)
              ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift:20:17: error: cannot find type 'UIView' in scope
    case custom(UIView)
                ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:92:17: error: cannot find type 'UIVisualEffect' in scope
    var effect: UIVisualEffect
                ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:93:67: error: cannot find type 'UIVisualEffectView' in scope
    func makeUIView(context: UIViewRepresentableContext<Self>) -> UIVisualEffectView { UIVisualEffectView(effect: effect) }
                                                                  ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:93:30: error: cannot find type 'UIViewRepresentableContext' in scope
    func makeUIView(context: UIViewRepresentableContext<Self>) -> UIVisualEffectView { UIVisualEffectView(effect: effect) }
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:94:33: error: cannot find type 'UIVisualEffectView' in scope
    func updateUIView(_ uiView: UIVisualEffectView, context: UIViewRepresentableContext<Self>) { uiView.effect = effect }
                                ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:94:62: error: cannot find type 'UIViewRepresentableContext' in scope
    func updateUIView(_ uiView: UIVisualEffectView, context: UIViewRepresentableContext<Self>) { uiView.effect = effect }
                                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:91:34: error: cannot find type 'UIViewRepresentable' in scope
private struct VisualEffectView: UIViewRepresentable {
                                 ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:99:17: error: cannot find type 'UIView' in scope
    var uiView: UIView
                ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:100:47: error: cannot find type 'UIView' in scope
    func makeUIView(context: Context) -> some UIView { uiView }
                                              ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:100:42: error: 'some' types are only permitted in properties, subscripts, and functions
    func makeUIView(context: Context) -> some UIView { uiView }
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:100:30: error: cannot find type 'Context' in scope
    func makeUIView(context: Context) -> some UIView { uiView }
                             ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:101:33: error: cannot find type 'UIViewType' in scope
    func updateUIView(_ uiView: UIViewType, context: Context) {}
                                ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:101:54: error: cannot find type 'Context' in scope
    func updateUIView(_ uiView: UIViewType, context: Context) {}
                                                     ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:98:31: error: cannot find type 'UIViewRepresentable' in scope
private struct UIViewWrapper: UIViewRepresentable {
                              ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:129:22: error: cannot find 'UIView' in scope
        let bgView = UIView(frame: .zero)
                     ^~~~~~
/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:136:5: error: cannot use explicit 'return' statement in the body of result builder 'ViewBuilder'
    return VStack {
    ^
/Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift:136:5: note: remove 'return' statements to apply the result builder
    return VStack {
    ^~~~~~~

SwiftCompile normal arm64_32 Compiling\ resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.dia -target arm64_32-apple-watchos8.0 -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.dia -target arm64_32-apple-watchos8.0 -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.o -index-unit-output-path /TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/resource_bundle_accessor.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ TransientLabel (in target 'TransientLabel' from project 'TransientLabel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelBackground.swift /Users/admin/builder/spi-builder-workspace/Sources/TransientLabel/TransientLabelView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/GeneratedAssetSymbols.swift -target arm64_32-apple-watchos8.0 -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.2.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 -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.2-22S97-8cb5c683f5e64b0ecfc74e8d0065fbf6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name TransientLabel -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.2 -target-sdk-name watchos11.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TransientLabel.build/Debug-watchos/TransientLabel.build/Objects-normal/arm64_32/TransientLabel.abi.json
Command SwiftEmitModule failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ TransientLabel (in target 'TransientLabel' from project 'TransientLabel')
	EmitSwiftModule normal arm64 (in target 'TransientLabel' from project 'TransientLabel')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ TransientLabel (in target 'TransientLabel' from project 'TransientLabel')
	EmitSwiftModule normal armv7k (in target 'TransientLabel' from project 'TransientLabel')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ TransientLabel (in target 'TransientLabel' from project 'TransientLabel')
	Building workspace spi-builder-workspace with scheme TransientLabel
(6 failures)
BUILD FAILURE 6.0 watchOS