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

Failed to build CRToastSwift with Swift 6.0 for tvOS using Xcode 16.0.

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 CRToastSwift -destination generic/platform=tvos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  25 |
  26 |     //An interaction responder with a CRToastInteractionTypeSwipe interaction type will fire on all swipe interactions
  27 |     public static let swipe:CRToastInteractionType   = [.swipeUp,
     |                       |- warning: static property 'swipe' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'swipe' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  28 |                                                  .swipeLeft,
  29 |                                                  .swipeDown,
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: warning: static property 'tap' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  31 |
  32 |     //An interaction responder with a CRToastInteractionTypeTap interaction type will fire on all tap interactions
  33 |     public static let tap:CRToastInteractionType     = [.tapOnce,
     |                       |- warning: static property 'tap' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'tap' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  34 |                                                  .tapTwice,
  35 |                                                  .twoFingerTapOnce,
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  37 |
  38 |     //An interaction responder with a CRToastInteractionTypeAll interaction type will fire on all swipe and tap interactions
  39 |     public static let all:CRToastInteractionType     = [.swipe,.tap]
     |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  40 | }
  41 |
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:434:32: error: 'UIStatusBarStyle' is unavailable in tvOS
 432 |     public var subtitleTextShadowOffset :CGSize = CGSize.zero;
 433 |     public var subtitleTextMaxNumberOfLines:Int = 0;
 434 |     public var statusBarStyle :UIStatusBarStyle = .default
     |                                `- error: 'UIStatusBarStyle' is unavailable in tvOS
 435 |
 436 |     public var backgroundColor :UIColor
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:489:25: error: 'UIStatusBarStyle' is unavailable in tvOS
 487 |         .subtitleTextShadowOffset:CGSize.self,
 488 |         .subtitleTextMaxNumberOfLines:Int.self,
 489 |         .statusBarStyle:UIStatusBarStyle.self,
     |                         `- error: 'UIStatusBarStyle' is unavailable in tvOS
 490 |
 491 |         .backgroundColor:UIColor.self,
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: warning: static property '_default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 515 |      }
 516 |
 517 |     private static var _default : CROptions? = nil
     |                        |- warning: static property '_default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert '_default' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: annotate '_default' with '@MainActor' if property should only be accessed from the main actor
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 518 |     public static var `default` : CROptions {
 519 |         get {
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:803:31: error: 'UIStatusBarStyle' is unavailable in tvOS
 801 |     public var subtitleTextShadowOffset:CGSize { return options.subtitleTextShadowOffset }
 802 |     public var subtitleTextMaxNumberOfLines:Int { return options.subtitleTextMaxNumberOfLines }
 803 |     public var statusBarStyle:UIStatusBarStyle { return options.statusBarStyle }
     |                               `- error: 'UIStatusBarStyle' is unavailable in tvOS
 804 |
 805 |     public var backgroundColor:UIColor { return options.backgroundColor }
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:989:34: error: 'UIInterfaceOrientation' is unavailable in tvOS
 987 | let CRNavigationBarDefaultHeightiPhoneLandscape:CGFloat = 53.0
 988 |
 989 | func CRGetDeviceOrientation() -> UIInterfaceOrientation {
     |                                  `- error: 'UIInterfaceOrientation' is unavailable in tvOS
 990 |     return UIApplication.shared.statusBarOrientation
 991 | }
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:994:56: error: 'UIInterfaceOrientation' is unavailable in tvOS
 992 |
 993 | // Status bar
 994 | func CRGetStatusBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
     |                                                        `- error: 'UIInterfaceOrientation' is unavailable in tvOS
 995 |     let statusBarFrame = UIApplication.shared.statusBarFrame
 996 |     return statusBarFrame.height
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:998:55: error: 'UIInterfaceOrientation' is unavailable in tvOS
 996 |     return statusBarFrame.height
 997 | }
 998 | func CRGetStatusBarWidthForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
     |                                                       `- error: 'UIInterfaceOrientation' is unavailable in tvOS
 999 |     let statusBarFrameWidth = UIApplication.shared.keyWindow?.frame.width ?? UIApplication.shared.statusBarFrame.width
1000 |     return statusBarFrameWidth
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1039:60: error: 'UIInterfaceOrientation' is unavailable in tvOS
1037 |     }
1038 | }
1039 | func CRGetNavigationBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
     |                                                            `- error: 'UIInterfaceOrientation' is unavailable in tvOS
1040 |     if let rootViewController = UIApplication.shared.keyWindow?.rootViewController, let visibleViewController = UIWindow.visibleViewController(from: rootViewController) {
1041 |         return visibleViewController.view.safeAreaInsets.top
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1054:112: error: 'UIInterfaceOrientation' is unavailable in tvOS
1052 |
1053 | // Notification view
1054 | func CRGetNotificationViewHeightForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGFloat {
     |                                                                                                                `- error: 'UIInterfaceOrientation' is unavailable in tvOS
