This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of FlyHUD with Swift 6.0 for tvOS using Xcode 16.0.

Swift 6 data race errors: 24

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme FlyHUD-Package -destination generic/platform=tvos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:96:19: warning: main actor-isolated property 'color' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 78 | ///         methods. To automatically hide the activity indicator when animation stops, set the hidesWhenStopped
 79 | ///         property to true. You can set the color of the activity indicator by using the color property.
 80 | open class ActivityIndicatorView: BaseView, ActivityIndicatorViewable {
    |                                             `- note: add '@preconcurrency' to the 'ActivityIndicatorViewable' conformance to defer isolation checking to run time
 81 |     /// The basic appearance of the activity indicator view. The value of this property is a constant that specifies
 82 |     /// the style of the activity indicator view. `Default to Style.ringClipRotate`.
    :
 94 |     ///
 95 |     /// - Note: If you set a color for an activity indicator, it overrides the color provided by the style property.
 96 |     open lazy var color: UIColor! = style.defaultColor {
    |                   `- warning: main actor-isolated property 'color' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 97 |         didSet {
 98 |             color.h.notEqual(oldValue, do: makeAnimationIfNeeded())
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:23:9: note: 'color' declared here
21 |     ///
22 |     /// - Note: If you set a color for an activity indicator, it overrides the color provided by the style property.
23 |     var color: UIColor! { get set }
   |         `- note: 'color' declared here
24 |     /// The track color of the activity indicator.
25 |     var trackColor: UIColor? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:102:19: warning: main actor-isolated property 'trackColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
100 |     }
101 |     /// The track color of the activity indicator.
102 |     open lazy var trackColor: UIColor? = style.defaultTrackColor {
    |                   `- warning: main actor-isolated property 'trackColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
103 |         didSet {
104 |             trackColor.h.notEqual(oldValue, do: makeAnimationIfNeeded())
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:25:9: note: 'trackColor' declared here
23 |     var color: UIColor! { get set }
24 |     /// The track color of the activity indicator.
25 |     var trackColor: UIColor? { get set }
   |         `- note: 'trackColor' declared here
26 |
27 |     /// A Boolean value that controls whether the activity indicator is hidden when the animation is stopped.
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:118:19: warning: main actor-isolated property 'hidesWhenStopped' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
116 |     ///         to true when receiver is not animating. If the hidesWhenStopped property is false, the receiver is not
117 |     ///         hidden when animation stops. You stop an animating activity indicator with the stopAnimating() method.
118 |     open lazy var hidesWhenStopped: Bool = true
    |                   `- warning: main actor-isolated property 'hidesWhenStopped' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
119 |
120 |     /// A Boolean value indicating whether the activity indicator is currently running its animation.
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:32:9: note: 'hidesWhenStopped' declared here
30 |     ///         is not animating. If the hidesWhenStopped property is false, the receiver is not hidden when animation stops.
31 |     ///         You stop an animating activity indicator with the stopAnimating() method.
32 |     var hidesWhenStopped: Bool { get set }
   |         `- note: 'hidesWhenStopped' declared here
33 |     /// A Boolean value indicating whether the activity indicator is currently running its animation.
34 |     var isAnimating: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:121:27: warning: main actor-isolated property 'isAnimating' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
119 |
120 |     /// A Boolean value indicating whether the activity indicator is currently running its animation.
121 |     open private(set) var isAnimating: Bool = false
    |                           `- warning: main actor-isolated property 'isAnimating' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
122 |
123 |     /// Creates an activity indicator view with the specified style.
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:34:9: note: 'isAnimating' declared here
32 |     var hidesWhenStopped: Bool { get set }
33 |     /// A Boolean value indicating whether the activity indicator is currently running its animation.
34 |     var isAnimating: Bool { get }
   |         `- note: 'isAnimating' declared here
35 |
36 |     /// Starts the animation of the activity indicator.
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:162:15: warning: main actor-isolated instance method 'startAnimating()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
160 |     /// - Note: When the activity indicator is animated, the gear spins to indicate
161 |     ///         indeterminate progress. The indicator is animated until stopAnimating() is called.
162 |     open func startAnimating() {
    |               |- warning: main actor-isolated instance method 'startAnimating()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'startAnimating()' to make this instance method not isolated to the actor
163 |         guard isAnimating == false else { return }
164 |         isHidden = false
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:40:10: note: mark the protocol requirement 'startAnimating()' 'async' to allow actor-isolated conformances
38 |     /// - Note: When the activity indicator is animated, the gear spins to indicate
39 |     ///         indeterminate progress. The indicator is animated until stopAnimating() is called.
40 |     func startAnimating()
   |          `- note: mark the protocol requirement 'startAnimating()' 'async' to allow actor-isolated conformances
41 |     /// Stops the animation of the activity indicator.
42 |     ///
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:174:15: warning: main actor-isolated instance method 'stopAnimating()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
172 |     /// - Note: Call this method to stop the animation of the activity indicator started with a call to startAnimating().
173 |     ///         When animating is stopped, the indicator is hidden, unless hidesWhenStopped is false.
174 |     open func stopAnimating() {
    |               |- warning: main actor-isolated instance method 'stopAnimating()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'stopAnimating()' to make this instance method not isolated to the actor
175 |         guard isAnimating else { return }
176 |         isAnimating = false
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:45:10: note: mark the protocol requirement 'stopAnimating()' 'async' to allow actor-isolated conformances
43 |     /// - Note: Call this method to stop the animation of the activity indicator started with a call to startAnimating().
44 |     ///         When animating is stopped, the indicator is hidden, unless hidesWhenStopped is false.
45 |     func stopAnimating()
   |          `- note: mark the protocol requirement 'stopAnimating()' 'async' to allow actor-isolated conformances
46 | }
47 |
SwiftCompile normal arm64 Compiling\ ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.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/IndicatorHUD/ActivityIndicatorView.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:96:19: warning: main actor-isolated property 'color' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open lazy var color: UIColor! = style.defaultColor {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:80:45: note: add '@preconcurrency' to the 'ActivityIndicatorViewable' conformance to defer isolation checking to run time
open class ActivityIndicatorView: BaseView, ActivityIndicatorViewable {
                                            ^
                                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:23:9: note: 'color' declared here
    var color: UIColor! { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:102:19: warning: main actor-isolated property 'trackColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open lazy var trackColor: UIColor? = style.defaultTrackColor {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:25:9: note: 'trackColor' declared here
    var trackColor: UIColor? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:118:19: warning: main actor-isolated property 'hidesWhenStopped' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open lazy var hidesWhenStopped: Bool = true
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:32:9: note: 'hidesWhenStopped' declared here
    var hidesWhenStopped: Bool { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:121:27: warning: main actor-isolated property 'isAnimating' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open private(set) var isAnimating: Bool = false
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:34:9: note: 'isAnimating' declared here
    var isAnimating: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:162:15: warning: main actor-isolated instance method 'startAnimating()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func startAnimating() {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:162:15: note: add 'nonisolated' to 'startAnimating()' to make this instance method not isolated to the actor
    open func startAnimating() {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:40:10: note: mark the protocol requirement 'startAnimating()' 'async' to allow actor-isolated conformances
    func startAnimating()
         ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:174:15: warning: main actor-isolated instance method 'stopAnimating()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func stopAnimating() {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:174:15: note: add 'nonisolated' to 'stopAnimating()' to make this instance method not isolated to the actor
    open func stopAnimating() {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ActivityIndicatorViewable.swift:45:10: note: mark the protocol requirement 'stopAnimating()' 'async' to allow actor-isolated conformances
    func stopAnimating()
         ^
SwiftCompile normal arm64 Compiling\ ShapeBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.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/IndicatorHUD/ShapeBuilder.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ShapeBuilder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.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/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.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 Compiling\ ActivityIndicatorAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.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/IndicatorHUD/ActivityIndicatorAnimation.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/ActivityIndicatorAnimation.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ HUD+ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.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/IndicatorHUD/HUD+ActivityIndicatorView.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ShapeBuilder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyIndicatorHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/HUD+ActivityIndicatorView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift:23:17: warning: call to main actor-isolated initializer 'init(styleable:size:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        .custom(ActivityIndicatorView(styleable: style))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:139:24: note: calls to initializer 'init(styleable:size:)' from outside of its actor context are implicitly asynchronous
    public convenience init(styleable: ActivityIndicatorViewStyleable, size: CGSize = .zero) {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift:22:24: note: add '@MainActor' to make static method 'indicator' part of global actor 'MainActor'
    public static func indicator(_ style: ActivityIndicatorView.Style) -> ContentView.Mode {
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift:30:17: warning: call to main actor-isolated initializer 'init(styleable:size:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        .custom(ActivityIndicatorView(styleable: style))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/ActivityIndicatorView.swift:139:24: note: calls to initializer 'init(styleable:size:)' from outside of its actor context are implicitly asynchronous
    public convenience init(styleable: ActivityIndicatorViewStyleable, size: CGSize = .zero) {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift:29:24: note: add '@MainActor' to make static method 'indicator' part of global actor 'MainActor'
    public static func indicator(_ style: ActivityIndicatorViewStyleable) -> ContentView.Mode {
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift:23:17: warning: sending 'style' risks causing data races; this is an error in the Swift 6 language mode
        .custom(ActivityIndicatorView(styleable: style))
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift:23:17: note: sending task-isolated 'style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        .custom(ActivityIndicatorView(styleable: style))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift:30:17: warning: sending 'style' risks causing data races; this is an error in the Swift 6 language mode
        .custom(ActivityIndicatorView(styleable: style))
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/HUD+ActivityIndicatorView.swift:30:17: note: sending task-isolated 'style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        .custom(ActivityIndicatorView(styleable: style))
                ^
SwiftEmitModule normal arm64 Emitting\ module\ for\ FlyProgressHUD (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyProgressHUD -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:146:14: warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 94 | ///
 95 | /// - Note: For an indeterminate progress indicator — or a “spinner” — use an instance of the ActivityIndicatorView class.
 96 | open class ProgressView: BaseView, ProgressViewable, DisplayLinkDelegate {
    |                                    `- note: add '@preconcurrency' to the 'ProgressViewable' conformance to defer isolation checking to run time
 97 |     /// The current graphical style of the progress view. The value of this property is a constant that specifies
 98 |     /// the style of the progress view. `Default to Style.buttBar`.
    :
144 |     /// The current progress of the progress view.
145 |     /// - Note: 0.0 .. 1.0, default is 0.0. values outside are pinned.
146 |     open var progress: Float = 0.0 {
    |              `- warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
147 |         didSet {
148 |             progress.h.notEqual(oldValue, do: setNeedsDisplay())
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ProgressViewable.swift:23:9: note: 'progress' declared here
21 |     ///
22 |     /// - Note: 0.0 .. 1.0, default is 0.0. values outside are pinned.
23 |     var progress: Float { get set }
   |         `- note: 'progress' declared here
24 |
25 |     /// The color shown for the portion of the progress bar that’s filled.
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:110:19: warning: main actor-isolated property 'progressTintColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
108 |
109 |     /// The color shown for the portion of the progress bar that’s filled.
110 |     open lazy var progressTintColor: UIColor? = style.defaultProgressTintColor {
    |                   `- warning: main actor-isolated property 'progressTintColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
111 |         didSet {
112 |             progressTintColor.h.notEqual(oldValue, do: setNeedsDisplay())
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ProgressViewable.swift:26:9: note: 'progressTintColor' declared here
24 |
25 |     /// The color shown for the portion of the progress bar that’s filled.
26 |     var progressTintColor: UIColor? { get set }
   |         `- note: 'progressTintColor' declared here
27 |
28 |     /// The color shown for the portion of the progress bar that isn’t filled.
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:117:19: warning: main actor-isolated property 'trackTintColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
115 |
116 |     /// The color shown for the portion of the progress bar that isn’t filled.
117 |     open lazy var trackTintColor: UIColor? = style.defaultTrackTintColor {
    |                   `- warning: main actor-isolated property 'trackTintColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
118 |         didSet {
119 |             trackTintColor.h.notEqual(oldValue, do: setNeedsDisplay())
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ProgressViewable.swift:29:9: note: 'trackTintColor' declared here
27 |
28 |     /// The color shown for the portion of the progress bar that isn’t filled.
29 |     var trackTintColor: UIColor? { get set }
   |         `- note: 'trackTintColor' declared here
30 |
31 |     /// The Progress object feeding the progress information to the progress indicator.
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:157:14: warning: main actor-isolated property 'observedProgress' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
155 |     ///         receives from the [Progress](https://developer.apple.com/documentation/foundation/progress)
156 |     ///         object. Set the property to nil when you want to update the progress manually.  `Defaults to nil`.
157 |     open var observedProgress: Progress? {
    |              `- warning: main actor-isolated property 'observedProgress' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
158 |         didSet {
159 |             observedProgress.h.notEqual(oldValue, do: updateProgressDisplayLink())
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ProgressViewable.swift:36:9: note: 'observedProgress' declared here
34 |     ///         receives from the [Progress](https://developer.apple.com/documentation/foundation/progress)
35 |     ///         object. Set the property to nil when you want to update the progress manually.  `Defaults to nil`.
36 |     var observedProgress: Progress? { get set }
   |         `- note: 'observedProgress' declared here
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:284:15: warning: main actor-isolated instance method 'updateScreenInDisplayLink()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 94 | ///
 95 | /// - Note: For an indeterminate progress indicator — or a “spinner” — use an instance of the ActivityIndicatorView class.
 96 | open class ProgressView: BaseView, ProgressViewable, DisplayLinkDelegate {
    |                                                      `- note: add '@preconcurrency' to the 'DisplayLinkDelegate' conformance to defer isolation checking to run time
 97 |     /// The current graphical style of the progress view. The value of this property is a constant that specifies
 98 |     /// the style of the progress view. `Default to Style.buttBar`.
    :
282 |
283 |     /// Refreshing the progress only every frame draw.
284 |     open func updateScreenInDisplayLink() {
    |               |- warning: main actor-isolated instance method 'updateScreenInDisplayLink()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'updateScreenInDisplayLink()' to make this instance method not isolated to the actor
285 |         guard let observedProgress else { return }
286 |         progress = Float(observedProgress.fractionCompleted)
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Observables/DisplayLink.swift:18:10: note: mark the protocol requirement 'updateScreenInDisplayLink()' 'async' to allow actor-isolated conformances
16 | public protocol DisplayLinkDelegate: AnyObject {
17 |     /// Tells the delegate that the refreshing the screen only every frame draw.
18 |     func updateScreenInDisplayLink()
   |          `- note: mark the protocol requirement 'updateScreenInDisplayLink()' 'async' to allow actor-isolated conformances
19 | }
20 |
SwiftCompile normal arm64 Compiling\ ProgressView.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyProgressHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.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/ProgressHUD/ProgressView.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyProgressHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:146:14: warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var progress: Float = 0.0 {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:96:36: note: add '@preconcurrency' to the 'ProgressViewable' conformance to defer isolation checking to run time
open class ProgressView: BaseView, ProgressViewable, DisplayLinkDelegate {
                                   ^
                                   @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ProgressViewable.swift:23:9: note: 'progress' declared here
    var progress: Float { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:110:19: warning: main actor-isolated property 'progressTintColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open lazy var progressTintColor: UIColor? = style.defaultProgressTintColor {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ProgressViewable.swift:26:9: note: 'progressTintColor' declared here
    var progressTintColor: UIColor? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:117:19: warning: main actor-isolated property 'trackTintColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open lazy var trackTintColor: UIColor? = style.defaultTrackTintColor {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ProgressViewable.swift:29:9: note: 'trackTintColor' declared here
    var trackTintColor: UIColor? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:157:14: warning: main actor-isolated property 'observedProgress' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var observedProgress: Progress? {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Protocols/ProgressViewable.swift:36:9: note: 'observedProgress' declared here
    var observedProgress: Progress? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:284:15: warning: main actor-isolated instance method 'updateScreenInDisplayLink()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func updateScreenInDisplayLink() {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:284:15: note: add 'nonisolated' to 'updateScreenInDisplayLink()' to make this instance method not isolated to the actor
    open func updateScreenInDisplayLink() {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:96:54: note: add '@preconcurrency' to the 'DisplayLinkDelegate' conformance to defer isolation checking to run time
open class ProgressView: BaseView, ProgressViewable, DisplayLinkDelegate {
                                                     ^
                                                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Observables/DisplayLink.swift:18:10: note: mark the protocol requirement 'updateScreenInDisplayLink()' 'async' to allow actor-isolated conformances
    func updateScreenInDisplayLink()
         ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Observables/DisplayLink.swift:26:23: warning: class property 'shared' is not concurrency-safe because non-'Sendable' type 'DisplayLink' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = DisplayLink()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Observables/DisplayLink.swift:24:14: note: class 'DisplayLink' does not conform to the 'Sendable' protocol
public class DisplayLink {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Observables/DisplayLink.swift:26:23: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    public static let shared = DisplayLink()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/HUD/Observables/DisplayLink.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = DisplayLink()
                      ^
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyProgressHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyProgressHUD.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/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyProgressHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/resource_bundle_accessor.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling KeyboardObserver.swift, ActivityIndicatorViewable.swift (in target 'FlyHUD' from project 'FlyHUD')
SwiftCompile normal arm64 Compiling\ HUD+ProgressView.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyProgressHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.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/ProgressHUD/HUD+ProgressView.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyProgressHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/HUD+ProgressView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift:25:17: warning: call to main actor-isolated initializer 'init(styleable:size:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        .custom(ProgressView(styleable: style))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:181:24: note: calls to initializer 'init(styleable:size:)' from outside of its actor context are implicitly asynchronous
    public convenience init(styleable: ProgressViewStyleable, size: CGSize = .zero) {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift:24:24: note: add '@MainActor' to make static method 'progress' part of global actor 'MainActor'
    public static func progress(_ style: ProgressView.Style) -> ContentView.Mode {
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift:33:17: warning: call to main actor-isolated initializer 'init(styleable:size:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        .custom(ProgressView(styleable: style))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift:181:24: note: calls to initializer 'init(styleable:size:)' from outside of its actor context are implicitly asynchronous
    public convenience init(styleable: ProgressViewStyleable, size: CGSize = .zero) {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift:32:24: note: add '@MainActor' to make static method 'progress' part of global actor 'MainActor'
    public static func progress(_ style: ProgressViewStyleable) -> ContentView.Mode {
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift:25:17: warning: sending 'style' risks causing data races; this is an error in the Swift 6 language mode
        .custom(ProgressView(styleable: style))
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift:25:17: note: sending task-isolated 'style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        .custom(ProgressView(styleable: style))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift:33:17: warning: sending 'style' risks causing data races; this is an error in the Swift 6 language mode
        .custom(ProgressView(styleable: style))
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift:33:17: note: sending task-isolated 'style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        .custom(ProgressView(styleable: style))
                ^
SwiftDriverJobDiscovery normal arm64 Compiling HUD+ActivityIndicatorView.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
SwiftCompile normal arm64 Compiling\ ProgressAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyProgressHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.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/ProgressHUD/ProgressAnimation.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/HUD+ProgressView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/ProgressView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FlyProgressHUD -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.o -index-unit-output-path /FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/ProgressAnimation.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
SwiftDriver\ Compilation FlyHUD normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FlyHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name FlyHUD -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/Objects-normal/arm64/FlyHUD.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/Objects-normal/arm64/FlyHUD-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/FlyHUD.build/Debug-appletvos/FlyHUD.build/Objects-normal/arm64/FlyHUD.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/Objects-normal/arm64/FlyHUD_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.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/FlyHUD.build/Debug-appletvos/FlyHUD.build/Objects-normal/arm64/FlyHUD-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ShapeBuilder.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyHUD.o normal (in target 'FlyHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/Objects-normal/arm64/FlyHUD.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/Objects-normal/arm64/FlyHUD_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/Objects-normal/arm64/FlyHUD.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyHUD.build/Objects-normal/arm64/FlyHUD_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyHUD.o
SwiftDriverJobDiscovery normal arm64 Compiling HUD+ProgressView.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
SwiftDriverJobDiscovery normal arm64 Emitting module for FlyIndicatorHUD (in target 'FlyIndicatorHUD' from project 'FlyHUD')
SwiftDriver\ Compilation\ Requirements FlyIndicatorHUD normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name FlyIndicatorHUD -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD-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/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.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/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/FlyIndicatorHUD-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD-Swift.h (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/FlyIndicatorHUD-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.swiftdoc (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.swiftmodule (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.abi.json (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.swiftsourceinfo (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Emitting module for FlyProgressHUD (in target 'FlyProgressHUD' from project 'FlyHUD')
SwiftDriver\ Compilation\ Requirements FlyProgressHUD normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name FlyProgressHUD -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD-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/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.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/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/FlyProgressHUD-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD-Swift.h (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/FlyProgressHUD-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftmodule (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftdoc (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.abi.json (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftsourceinfo (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyHUD.o (in target 'FlyHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyHUD.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.LinkFileList (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.LinkFileList (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.LinkFileList
SwiftDriverJobDiscovery normal arm64 Compiling ActivityIndicatorView.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
SwiftDriverJobDiscovery normal arm64 Compiling ActivityIndicatorAnimation.swift (in target 'FlyIndicatorHUD' from project 'FlyHUD')
SwiftDriver\ Compilation FlyIndicatorHUD normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name FlyIndicatorHUD -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD-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/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.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/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.o normal (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyIndicatorHUD.build/Objects-normal/arm64/FlyIndicatorHUD_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.o (in target 'FlyIndicatorHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyIndicatorHUD.o
SwiftDriverJobDiscovery normal arm64 Compiling ProgressView.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
SwiftDriverJobDiscovery normal arm64 Compiling ProgressAnimation.swift (in target 'FlyProgressHUD' from project 'FlyHUD')
SwiftDriver\ Compilation FlyProgressHUD normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name FlyProgressHUD -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD-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/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.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/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.o normal (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyHUD.build/Debug-appletvos/FlyProgressHUD.build/Objects-normal/arm64/FlyProgressHUD_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.o (in target 'FlyProgressHUD' from project 'FlyHUD')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FlyProgressHUD.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'FlyIndicatorHUD' from project 'FlyHUD')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'FlyHUD' from project 'FlyHUD')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'FlyProgressHUD' from project 'FlyHUD')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'FlyHUD_FlyProgressHUD' from project 'FlyHUD')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'FlyIndicatorHUD' from project 'FlyHUD')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'FlyProgressHUD' from project 'FlyHUD')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FlyHUD",
  "name" : "FlyHUD",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "FlyHUD",
      "targets" : [
        "FlyHUD"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "FlyIndicatorHUD",
      "targets" : [
        "FlyIndicatorHUD"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "FlyProgressHUD",
      "targets" : [
        "FlyProgressHUD"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FlyProgressHUD",
      "module_type" : "SwiftTarget",
      "name" : "FlyProgressHUD",
      "path" : "Sources/ProgressHUD",
      "product_memberships" : [
        "FlyProgressHUD"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/ProgressHUD/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "HUD+ProgressView.swift",
        "ProgressAnimation.swift",
        "ProgressView.swift"
      ],
      "target_dependencies" : [
        "FlyHUD"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FlyIndicatorHUD",
      "module_type" : "SwiftTarget",
      "name" : "FlyIndicatorHUD",
      "path" : "Sources/IndicatorHUD",
      "product_memberships" : [
        "FlyIndicatorHUD"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/IndicatorHUD/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ActivityIndicatorAnimation.swift",
        "ActivityIndicatorView.swift",
        "HUD+ActivityIndicatorView.swift",
        "ShapeBuilder.swift"
      ],
      "target_dependencies" : [
        "FlyHUD"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FlyHUD",
      "module_type" : "SwiftTarget",
      "name" : "FlyHUD",
      "path" : "Sources/HUD",
      "product_memberships" : [
        "FlyHUD",
        "FlyIndicatorHUD",
        "FlyProgressHUD"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HUD/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Extensions/Extensions.swift",
        "Extensions/HUDExtended.swift",
        "HUD.swift",
        "Model.swift",
        "Observables/DisplayLink.swift",
        "Observables/KeyboardObserver.swift",
        "Protocols/ActivityIndicatorViewable.swift",
        "Protocols/ProgressViewable.swift",
        "Protocols/RotateViewable.swift",
        "Views/BackgroundView.swift",
        "Views/BaseView.swift",
        "Views/Button.swift",
        "Views/ContentView.swift",
        "Views/Label.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.