Build Information
Successful build of Subviews, reference main (5449b8
), with Swift 6.0 for tvOS using Xcode 16.2 on 14 Apr 2025 22:06:45 UTC.
Swift 6 data race errors: 42
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Subviews -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:155:35: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func equal<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:155:63: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func equal<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:30: note: 'Axis' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:159:48: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func greaterThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:159:76: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func greaterThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:30: note: 'Axis' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:163:45: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func lessThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:163:73: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func lessThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:30: note: 'Axis' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:198:46: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult internal func spacing<Type: AnchorType.Edge>(_ spacing: CGFloat, to anchor: Anchor<Type, Axis>, relation: NSLayoutConstraint.Relation = .equal) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: warning: static property '_stack' 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 _stack = [Constraints]() // this is what enabled constraint auto-installing
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: note: convert '_stack' to a 'let' constant to make 'Sendable' shared state immutable
private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: note: annotate '_stack' with '@MainActor' if property should only be accessed from the main actor
private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:19:23: warning: main actor-isolated static property 'defaultSuperview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
public static var defaultSuperview: (UIView) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:18:19: note: add '@preconcurrency' to the 'SuperviewContainer' conformance to defer isolation checking to run time
extension UIView: SuperviewContainer {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:4:16: note: 'defaultSuperview' declared here
static var defaultSuperview: (Self) -> UIView { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: warning: static property 'remove' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let remove = SubviewReplaceBehavior { (_) in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: note: annotate 'remove' with '@MainActor' if property should only be accessed from the main actor
public static let remove = SubviewReplaceBehavior { (_) in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let remove = SubviewReplaceBehavior { (_) in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:399:23: warning: static property 'overlay' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let overlay = SubviewReplaceBehavior { (_) in } old: { _ in }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:399:23: note: annotate 'overlay' with '@MainActor' if property should only be accessed from the main actor
public static let overlay = SubviewReplaceBehavior { (_) in } old: { _ in }
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:399:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let overlay = SubviewReplaceBehavior { (_) in } old: { _ in }
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let remove = SubviewReplaceBehavior { (_) in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: warning: static property 'hide' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hide = SubviewReplaceBehavior { newView in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: note: annotate 'hide' with '@MainActor' if property should only be accessed from the main actor
public static let hide = SubviewReplaceBehavior { newView in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hide = SubviewReplaceBehavior { newView in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let hide = SubviewReplaceBehavior { newView in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: warning: static property '_removeAndFadeIn' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: note: annotate '_removeAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: warning: static property '_fadeOutAndFadeIn' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: note: annotate '_fadeOutAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: warning: static property '_crossFade' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let _crossFade = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: note: annotate '_crossFade' with '@MainActor' if property should only be accessed from the main actor
public static let _crossFade = SubviewReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let _crossFade = SubviewReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let _crossFade = SubviewReplaceBehavior { newVc in
^
UIKit.UIView:12:15: warning: main actor-isolated instance method 'addSubview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
open func addSubview(_ view: UIView)
^
UIKit.UIView:12:15: note: add 'nonisolated' to 'addSubview' to make this instance method not isolated to the actor
open func addSubview(_ view: UIView)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:7:19: note: add '@preconcurrency' to the 'ViewLayoutParent' conformance to defer isolation checking to run time
extension UIView: ViewLayoutParent { }
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:4:10: note: mark the protocol requirement 'addSubview' 'async' to allow actor-isolated conformances
func addSubview(_ view: UIView)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:22:16: warning: main actor-isolated property '_viewForLayout' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
public var _viewForLayout: UIView { self }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:21:19: note: add '@preconcurrency' to the 'ViewLayoutSupporting' conformance to defer isolation checking to run time
extension UIView: ViewLayoutSupporting {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:18:9: note: '_viewForLayout' declared here
var _viewForLayout: UIView { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:26:16: warning: main actor-isolated property '_viewForLayout' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
public var _viewForLayout: UIView { self.view }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:25:29: note: add '@preconcurrency' to the 'ViewLayoutSupporting' conformance to defer isolation checking to run time
extension UIViewController: ViewLayoutSupporting {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:18:9: note: '_viewForLayout' declared here
var _viewForLayout: UIView { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:324:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'VerticalInsets' may have shared mutable state; this is an error in the Swift 6 language mode
public static let zero = VerticalInsets(top: 0, bottom: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:311:15: note: consider making struct 'VerticalInsets' conform to the 'Sendable' protocol
public struct VerticalInsets: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:324:23: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
public static let zero = VerticalInsets(top: 0, bottom: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:324:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let zero = VerticalInsets(top: 0, bottom: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:340:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'HorizontalInsets' may have shared mutable state; this is an error in the Swift 6 language mode
public static let zero = HorizontalInsets(left: 0, right: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:327:15: note: consider making struct 'HorizontalInsets' conform to the 'Sendable' protocol
public struct HorizontalInsets: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:340:23: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
public static let zero = HorizontalInsets(left: 0, right: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:340:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let zero = HorizontalInsets(left: 0, right: 0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.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/Subviews/Internal/Align.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Align.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
UIKit.UIView:2:25: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
@MainActor open var superview: UIView? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:16:19: note: add '@preconcurrency' to the 'LayoutItem' conformance to defer isolation checking to run time
extension UIView: LayoutItem {}
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:13:9: note: 'superview' declared here
var superview: UIView? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:18:18: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
internal var superview: UIView? { owningView }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:17:26: note: add '@preconcurrency' to the 'LayoutItem' conformance to defer isolation checking to run time
extension UILayoutGuide: LayoutItem {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:13:9: note: 'superview' declared here
var superview: UIView? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:139:35: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func equal<Type: AnchorType.Alignment>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:143:48: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func greaterThanOrEqual<Type: AnchorType.Alignment>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:147:45: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func lessThanOrEqual<Type: AnchorType.Alignment>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:155:35: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func equal<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:155:63: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func equal<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:30: note: 'Axis' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:159:48: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func greaterThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:159:76: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func greaterThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:30: note: 'Axis' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:163:45: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func lessThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:163:73: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult func lessThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:30: note: 'Axis' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:198:46: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
@discardableResult internal func spacing<Type: AnchorType.Edge>(_ spacing: CGFloat, to anchor: Anchor<Type, Axis>, relation: NSLayoutConstraint.Relation = .equal) -> NSLayoutConstraint {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: warning: static property '_stack' 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 _stack = [Constraints]() // this is what enabled constraint auto-installing
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: note: convert '_stack' to a 'let' constant to make 'Sendable' shared state immutable
private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: note: annotate '_stack' with '@MainActor' if property should only be accessed from the main actor
private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:76:54: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
var margins: LayoutAnchors<UILayoutGuide> { base.layoutMarginsGuide.anchors }
^
UIKit.UIView:53:14: note: property declared here
open var layoutMarginsGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:77:55: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
var safeArea: LayoutAnchors<UILayoutGuide> { base.safeAreaLayoutGuide.anchors }
^
UIKit.UIView:57:14: note: property declared here
open var safeAreaLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:372:42: warning: call to main actor-isolated class method 'activate' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
if activate { NSLayoutConstraint.activate(constraints) }
^
UIKit.NSLayoutConstraint:32:32: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
@MainActor open class func activate(_ constraints: [NSLayoutConstraint])
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:379:29: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
(item1 as? UIView)?.translatesAutoresizingMaskIntoConstraints = false
^
UIKit.UIView:3:25: note: mutation of this property is only permitted within the actor
@MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:376:29: note: add '@MainActor' to make static method 'constrain(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' part of global actor 'MainActor'
fileprivate static func constrain(item item1: Any, attribute attr1: NSLayoutConstraint.Attribute, relatedBy relation: NSLayoutConstraint.Relation = .equal, toItem item2: Any? = nil, attribute attr2: NSLayoutConstraint.Attribute? = nil, multiplier: CGFloat = 1, constant: CGFloat = 0) -> NSLayoutConstraint {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: warning: call to main actor-isolated initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
^
UIKit.NSLayoutConstraint:9:24: note: calls to initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' from outside of its actor context are implicitly asynchronous
public convenience init(item view1: Any, attribute attr1: NSLayoutConstraint.Attribute, relatedBy relation: NSLayoutConstraint.Relation, toItem view2: Any?, attribute attr2: NSLayoutConstraint.Attribute, multiplier: CGFloat, constant c: CGFloat)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:376:29: note: add '@MainActor' to make static method 'constrain(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' part of global actor 'MainActor'
fileprivate static func constrain(item item1: Any, attribute attr1: NSLayoutConstraint.Attribute, relatedBy relation: NSLayoutConstraint.Relation = .equal, toItem item2: Any? = nil, attribute attr2: NSLayoutConstraint.Attribute? = nil, multiplier: CGFloat = 1, constant: CGFloat = 0) -> NSLayoutConstraint {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:405:24: warning: main actor-isolated property 'isActive' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
constraint.isActive = true
^
UIKit.NSLayoutConstraint:27:14: note: mutation of this property is only permitted within the actor
open var isActive: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:401:25: note: add '@MainActor' to make static method '_install' part of global actor 'MainActor'
private static func _install(_ constraint: NSLayoutConstraint) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:466:33: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
pin(to: item.superview!.safeAreaLayoutGuide, inset: inset)
^
UIKit.UIView:57:14: note: property declared here
open var safeAreaLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:465:38: note: add '@MainActor' to make instance method 'safeAreaPin(inset:)' part of global actor 'MainActor'
@discardableResult internal func safeAreaPin(inset: CGFloat = 0) -> NSLayoutConstraint {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:470:33: warning: main actor-isolated property 'readableContentGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
pin(to: item.superview!.readableContentGuide, inset: inset)
^
UIKit.UIView:55:14: note: property declared here
open var readableContentGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:469:38: note: add '@MainActor' to make instance method 'readableContentPin(inset:)' part of global actor 'MainActor'
@discardableResult internal func readableContentPin(inset: CGFloat = 0) -> NSLayoutConstraint {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:474:33: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
pin(to: item.superview!.layoutMarginsGuide, inset: inset)
^
UIKit.UIView:53:14: note: property declared here
open var layoutMarginsGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:473:38: note: add '@MainActor' to make instance method 'marginsPin(inset:)' part of global actor 'MainActor'
@discardableResult internal func marginsPin(inset: CGFloat = 0) -> NSLayoutConstraint {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:480:33: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
pin(to: item.superview!.safeAreaLayoutGuide, insets: insets, alignment: alignment)
^
UIKit.UIView:57:14: note: property declared here
open var safeAreaLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:479:38: note: add '@MainActor' to make instance method 'safeAreaPin(insets:alignment:)' part of global actor 'MainActor'
@discardableResult internal func safeAreaPin(insets: EdgeInsets = .zero, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:484:33: warning: main actor-isolated property 'readableContentGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
pin(to: item.superview!.readableContentGuide, insets: insets, alignment: alignment)
^
UIKit.UIView:55:14: note: property declared here
open var readableContentGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:483:38: note: add '@MainActor' to make instance method 'readableContentPin(insets:alignment:)' part of global actor 'MainActor'
@discardableResult internal func readableContentPin(insets: EdgeInsets = .zero, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:488:33: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
pin(to: item.superview!.layoutMarginsGuide, insets: insets, alignment: alignment)
^
UIKit.UIView:53:14: note: property declared here
open var layoutMarginsGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:487:38: note: add '@MainActor' to make instance method 'marginsPin(insets:alignment:)' part of global actor 'MainActor'
@discardableResult internal func marginsPin(insets: EdgeInsets = .zero, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:495:33: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
pin(to: item.superview!.safeAreaLayoutGuide, insets: insets, axis: axis, alignment: alignment)
^
UIKit.UIView:57:14: note: property declared here
open var safeAreaLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:494:38: note: add '@MainActor' to make instance method 'safeAreaPin(insets:axis:alignment:)' part of global actor 'MainActor'
@discardableResult internal func safeAreaPin(insets: EdgeInsets = .zero, axis: Axis?, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:500:33: warning: main actor-isolated property 'readableContentGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
pin(to: item.superview!.readableContentGuide, insets: insets, axis: axis, alignment: alignment)
^
UIKit.UIView:55:14: note: property declared here
open var readableContentGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:499:38: note: add '@MainActor' to make instance method 'readableContentPin(insets:axis:alignment:)' part of global actor 'MainActor'
@discardableResult internal func readableContentPin(insets: EdgeInsets = .zero, axis: Axis?, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:505:33: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
pin(to: item.superview!.layoutMarginsGuide, insets: insets, axis: axis, alignment: alignment)
^
UIKit.UIView:53:14: note: property declared here
open var layoutMarginsGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:504:38: note: add '@MainActor' to make instance method 'marginsPin(insets:axis:alignment:)' part of global actor 'MainActor'
@discardableResult internal func marginsPin(insets: EdgeInsets = .zero, axis: Axis?, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: warning: sending 'item1' risks causing data races; this is an error in the Swift 6 language mode
let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: note: sending task-isolated 'item1' to main actor-isolated initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' risks causing data races between main actor-isolated and task-isolated uses
let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: warning: sending 'item2' risks causing data races; this is an error in the Swift 6 language mode
let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: note: sending task-isolated 'item2' to main actor-isolated initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' risks causing data races between main actor-isolated and task-isolated uses
let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
^
SwiftCompile normal arm64 Compiling\ Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.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/Subviews/Stacks.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Stacks.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift:42:21: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let stack = Stack(frame: .zero)
^
UIKit.UIStackView:3:23: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(frame: CGRect)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift:45:19: warning: call to main actor-isolated instance method 'addArrangedSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
stack.addArrangedSubview(subview)
^
UIKit.UIStackView:7:26: note: calls to instance method 'addArrangedSubview' from outside of its actor context are implicitly asynchronous
@MainActor open func addArrangedSubview(_ view: UIView)
^
SwiftCompile normal arm64 Compiling\ Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.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/Subviews/Subview.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subview.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:19:23: warning: main actor-isolated static property 'defaultSuperview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
public static var defaultSuperview: (UIView) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:18:19: note: add '@preconcurrency' to the 'SuperviewContainer' conformance to defer isolation checking to run time
extension UIView: SuperviewContainer {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:4:16: note: 'defaultSuperview' declared here
static var defaultSuperview: (Self) -> UIView { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: warning: static property 'remove' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let remove = SubviewReplaceBehavior { (_) in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: note: annotate 'remove' with '@MainActor' if property should only be accessed from the main actor
public static let remove = SubviewReplaceBehavior { (_) in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let remove = SubviewReplaceBehavior { (_) in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:399:23: warning: static property 'overlay' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let overlay = SubviewReplaceBehavior { (_) in } old: { _ in }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:399:23: note: annotate 'overlay' with '@MainActor' if property should only be accessed from the main actor
public static let overlay = SubviewReplaceBehavior { (_) in } old: { _ in }
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:399:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let overlay = SubviewReplaceBehavior { (_) in } old: { _ in }
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let remove = SubviewReplaceBehavior { (_) in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: warning: static property 'hide' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hide = SubviewReplaceBehavior { newView in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: note: annotate 'hide' with '@MainActor' if property should only be accessed from the main actor
public static let hide = SubviewReplaceBehavior { newView in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hide = SubviewReplaceBehavior { newView in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let hide = SubviewReplaceBehavior { newView in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: warning: static property '_removeAndFadeIn' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: note: annotate '_removeAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: warning: static property '_fadeOutAndFadeIn' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: note: annotate '_fadeOutAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: warning: static property '_crossFade' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let _crossFade = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:390:15: note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
public struct SubviewReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: note: annotate '_crossFade' with '@MainActor' if property should only be accessed from the main actor
public static let _crossFade = SubviewReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let _crossFade = SubviewReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let _crossFade = SubviewReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:63:19: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
superview.addSubview(created)
^
UIKit.UIView:12:26: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
@MainActor open func addSubview(_ view: UIView)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:53:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
public func resolveEnclosing(_ enclosing: Any) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:287:19: warning: call to main actor-isolated instance method 'addArrangedSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
superview.addArrangedSubview(created)
^
UIKit.UIStackView:7:26: note: calls to instance method 'addArrangedSubview' from outside of its actor context are implicitly asynchronous
@MainActor open func addArrangedSubview(_ view: UIView)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:277:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
public func resolveEnclosing(_ enclosing: Any) {
^
@MainActor
SwiftCompile normal arm64 Compiling\ Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.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/Subviews/Enclosed.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Enclosed.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.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/Subviews/Child.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Child.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: warning: main actor-isolated static property 'defaultSuperview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
public static var defaultSuperview: (UIViewController) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:6:29: note: add '@preconcurrency' to the 'SuperviewContainer' conformance to defer isolation checking to run time
extension UIViewController: SuperviewContainer {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:4:16: note: 'defaultSuperview' declared here
static var defaultSuperview: (Self) -> UIView { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:305:23: warning: static property 'remove' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let remove = ChildReplaceBehavior { (_) in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:305:23: note: annotate 'remove' with '@MainActor' if property should only be accessed from the main actor
public static let remove = ChildReplaceBehavior { (_) in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:305:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let remove = ChildReplaceBehavior { (_) in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:303:23: warning: static property 'overlay' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let overlay = ChildReplaceBehavior { (_) in } old: { _ in }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:303:23: note: annotate 'overlay' with '@MainActor' if property should only be accessed from the main actor
public static let overlay = ChildReplaceBehavior { (_) in } old: { _ in }
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:303:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let overlay = ChildReplaceBehavior { (_) in } old: { _ in }
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:305:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let remove = ChildReplaceBehavior { (_) in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:313:23: warning: static property 'hide' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hide = ChildReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:313:23: note: annotate 'hide' with '@MainActor' if property should only be accessed from the main actor
public static let hide = ChildReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:313:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hide = ChildReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:313:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let hide = ChildReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:319:23: warning: static property '_removeAndFadeIn' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let _removeAndFadeIn = ChildReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:319:23: note: annotate '_removeAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
public static let _removeAndFadeIn = ChildReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:319:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let _removeAndFadeIn = ChildReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:319:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let _removeAndFadeIn = ChildReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:328:23: warning: static property '_fadeOutAndFadeIn' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let _fadeOutAndFadeIn = ChildReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:328:23: note: annotate '_fadeOutAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
public static let _fadeOutAndFadeIn = ChildReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:328:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let _fadeOutAndFadeIn = ChildReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:328:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let _fadeOutAndFadeIn = ChildReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: warning: static property '_crossFade' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
public static let _crossFade = ChildReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: note: annotate '_crossFade' with '@MainActor' if property should only be accessed from the main actor
public static let _crossFade = ChildReplaceBehavior { newVc in
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let _crossFade = ChildReplaceBehavior { newVc in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
public static let _crossFade = ChildReplaceBehavior { newVc in
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:61:19: warning: call to main actor-isolated instance method 'addChild' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
enclosing.addChild(created)
^
UIKit.UIViewController:8:26: note: calls to instance method 'addChild' from outside of its actor context are implicitly asynchronous
@MainActor open func addChild(_ childController: UIViewController)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:51:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
public func resolveEnclosing(_ enclosing: Any) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:62:19: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
superview.addSubview(created.view)
^
UIKit.UIView:12:26: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
@MainActor open func addSubview(_ view: UIView)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:51:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
public func resolveEnclosing(_ enclosing: Any) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:62:38: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
superview.addSubview(created.view)
^
UIKit.UIViewController:5:25: note: property declared here
@MainActor open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:51:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
public func resolveEnclosing(_ enclosing: Any) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:64:17: warning: call to main actor-isolated instance method 'didMove(toParent:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
created.didMove(toParent: enclosing)
^
UIKit.UIViewController:17:26: note: calls to instance method 'didMove(toParent:)' from outside of its actor context are implicitly asynchronous
@MainActor open func didMove(toParent parent: UIViewController?)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:51:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
public func resolveEnclosing(_ enclosing: Any) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:99:42: warning: main actor-isolated property '_viewForLayout' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
viewLayoutOptions.layout(val._viewForLayout)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:26:16: note: property declared here
public var _viewForLayout: UIView { self.view }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:156:42: warning: main actor-isolated property '_viewForLayout' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
viewLayoutOptions.layout(val._viewForLayout)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:26:16: note: property declared here
public var _viewForLayout: UIView { self.view }
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:210:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, viewLayoutOptions, configure)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
public static var defaultSuperview: (UIViewController) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:219:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, configure)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
public static var defaultSuperview: (UIViewController) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:236:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, viewLayoutOptions, { val,_ in configure(val) })
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
public static var defaultSuperview: (UIViewController) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:244:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, configure)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
public static var defaultSuperview: (UIViewController) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:256:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, viewLayoutOptions, configure)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
public static var defaultSuperview: (UIViewController) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:265:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, configure)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
public static var defaultSuperview: (UIViewController) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:282:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, viewLayoutOptions, { val,_ in configure(val) })
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
public static var defaultSuperview: (UIViewController) -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:290:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, configure)
^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
public static var defaultSuperview: (UIViewController) -> UIView {
^
SwiftCompile normal arm64 Compiling\ Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.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/Subviews/Extensions.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Extensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.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/Subviews/AutoParent.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoParent.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for Subviews (in target 'Subviews' from project 'Subviews')
SwiftCompile normal arm64 Compiling\ AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.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/Subviews/AutoSuperview.swift (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name appletvos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.o -index-unit-output-path /Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/AutoSuperview.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Creatable.swift (in target 'Subviews' from project 'Subviews')
SwiftDriver\ Compilation\ Requirements Subviews normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Subviews -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.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.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews-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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Subviews-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews-Swift.h (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Subviews-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.swiftmodule (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.swiftdoc (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.abi.json (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.swiftsourceinfo (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Enclosed.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Extensions.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling ViewLayoutOption.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling AutoParent.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling AutoSuperview.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Stacks.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Child.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Subview.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Align.swift (in target 'Subviews' from project 'Subviews')
SwiftDriver\ Compilation Subviews normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Subviews -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.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.2.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.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.2-22K152-c567c64d94d819cf552a158157711ecb.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews-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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_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/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.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/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.o normal (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.2.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-appletvos/Subviews.build/Objects-normal/arm64/Subviews_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.o (in target 'Subviews' from project 'Subviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Subviews.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Subviews",
"name" : "Subviews",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Subviews",
"targets" : [
"Subviews"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SubviewsTests",
"module_type" : "SwiftTarget",
"name" : "SubviewsTests",
"path" : "Tests/SubviewsTests",
"sources" : [
"SubviewsTests.swift"
],
"target_dependencies" : [
"Subviews"
],
"type" : "test"
},
{
"c99name" : "Subviews",
"module_type" : "SwiftTarget",
"name" : "Subviews",
"path" : "Sources/Subviews",
"product_memberships" : [
"Subviews"
],
"sources" : [
"AutoParent.swift",
"AutoSuperview.swift",
"Child.swift",
"Enclosed.swift",
"Extensions.swift",
"Internal/Align.swift",
"Internal/Creatable.swift",
"Stacks.swift",
"Subview.swift",
"ViewLayoutOption.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.