1055 |     switch type {
1056 |     case .statusBar:
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1069:107: error: 'UIInterfaceOrientation' is unavailable in tvOS
1067 | }
1068 |
1069 | func CRNotificationViewSizeForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGSize {
     |                                                                                                           `- error: 'UIInterfaceOrientation' is unavailable in tvOS
1070 |     return CGSize(width: CRGetStatusBarWidthForOrientation(orientation), height: CRGetNotificationViewHeightForOrientation(type, preferredHeight, orientation))
1071 | }
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1096:63: error: 'UIInterfaceOrientation' is unavailable in tvOS
1094 | }
1095 |
1096 | func CRGetNotificationContainerFrame(_ statusBarOrientation : UIInterfaceOrientation, _ notificationSize : CGSize) -> CGRect {
     |                                                               `- error: 'UIInterfaceOrientation' is unavailable in tvOS
1097 |     var containerFrame = CGRect(x: 0, y: 0, width: notificationSize.width, height: notificationSize.height)
1098 |
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'CRToastManager' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | }
 13 |
 14 | public class CRToastManager : NSObject {
    |              `- note: class 'CRToastManager' does not conform to the 'Sendable' protocol
 15 |     /**
 16 |      Sets the default options that CRToast will use when displaying a notification
    :
 86 |     }
 87 |
 88 |     static let manager = CRToastManager()
    |                |- warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'CRToastManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'manager' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |     static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
 90 |     typealias CRToastAnimationCompletionBlock = (Bool)->Void
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: warning: static property 'kCRToastManagerCollisionBoundaryIdentifier' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
 87 |
 88 |     static let manager = CRToastManager()
 89 |     static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
    |                |- warning: static property 'kCRToastManagerCollisionBoundaryIdentifier' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'kCRToastManagerCollisionBoundaryIdentifier' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 |     typealias CRToastAnimationCompletionBlock = (Bool)->Void
 91 |     typealias CRToastAnimationStepBlock = ()->Void
Foundation.NSString:1:12: note: class 'NSString' does not conform to the 'Sendable' protocol
 1 | open class NSString : NSObject, NSCopying, NSMutableCopying, NSSecureCoding {
   |            `- note: class 'NSString' does not conform to the 'Sendable' protocol
 2 |     open var length: Int { get }
 3 |     open func character(at index: Int) -> unichar
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:3:18: warning: reference to var 'NSFoundationVersionNumber' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 1 | import UIKit
 2 |
 3 | let iOS9 = floor(NSFoundationVersionNumber) >= floor(NSFoundationVersionNumber_iOS_9_0)
   |                  `- warning: reference to var 'NSFoundationVersionNumber' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | class CRToastContainerView : UIView {
Foundation.NSFoundationVersionNumber:1:12: note: var declared here
1 | public var NSFoundationVersionNumber: Double
  |            `- note: var declared here
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:15:18: error: 'setNeedsStatusBarAppearanceUpdate()' is unavailable in tvOS
13 |     public var statusBarStyle : UIStatusBarStyle = .default {
14 |         didSet {
15 |             self.setNeedsStatusBarAppearanceUpdate()
   |                  `- error: 'setNeedsStatusBarAppearanceUpdate()' is unavailable in tvOS
16 |         }
17 |     }
UIKit.UIViewController:196:26: note: 'setNeedsStatusBarAppearanceUpdate()' has been explicitly marked unavailable here
194 |     open var preferredStatusBarUpdateAnimation: UIStatusBarAnimation { get }
195 |     @available(tvOS, unavailable)
196 |     @MainActor open func setNeedsStatusBarAppearanceUpdate()
    |                          `- note: 'setNeedsStatusBarAppearanceUpdate()' has been explicitly marked unavailable here
197 |     @available(tvOS)
198 |     open func targetViewController(forAction action: Selector, sender: Any?) -> UIViewController?
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:13:33: error: 'UIStatusBarStyle' is unavailable in tvOS
11 |     public var notification : CRToast?
12 |     public var toastView : UIView?
13 |     public var statusBarStyle : UIStatusBarStyle = .default {
   |                                 `- error: 'UIStatusBarStyle' is unavailable in tvOS
14 |         didSet {
15 |             self.setNeedsStatusBarAppearanceUpdate()
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: error: cannot override 'shouldAutorotate' which has been marked unavailable
18 |
19 |     // MARK : UIViewController
20 |     public override var shouldAutorotate: Bool { return autorotate }
   |                         |- error: cannot override 'shouldAutorotate' which has been marked unavailable
   |                         `- note: remove 'override' modifier to declare a new 'shouldAutorotate'
21 |
22 |     public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
UIKit.UIViewController:10:14: note: 'shouldAutorotate' has been explicitly marked unavailable here
 8 |     open func shouldAutorotateToInterfaceOrientation(_ toInterfaceOrientation: UIInterfaceOrientation) -> Bool
 9 |     @available(tvOS, unavailable)
10 |     open var shouldAutorotate: Bool { get }
   |              `- note: 'shouldAutorotate' has been explicitly marked unavailable here
11 |     @available(tvOS, unavailable)
12 |     open var supportedInterfaceOrientations: UIInterfaceOrientationMask { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: error: cannot override 'prefersStatusBarHidden' which has been marked unavailable
20 |     public override var shouldAutorotate: Bool { return autorotate }
21 |
22 |     public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
   |                         |- error: cannot override 'prefersStatusBarHidden' which has been marked unavailable
   |                         `- note: remove 'override' modifier to declare a new 'prefersStatusBarHidden'
23 |
24 |     public override var preferredStatusBarStyle: UIStatusBarStyle {
UIKit.UIViewController:192:14: note: 'prefersStatusBarHidden' has been explicitly marked unavailable here
190 |     open var preferredStatusBarStyle: UIStatusBarStyle { get }
191 |     @available(tvOS, unavailable)
192 |     open var prefersStatusBarHidden: Bool { get }
    |              `- note: 'prefersStatusBarHidden' has been explicitly marked unavailable here
193 |     @available(tvOS, unavailable)
194 |     open var preferredStatusBarUpdateAnimation: UIStatusBarAnimation { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:25: error: cannot override 'preferredStatusBarStyle' which has been marked unavailable
22 |     public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
23 |
24 |     public override var preferredStatusBarStyle: UIStatusBarStyle {
   |                         |- error: cannot override 'preferredStatusBarStyle' which has been marked unavailable
   |                         `- note: remove 'override' modifier to declare a new 'preferredStatusBarStyle'
25 |         return statusBarStyle
26 |     }
UIKit.UIViewController:190:14: note: 'preferredStatusBarStyle' has been explicitly marked unavailable here
188 |     open var preferredContentSize: CGSize { get set }
189 |     @available(tvOS, unavailable)
190 |     open var preferredStatusBarStyle: UIStatusBarStyle { get }
    |              `- note: 'preferredStatusBarStyle' has been explicitly marked unavailable here
191 |     @available(tvOS, unavailable)
192 |     open var prefersStatusBarHidden: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:50: error: 'UIStatusBarStyle' is unavailable in tvOS
22 |     public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
23 |
24 |     public override var preferredStatusBarStyle: UIStatusBarStyle {
   |                                                  `- error: 'UIStatusBarStyle' is unavailable in tvOS
25 |         return statusBarStyle
26 |     }
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:73: error: 'UIInterfaceOrientation' is unavailable in tvOS
30 |     }
31 |
32 |     public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
   |                                                                         `- error: 'UIInterfaceOrientation' is unavailable in tvOS
33 |         super.willAnimateRotation(to: toInterfaceOrientation, duration: duration)
34 |
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:26: error: cannot override 'willAnimateRotation' which has been marked unavailable
30 |     }
31 |
32 |     public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
   |                          |- error: cannot override 'willAnimateRotation' which has been marked unavailable
   |                          `- note: remove 'override' modifier to declare a new 'willAnimateRotation'
33 |         super.willAnimateRotation(to: toInterfaceOrientation, duration: duration)
34 |
UIKit.UIViewController:34:15: note: 'willAnimateRotation(to:duration:)' has been explicitly marked unavailable here
32 |     open func didRotateFromInterfaceOrientation(_ fromInterfaceOrientation: UIInterfaceOrientation)
33 |     @available(tvOS, unavailable)
34 |     open func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval)
   |               `- note: 'willAnimateRotation(to:duration:)' has been explicitly marked unavailable here
35 |     @available(swift, obsoleted: 3, renamed: "willAnimateRotation(to:duration:)")
36 |     @available(tvOS, unavailable)
SwiftCompile normal arm64 Compiling\ CRToastWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.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/CRToastSwift/CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.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/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.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/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.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/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.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/CRToastSwift/CRToastManager.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CRToastSwift' from project 'CRToastSwift')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
(1 failure)
Command line invocation:
    /Applications/Xcode-15.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme CRToastSwift -destination generic/platform=tvos "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete"
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportToolchainOverrideForManifestLoading = org.swift.600202405261a
    IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
    TOOLCHAINS = org.swift.600202405261a
Resolve Package Graph
Resolved source packages:
  CRToastSwift: /Users/admin/builder/spi-builder-workspace
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'CRToastSwift' in project 'CRToastSwift'
        ➜ Explicit dependency on target 'CRToastSwift' in project 'CRToastSwift'
    Target 'CRToastSwift' in project 'CRToastSwift' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'.
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftDriver CRToastSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CRToastSwift' from project 'CRToastSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name CRToastSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.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 -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.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/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.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/CRToastSwift/CRToastManager.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastManager.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: warning: static property 'swipeUp' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  15 |     }
  16 |
  17 |     public static let swipeUp                        = CRToastInteractionType(rawValue: 1 << 0)
     |                       |- warning: static property 'swipeUp' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'swipeUp' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  18 |     public static let swipeLeft                      = CRToastInteractionType(rawValue: 1 << 1)
  19 |     public static let swipeDown                      = CRToastInteractionType(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: warning: static property 'swipeLeft' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  16 |
  17 |     public static let swipeUp                        = CRToastInteractionType(rawValue: 1 << 0)
  18 |     public static let swipeLeft                      = CRToastInteractionType(rawValue: 1 << 1)
     |                       |- warning: static property 'swipeLeft' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'swipeLeft' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  19 |     public static let swipeDown                      = CRToastInteractionType(rawValue: 1 << 2)
  20 |     public static let swipeRight                     = CRToastInteractionType(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: warning: static property 'swipeDown' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  17 |     public static let swipeUp                        = CRToastInteractionType(rawValue: 1 << 0)
  18 |     public static let swipeLeft                      = CRToastInteractionType(rawValue: 1 << 1)
  19 |     public static let swipeDown                      = CRToastInteractionType(rawValue: 1 << 2)
     |                       |- warning: static property 'swipeDown' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'swipeDown' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  20 |     public static let swipeRight                     = CRToastInteractionType(rawValue: 1 << 3)
  21 |     public static let tapOnce                        = CRToastInteractionType(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: warning: static property 'swipeRight' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  18 |     public static let swipeLeft                      = CRToastInteractionType(rawValue: 1 << 1)
  19 |     public static let swipeDown                      = CRToastInteractionType(rawValue: 1 << 2)
  20 |     public static let swipeRight                     = CRToastInteractionType(rawValue: 1 << 3)
     |                       |- warning: static property 'swipeRight' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'swipeRight' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  21 |     public static let tapOnce                        = CRToastInteractionType(rawValue: 1 << 4)
  22 |     public static let tapTwice                       = CRToastInteractionType(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: warning: static property 'tapOnce' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  19 |     public static let swipeDown                      = CRToastInteractionType(rawValue: 1 << 2)
  20 |     public static let swipeRight                     = CRToastInteractionType(rawValue: 1 << 3)
  21 |     public static let tapOnce                        = CRToastInteractionType(rawValue: 1 << 4)
     |                       |- warning: static property 'tapOnce' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'tapOnce' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  22 |     public static let tapTwice                       = CRToastInteractionType(rawValue: 1 << 5)
  23 |     public static let twoFingerTapOnce               = CRToastInteractionType(rawValue: 1 << 6)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: warning: static property 'tapTwice' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  20 |     public static let swipeRight                     = CRToastInteractionType(rawValue: 1 << 3)
  21 |     public static let tapOnce                        = CRToastInteractionType(rawValue: 1 << 4)
  22 |     public static let tapTwice                       = CRToastInteractionType(rawValue: 1 << 5)
     |                       |- warning: static property 'tapTwice' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'tapTwice' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  23 |     public static let twoFingerTapOnce               = CRToastInteractionType(rawValue: 1 << 6)
  24 |     public static let twoFingerTapTwice              = CRToastInteractionType(rawValue: 1 << 7)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: warning: static property 'twoFingerTapOnce' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  21 |     public static let tapOnce                        = CRToastInteractionType(rawValue: 1 << 4)
  22 |     public static let tapTwice                       = CRToastInteractionType(rawValue: 1 << 5)
  23 |     public static let twoFingerTapOnce               = CRToastInteractionType(rawValue: 1 << 6)
     |                       |- warning: static property 'twoFingerTapOnce' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'twoFingerTapOnce' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  24 |     public static let twoFingerTapTwice              = CRToastInteractionType(rawValue: 1 << 7)
  25 |
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: warning: static property 'twoFingerTapTwice' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  22 |     public static let tapTwice                       = CRToastInteractionType(rawValue: 1 << 5)
  23 |     public static let twoFingerTapOnce               = CRToastInteractionType(rawValue: 1 << 6)
  24 |     public static let twoFingerTapTwice              = CRToastInteractionType(rawValue: 1 << 7)
     |                       |- warning: static property 'twoFingerTapTwice' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'twoFingerTapTwice' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  25 |
  26 |     //An interaction responder with a CRToastInteractionTypeSwipe interaction type will fire on all swipe interactions
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: warning: static property 'swipe' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  25 |
  26 |     //An interaction responder with a CRToastInteractionTypeSwipe interaction type will fire on all swipe interactions
  27 |     public static let swipe:CRToastInteractionType   = [.swipeUp,
     |                       |- warning: static property 'swipe' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'swipe' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  28 |                                                  .swipeLeft,
  29 |                                                  .swipeDown,
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: warning: static property 'tap' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  31 |
  32 |     //An interaction responder with a CRToastInteractionTypeTap interaction type will fire on all tap interactions
  33 |     public static let tap:CRToastInteractionType     = [.tapOnce,
     |                       |- warning: static property 'tap' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'tap' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  34 |                                                  .tapTwice,
  35 |                                                  .twoFingerTapOnce,
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
   8 |  CRToastInteractionType defines the types of interactions that can be injected into a CRToastIneractionResponder.
   9 |  */
  10 | public struct CRToastInteractionType : OptionSet {
     |               `- note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
  11 |     public let rawValue: Int
  12 |
     :
  37 |
  38 |     //An interaction responder with a CRToastInteractionTypeAll interaction type will fire on all swipe and tap interactions
  39 |     public static let all:CRToastInteractionType     = [.swipe,.tap]
     |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  40 | }
  41 |
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:434:32: error: 'UIStatusBarStyle' is unavailable in tvOS
 432 |     public var subtitleTextShadowOffset :CGSize = CGSize.zero;
 433 |     public var subtitleTextMaxNumberOfLines:Int = 0;
 434 |     public var statusBarStyle :UIStatusBarStyle = .default
     |                                `- error: 'UIStatusBarStyle' is unavailable in tvOS
 435 |
 436 |     public var backgroundColor :UIColor
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:489:25: error: 'UIStatusBarStyle' is unavailable in tvOS
 487 |         .subtitleTextShadowOffset:CGSize.self,
 488 |         .subtitleTextMaxNumberOfLines:Int.self,
 489 |         .statusBarStyle:UIStatusBarStyle.self,
     |                         `- error: 'UIStatusBarStyle' is unavailable in tvOS
 490 |
 491 |         .backgroundColor:UIColor.self,
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: warning: static property '_default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 515 |      }
 516 |
 517 |     private static var _default : CROptions? = nil
     |                        |- warning: static property '_default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: convert '_default' to a 'let' constant to make 'Sendable' shared state immutable
     |                        |- note: annotate '_default' with '@MainActor' if property should only be accessed from the main actor
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 518 |     public static var `default` : CROptions {
 519 |         get {
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:803:31: error: 'UIStatusBarStyle' is unavailable in tvOS
 801 |     public var subtitleTextShadowOffset:CGSize { return options.subtitleTextShadowOffset }
 802 |     public var subtitleTextMaxNumberOfLines:Int { return options.subtitleTextMaxNumberOfLines }
 803 |     public var statusBarStyle:UIStatusBarStyle { return options.statusBarStyle }
     |                               `- error: 'UIStatusBarStyle' is unavailable in tvOS
 804 |
 805 |     public var backgroundColor:UIColor { return options.backgroundColor }
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:989:34: error: 'UIInterfaceOrientation' is unavailable in tvOS
 987 | let CRNavigationBarDefaultHeightiPhoneLandscape:CGFloat = 53.0
 988 |
 989 | func CRGetDeviceOrientation() -> UIInterfaceOrientation {
     |                                  `- error: 'UIInterfaceOrientation' is unavailable in tvOS
 990 |     return UIApplication.shared.statusBarOrientation
 991 | }
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:994:56: error: 'UIInterfaceOrientation' is unavailable in tvOS
 992 |
 993 | // Status bar
 994 | func CRGetStatusBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
     |                                                        `- error: 'UIInterfaceOrientation' is unavailable in tvOS
 995 |     let statusBarFrame = UIApplication.shared.statusBarFrame
 996 |     return statusBarFrame.height
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:998:55: error: 'UIInterfaceOrientation' is unavailable in tvOS
 996 |     return statusBarFrame.height
 997 | }
 998 | func CRGetStatusBarWidthForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
     |                                                       `- error: 'UIInterfaceOrientation' is unavailable in tvOS
 999 |     let statusBarFrameWidth = UIApplication.shared.keyWindow?.frame.width ?? UIApplication.shared.statusBarFrame.width
1000 |     return statusBarFrameWidth
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1039:60: error: 'UIInterfaceOrientation' is unavailable in tvOS
1037 |     }
1038 | }
1039 | func CRGetNavigationBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
     |                                                            `- error: 'UIInterfaceOrientation' is unavailable in tvOS
1040 |     if let rootViewController = UIApplication.shared.keyWindow?.rootViewController, let visibleViewController = UIWindow.visibleViewController(from: rootViewController) {
1041 |         return visibleViewController.view.safeAreaInsets.top
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1054:112: error: 'UIInterfaceOrientation' is unavailable in tvOS
1052 |
1053 | // Notification view
1054 | func CRGetNotificationViewHeightForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGFloat {
     |                                                                                                                `- error: 'UIInterfaceOrientation' is unavailable in tvOS
