Build Information
Failed to build CRToastSwift, reference master (570435
), with Swift 6.0 for tvOS using Xcode 16.0 on 31 Oct 2024 12:39:42 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CRToastSwift -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
nonisolated(unsafe)
/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
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: note: annotate 'swipeLeft' with '@MainActor' if property should only be accessed from the main actor
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
nonisolated(unsafe)
/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
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: note: annotate 'swipeDown' with '@MainActor' if property should only be accessed from the main actor
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
nonisolated(unsafe)
/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
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: note: annotate 'swipeRight' with '@MainActor' if property should only be accessed from the main actor
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
nonisolated(unsafe)
/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
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: note: annotate 'tapOnce' with '@MainActor' if property should only be accessed from the main actor
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
nonisolated(unsafe)
/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
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: note: annotate 'tapTwice' with '@MainActor' if property should only be accessed from the main actor
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
nonisolated(unsafe)
/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
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: note: annotate 'twoFingerTapOnce' with '@MainActor' if property should only be accessed from the main actor
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
nonisolated(unsafe)
/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
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: note: annotate 'twoFingerTapTwice' with '@MainActor' if property should only be accessed from the main actor
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
nonisolated(unsafe)
/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
public static let swipe:CRToastInteractionType = [.swipeUp,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: note: annotate 'swipe' with '@MainActor' if property should only be accessed from the main actor
public static let swipe:CRToastInteractionType = [.swipeUp,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipe:CRToastInteractionType = [.swipeUp,
^
nonisolated(unsafe)
/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
public static let tap:CRToastInteractionType = [.tapOnce,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: note: annotate 'tap' with '@MainActor' if property should only be accessed from the main actor
public static let tap:CRToastInteractionType = [.tapOnce,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tap:CRToastInteractionType = [.tapOnce,
^
nonisolated(unsafe)
/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
public static let all:CRToastInteractionType = [.swipe,.tap]
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
public static let all:CRToastInteractionType = [.swipe,.tap]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all:CRToastInteractionType = [.swipe,.tap]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:434:32: error: 'UIStatusBarStyle' is unavailable in tvOS
public var statusBarStyle :UIStatusBarStyle = .default
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:489:25: error: 'UIStatusBarStyle' is unavailable in tvOS
.statusBarStyle:UIStatusBarStyle.self,
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: warning: static property '_default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _default : CROptions? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: convert '_default' to a 'let' constant to make 'Sendable' shared state immutable
private static var _default : CROptions? = nil
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: annotate '_default' with '@MainActor' if property should only be accessed from the main actor
private static var _default : CROptions? = nil
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _default : CROptions? = nil
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:803:31: error: 'UIStatusBarStyle' is unavailable in tvOS
public var statusBarStyle:UIStatusBarStyle { return options.statusBarStyle }
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:989:34: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetDeviceOrientation() -> UIInterfaceOrientation {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:994:56: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetStatusBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:998:55: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetStatusBarWidthForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1039:60: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetNavigationBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1054:112: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetNotificationViewHeightForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1069:107: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRNotificationViewSizeForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGSize {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1096:63: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetNotificationContainerFrame(_ statusBarOrientation : UIInterfaceOrientation, _ notificationSize : CGSize) -> CGRect {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/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
static let manager = CRToastManager()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:14:14: note: class 'CRToastManager' does not conform to the 'Sendable' protocol
public class CRToastManager : NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: annotate 'manager' with '@MainActor' if property should only be accessed from the main actor
static let manager = CRToastManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let manager = CRToastManager()
^
nonisolated(unsafe)
/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
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
Foundation.NSString:1:12: note: class 'NSString' does not conform to the 'Sendable' protocol
open class NSString : NSObject, NSCopying, NSMutableCopying, NSSecureCoding {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: annotate 'kCRToastManagerCollisionBoundaryIdentifier' with '@MainActor' if property should only be accessed from the main actor
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
nonisolated(unsafe)
/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
let iOS9 = floor(NSFoundationVersionNumber) >= floor(NSFoundationVersionNumber_iOS_9_0)
^
Foundation.NSFoundationVersionNumber:1:12: note: var declared here
public var NSFoundationVersionNumber: Double
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:15:18: error: 'setNeedsStatusBarAppearanceUpdate()' is unavailable in tvOS
self.setNeedsStatusBarAppearanceUpdate()
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UIKit.UIViewController:198:26: note: 'setNeedsStatusBarAppearanceUpdate()' has been explicitly marked unavailable here
@MainActor open func setNeedsStatusBarAppearanceUpdate()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:13:33: error: 'UIStatusBarStyle' is unavailable in tvOS
public var statusBarStyle : UIStatusBarStyle = .default {
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: error: cannot override 'shouldAutorotate' which has been marked unavailable
public override var shouldAutorotate: Bool { return autorotate }
^
UIKit.UIViewController:10:14: note: 'shouldAutorotate' has been explicitly marked unavailable here
open var shouldAutorotate: Bool { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: note: remove 'override' modifier to declare a new 'shouldAutorotate'
public override var shouldAutorotate: Bool { return autorotate }
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: error: cannot override 'prefersStatusBarHidden' which has been marked unavailable
public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
^
UIKit.UIViewController:194:14: note: 'prefersStatusBarHidden' has been explicitly marked unavailable here
open var prefersStatusBarHidden: Bool { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: note: remove 'override' modifier to declare a new 'prefersStatusBarHidden'
public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:25: error: cannot override 'preferredStatusBarStyle' which has been marked unavailable
public override var preferredStatusBarStyle: UIStatusBarStyle {
^
UIKit.UIViewController:192:14: note: 'preferredStatusBarStyle' has been explicitly marked unavailable here
open var preferredStatusBarStyle: UIStatusBarStyle { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:25: note: remove 'override' modifier to declare a new 'preferredStatusBarStyle'
public override var preferredStatusBarStyle: UIStatusBarStyle {
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:50: error: 'UIStatusBarStyle' is unavailable in tvOS
public override var preferredStatusBarStyle: UIStatusBarStyle {
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:73: error: 'UIInterfaceOrientation' is unavailable in tvOS
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:26: error: cannot override 'willAnimateRotation' which has been marked unavailable
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
^
UIKit.UIViewController:34:15: note: 'willAnimateRotation(to:duration:)' has been explicitly marked unavailable here
open func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:26: note: remove 'override' modifier to declare a new 'willAnimateRotation'
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
~~~~~~~~~ ^
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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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\ 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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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\ 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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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
** BUILD FAILED **
The following build commands failed:
EmitSwiftModule normal arm64 (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftEmitModule normal arm64 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
Building workspace spi-builder-workspace with scheme CRToastSwift
(3 failures)
Command line invocation:
/Applications/Xcode-16.1.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
IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
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
ClangStatCache /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache
SwiftDriver CRToastSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name 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 -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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
EmitSwiftModule normal arm64 (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: note: annotate 'swipeUp' with '@MainActor' if property should only be accessed from the main actor
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
nonisolated(unsafe)
/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
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: note: annotate 'swipeLeft' with '@MainActor' if property should only be accessed from the main actor
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
nonisolated(unsafe)
/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
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: note: annotate 'swipeDown' with '@MainActor' if property should only be accessed from the main actor
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
nonisolated(unsafe)
/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
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: note: annotate 'swipeRight' with '@MainActor' if property should only be accessed from the main actor
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
nonisolated(unsafe)
/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
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: note: annotate 'tapOnce' with '@MainActor' if property should only be accessed from the main actor
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
nonisolated(unsafe)
/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
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: note: annotate 'tapTwice' with '@MainActor' if property should only be accessed from the main actor
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
nonisolated(unsafe)
/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
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: note: annotate 'twoFingerTapOnce' with '@MainActor' if property should only be accessed from the main actor
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
nonisolated(unsafe)
/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
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: note: annotate 'twoFingerTapTwice' with '@MainActor' if property should only be accessed from the main actor
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
nonisolated(unsafe)
/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
public static let swipe:CRToastInteractionType = [.swipeUp,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: note: annotate 'swipe' with '@MainActor' if property should only be accessed from the main actor
public static let swipe:CRToastInteractionType = [.swipeUp,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipe:CRToastInteractionType = [.swipeUp,
^
nonisolated(unsafe)
/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
public static let tap:CRToastInteractionType = [.tapOnce,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: note: annotate 'tap' with '@MainActor' if property should only be accessed from the main actor
public static let tap:CRToastInteractionType = [.tapOnce,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tap:CRToastInteractionType = [.tapOnce,
^
nonisolated(unsafe)
/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
public static let all:CRToastInteractionType = [.swipe,.tap]
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
public static let all:CRToastInteractionType = [.swipe,.tap]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all:CRToastInteractionType = [.swipe,.tap]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:434:32: error: 'UIStatusBarStyle' is unavailable in tvOS
public var statusBarStyle :UIStatusBarStyle = .default
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:489:25: error: 'UIStatusBarStyle' is unavailable in tvOS
.statusBarStyle:UIStatusBarStyle.self,
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: warning: static property '_default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _default : CROptions? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: convert '_default' to a 'let' constant to make 'Sendable' shared state immutable
private static var _default : CROptions? = nil
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: annotate '_default' with '@MainActor' if property should only be accessed from the main actor
private static var _default : CROptions? = nil
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _default : CROptions? = nil
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:803:31: error: 'UIStatusBarStyle' is unavailable in tvOS
public var statusBarStyle:UIStatusBarStyle { return options.statusBarStyle }
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:989:34: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetDeviceOrientation() -> UIInterfaceOrientation {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:994:56: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetStatusBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:998:55: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetStatusBarWidthForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1039:60: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetNavigationBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1054:112: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetNotificationViewHeightForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1069:107: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRNotificationViewSizeForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGSize {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1096:63: error: 'UIInterfaceOrientation' is unavailable in tvOS
func CRGetNotificationContainerFrame(_ statusBarOrientation : UIInterfaceOrientation, _ notificationSize : CGSize) -> CGRect {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/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
static let manager = CRToastManager()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:14:14: note: class 'CRToastManager' does not conform to the 'Sendable' protocol
public class CRToastManager : NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: annotate 'manager' with '@MainActor' if property should only be accessed from the main actor
static let manager = CRToastManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let manager = CRToastManager()
^
nonisolated(unsafe)
/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
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
Foundation.NSString:1:12: note: class 'NSString' does not conform to the 'Sendable' protocol
open class NSString : NSObject, NSCopying, NSMutableCopying, NSSecureCoding {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: annotate 'kCRToastManagerCollisionBoundaryIdentifier' with '@MainActor' if property should only be accessed from the main actor
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
nonisolated(unsafe)
/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
let iOS9 = floor(NSFoundationVersionNumber) >= floor(NSFoundationVersionNumber_iOS_9_0)
^
Foundation.NSFoundationVersionNumber:1:12: note: var declared here
public var NSFoundationVersionNumber: Double
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:15:18: error: 'setNeedsStatusBarAppearanceUpdate()' is unavailable in tvOS
self.setNeedsStatusBarAppearanceUpdate()
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UIKit.UIViewController:198:26: note: 'setNeedsStatusBarAppearanceUpdate()' has been explicitly marked unavailable here
@MainActor open func setNeedsStatusBarAppearanceUpdate()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:13:33: error: 'UIStatusBarStyle' is unavailable in tvOS
public var statusBarStyle : UIStatusBarStyle = .default {
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: error: cannot override 'shouldAutorotate' which has been marked unavailable
public override var shouldAutorotate: Bool { return autorotate }
^
UIKit.UIViewController:10:14: note: 'shouldAutorotate' has been explicitly marked unavailable here
open var shouldAutorotate: Bool { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: note: remove 'override' modifier to declare a new 'shouldAutorotate'
public override var shouldAutorotate: Bool { return autorotate }
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: error: cannot override 'prefersStatusBarHidden' which has been marked unavailable
public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
^
UIKit.UIViewController:194:14: note: 'prefersStatusBarHidden' has been explicitly marked unavailable here
open var prefersStatusBarHidden: Bool { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: note: remove 'override' modifier to declare a new 'prefersStatusBarHidden'
public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:25: error: cannot override 'preferredStatusBarStyle' which has been marked unavailable
public override var preferredStatusBarStyle: UIStatusBarStyle {
^
UIKit.UIViewController:192:14: note: 'preferredStatusBarStyle' has been explicitly marked unavailable here
open var preferredStatusBarStyle: UIStatusBarStyle { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:25: note: remove 'override' modifier to declare a new 'preferredStatusBarStyle'
public override var preferredStatusBarStyle: UIStatusBarStyle {
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:50: error: 'UIStatusBarStyle' is unavailable in tvOS
public override var preferredStatusBarStyle: UIStatusBarStyle {
^~~~~~~~~~~~~~~~
UIKit.UIStatusBarStyle:2:13: note: 'UIStatusBarStyle' has been explicitly marked unavailable here
public enum UIStatusBarStyle : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:73: error: 'UIInterfaceOrientation' is unavailable in tvOS
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
^~~~~~~~~~~~~~~~~~~~~~
UIKit.UIInterfaceOrientation:2:13: note: 'UIInterfaceOrientation' has been explicitly marked unavailable here
public enum UIInterfaceOrientation : Int, @unchecked Sendable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:26: error: cannot override 'willAnimateRotation' which has been marked unavailable
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
^
UIKit.UIViewController:34:15: note: 'willAnimateRotation(to:duration:)' has been explicitly marked unavailable here
open func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:26: note: remove 'override' modifier to declare a new 'willAnimateRotation'
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
~~~~~~~~~ ^
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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-appletvos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/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
** BUILD FAILED **
The following build commands failed:
EmitSwiftModule normal arm64 (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftEmitModule normal arm64 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
Building workspace spi-builder-workspace with scheme CRToastSwift
(3 failures)
BUILD FAILURE 6.0 tvOS