1055 |     switch type {
1056 |     case .statusBar:
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1069:107: error: 'UIInterfaceOrientation' is unavailable in tvOS
1067 | }
1068 |
1069 | func CRNotificationViewSizeForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGSize {
     |                                                                                                           `- error: 'UIInterfaceOrientation' is unavailable in tvOS
1070 |     return CGSize(width: CRGetStatusBarWidthForOrientation(orientation), height: CRGetNotificationViewHeightForOrientation(type, preferredHeight, orientation))
1071 | }
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1096:63: error: 'UIInterfaceOrientation' is unavailable in tvOS
1094 | }
1095 |
1096 | func CRGetNotificationContainerFrame(_ statusBarOrientation : UIInterfaceOrientation, _ notificationSize : CGSize) -> CGRect {
     |                                                               `- error: 'UIInterfaceOrientation' is unavailable in tvOS
1097 |     var containerFrame = CGRect(x: 0, y: 0, width: notificationSize.width, height: notificationSize.height)
1098 |
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'CRToastManager' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | }
 13 |
 14 | public class CRToastManager : NSObject {
    |              `- note: class 'CRToastManager' does not conform to the 'Sendable' protocol
 15 |     /**
 16 |      Sets the default options that CRToast will use when displaying a notification
    :
 86 |     }
 87 |
 88 |     static let manager = CRToastManager()
    |                |- warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'CRToastManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'manager' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |     static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
 90 |     typealias CRToastAnimationCompletionBlock = (Bool)->Void
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: warning: static property 'kCRToastManagerCollisionBoundaryIdentifier' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
 87 |
 88 |     static let manager = CRToastManager()
 89 |     static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
    |                |- warning: static property 'kCRToastManagerCollisionBoundaryIdentifier' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'kCRToastManagerCollisionBoundaryIdentifier' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 |     typealias CRToastAnimationCompletionBlock = (Bool)->Void
 91 |     typealias CRToastAnimationStepBlock = ()->Void
Foundation.NSString:1:12: note: class 'NSString' does not conform to the 'Sendable' protocol
 1 | open class NSString : NSObject, NSCopying, NSMutableCopying, NSSecureCoding {
   |            `- note: class 'NSString' does not conform to the 'Sendable' protocol
 2 |     open var length: Int { get }
 3 |     open func character(at index: Int) -> unichar
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:3:18: warning: reference to var 'NSFoundationVersionNumber' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 1 | import UIKit
 2 |
 3 | let iOS9 = floor(NSFoundationVersionNumber) >= floor(NSFoundationVersionNumber_iOS_9_0)
   |                  `- warning: reference to var 'NSFoundationVersionNumber' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | class CRToastContainerView : UIView {
Foundation.NSFoundationVersionNumber:1:12: note: var declared here
1 | public var NSFoundationVersionNumber: Double
  |            `- note: var declared here
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:15:18: error: 'setNeedsStatusBarAppearanceUpdate()' is unavailable in tvOS
13 |     public var statusBarStyle : UIStatusBarStyle = .default {
14 |         didSet {
15 |             self.setNeedsStatusBarAppearanceUpdate()
   |                  `- error: 'setNeedsStatusBarAppearanceUpdate()' is unavailable in tvOS
16 |         }
17 |     }
UIKit.UIViewController:196:26: note: 'setNeedsStatusBarAppearanceUpdate()' has been explicitly marked unavailable here
194 |     open var preferredStatusBarUpdateAnimation: UIStatusBarAnimation { get }
195 |     @available(tvOS, unavailable)
196 |     @MainActor open func setNeedsStatusBarAppearanceUpdate()
    |                          `- note: 'setNeedsStatusBarAppearanceUpdate()' has been explicitly marked unavailable here
197 |     @available(tvOS)
198 |     open func targetViewController(forAction action: Selector, sender: Any?) -> UIViewController?
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:13:33: error: 'UIStatusBarStyle' is unavailable in tvOS
11 |     public var notification : CRToast?
12 |     public var toastView : UIView?
13 |     public var statusBarStyle : UIStatusBarStyle = .default {
   |                                 `- error: 'UIStatusBarStyle' is unavailable in tvOS
14 |         didSet {
15 |             self.setNeedsStatusBarAppearanceUpdate()
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: error: cannot override 'shouldAutorotate' which has been marked unavailable
18 |
19 |     // MARK : UIViewController
20 |     public override var shouldAutorotate: Bool { return autorotate }
   |                         |- error: cannot override 'shouldAutorotate' which has been marked unavailable
   |                         `- note: remove 'override' modifier to declare a new 'shouldAutorotate'
21 |
22 |     public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
UIKit.UIViewController:10:14: note: 'shouldAutorotate' has been explicitly marked unavailable here
 8 |     open func shouldAutorotateToInterfaceOrientation(_ toInterfaceOrientation: UIInterfaceOrientation) -> Bool
 9 |     @available(tvOS, unavailable)
10 |     open var shouldAutorotate: Bool { get }
   |              `- note: 'shouldAutorotate' has been explicitly marked unavailable here
11 |     @available(tvOS, unavailable)
12 |     open var supportedInterfaceOrientations: UIInterfaceOrientationMask { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: error: cannot override 'prefersStatusBarHidden' which has been marked unavailable
20 |     public override var shouldAutorotate: Bool { return autorotate }
21 |
22 |     public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
   |                         |- error: cannot override 'prefersStatusBarHidden' which has been marked unavailable
   |                         `- note: remove 'override' modifier to declare a new 'prefersStatusBarHidden'
23 |
24 |     public override var preferredStatusBarStyle: UIStatusBarStyle {
UIKit.UIViewController:192:14: note: 'prefersStatusBarHidden' has been explicitly marked unavailable here
190 |     open var preferredStatusBarStyle: UIStatusBarStyle { get }
191 |     @available(tvOS, unavailable)
192 |     open var prefersStatusBarHidden: Bool { get }
    |              `- note: 'prefersStatusBarHidden' has been explicitly marked unavailable here
193 |     @available(tvOS, unavailable)
194 |     open var preferredStatusBarUpdateAnimation: UIStatusBarAnimation { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:25: error: cannot override 'preferredStatusBarStyle' which has been marked unavailable
22 |     public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
23 |
24 |     public override var preferredStatusBarStyle: UIStatusBarStyle {
   |                         |- error: cannot override 'preferredStatusBarStyle' which has been marked unavailable
   |                         `- note: remove 'override' modifier to declare a new 'preferredStatusBarStyle'
25 |         return statusBarStyle
26 |     }
UIKit.UIViewController:190:14: note: 'preferredStatusBarStyle' has been explicitly marked unavailable here
188 |     open var preferredContentSize: CGSize { get set }
189 |     @available(tvOS, unavailable)
190 |     open var preferredStatusBarStyle: UIStatusBarStyle { get }
    |              `- note: 'preferredStatusBarStyle' has been explicitly marked unavailable here
191 |     @available(tvOS, unavailable)
192 |     open var prefersStatusBarHidden: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:50: error: 'UIStatusBarStyle' is unavailable in tvOS
22 |     public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
23 |
24 |     public override var preferredStatusBarStyle: UIStatusBarStyle {
   |                                                  `- error: 'UIStatusBarStyle' is unavailable in tvOS
25 |         return statusBarStyle
26 |     }
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIStatusBarStyle : Int, @unchecked Sendable {
   |             `- note: 'UIStatusBarStyle' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:73: error: 'UIInterfaceOrientation' is unavailable in tvOS
30 |     }
31 |
32 |     public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
   |                                                                         `- error: 'UIInterfaceOrientation' is unavailable in tvOS
33 |         super.willAnimateRotation(to: toInterfaceOrientation, duration: duration)
34 |
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 1 | @available(tvOS, unavailable)
 2 | public enum UIInterfaceOrientation : Int, @unchecked Sendable {
   |             `- note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
 3 |     public init?(rawValue: Int)
 4 |     public var rawValue: Int { get }
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:26: error: cannot override 'willAnimateRotation' which has been marked unavailable
30 |     }
31 |
32 |     public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
   |                          |- error: cannot override 'willAnimateRotation' which has been marked unavailable
   |                          `- note: remove 'override' modifier to declare a new 'willAnimateRotation'
33 |         super.willAnimateRotation(to: toInterfaceOrientation, duration: duration)
34 |
UIKit.UIViewController:34:15: note: 'willAnimateRotation(to:duration:)' has been explicitly marked unavailable here
32 |     open func didRotateFromInterfaceOrientation(_ fromInterfaceOrientation: UIInterfaceOrientation)
33 |     @available(tvOS, unavailable)
34 |     open func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval)
   |               `- note: 'willAnimateRotation(to:duration:)' has been explicitly marked unavailable here
35 |     @available(swift, obsoleted: 3, renamed: "willAnimateRotation(to:duration:)")
36 |     @available(tvOS, unavailable)
SwiftCompile normal arm64 Compiling\ CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.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/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastConfig.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CRToastWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.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/CRToastSwift/CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.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/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
    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/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.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 -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 -profile-generate -profile-coverage-mapping -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 -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_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/CRToastSwift.build/Debug-appletvos/CRToastSwift.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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -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/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-unit-output-path /CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CRToastSwift' from project 'CRToastSwift')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
(1 failure)
BUILD FAILURE 6.0 tvOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.