The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build BigUIPaging, reference 0.0.3 (40fa6e), with Swift 6.0 for watchOS using Xcode 16.0 on 14 Sep 2024 17:52:14 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Release.Candidate.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme BigUIPaging -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:4:15: note: consider making struct 'PageViewDirection' conform to the 'Sendable' protocol
public struct PageViewDirection: OptionSet {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:13:23: note: annotate 'forwards' with '@MainActor' if property should only be accessed from the main actor
    public static let forwards = PageViewDirection(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let forwards = PageViewDirection(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:16:23: warning: static property 'backwards' is not concurrency-safe because non-'Sendable' type 'PageViewDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let backwards = PageViewDirection(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:4:15: note: consider making struct 'PageViewDirection' conform to the 'Sendable' protocol
public struct PageViewDirection: OptionSet {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:16:23: note: annotate 'backwards' with '@MainActor' if property should only be accessed from the main actor
    public static let backwards = PageViewDirection(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let backwards = PageViewDirection(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift:31:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'PageViewNavigateAction' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default` = PageViewNavigateAction(id: nil) { _ in }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift:18:15: note: consider making struct 'PageViewNavigateAction' conform to the 'Sendable' protocol
public struct PageViewNavigateAction {
              ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift:31:16: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    static let `default` = PageViewNavigateAction(id: nil) { _ in }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift:31:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default` = PageViewNavigateAction(id: nil) { _ in }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:31:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: any PageViewStyle = PlainPageViewStyle()
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:31:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: any PageViewStyle = PlainPageViewStyle()
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:31:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: any PageViewStyle = PlainPageViewStyle()
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:31:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: any PageViewStyle = PlainPageViewStyle()
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:40:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Axis = .horizontal
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:40:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Axis = .horizontal
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:40:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Axis = .horizontal
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:40:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Axis = .horizontal
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:49:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Double? = nil
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:49:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Double? = nil
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:49:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Double? = nil
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:49:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Double? = nil
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:58:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Visibility = .automatic
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:58:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Visibility = .automatic
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:58:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Visibility = .automatic
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:58:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Visibility = .automatic
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:67:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: PageViewNavigateAction = .default
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:67:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: PageViewNavigateAction = .default
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:67:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: PageViewNavigateAction = .default
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:67:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: PageViewNavigateAction = .default
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:77:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue = PageViewDirection()
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:77:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue = PageViewDirection()
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:77:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue = PageViewDirection()
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:77:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue = PageViewDirection()
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: PageViewDirection = []
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:5:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: PageViewDirection = []
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:5:16: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    static var defaultValue: PageViewDirection = []
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:5:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: PageViewDirection = []
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: PageViewNavigateAction?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:14:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: PageViewNavigateAction?
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:14:16: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    static var defaultValue: PageViewNavigateAction?
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: PageViewNavigateAction?
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize? = nil
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift:27:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize? = nil
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift:27:16: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    static var defaultValue: CGSize? = nil
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift:27:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize? = nil
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ HistoryStackPageViewStyle.swift,\ PlainPageViewStyle.swift,\ PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-11 -target arm64-apple-watchos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/HistoryStackPageViewStyle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlainPageViewStyle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlatformPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/HistoryStackPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlainPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlatformPageViewStyle.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/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-11 -target arm64-apple-watchos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/HistoryStackPageViewStyle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlainPageViewStyle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlatformPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/HistoryStackPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlainPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlatformPageViewStyle.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/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-11 -target arm64-apple-watchos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/HistoryStackPageViewStyle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlainPageViewStyle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlatformPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/HistoryStackPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlainPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlatformPageViewStyle.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/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-11 -target arm64-apple-watchos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/HistoryStackPageViewStyle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlainPageViewStyle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlatformPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/HistoryStackPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlainPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PlatformPageViewStyle.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ BigUIPaging (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -target arm64_32-apple-watchos9.0 -enable-objc-interop -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging.abi.json
EmitSwiftModule normal arm64_32 (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -target arm64_32-apple-watchos9.0 -enable-objc-interop -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:43:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Color? = nil
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:43:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Color? = nil
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:43:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Color? = nil
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:43:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Color? = nil
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Color? = nil
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:52:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Color? = nil
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:52:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Color? = nil
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:52:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Color? = nil
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:61:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Bool = true
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:61:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Bool = true
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:61:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Bool = true
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:61:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Bool = true
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:70:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: PageIndicator.BackgroundStyle = .automatic
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:70:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: PageIndicator.BackgroundStyle = .automatic
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:70:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: PageIndicator.BackgroundStyle = .automatic
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:70:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: PageIndicator.BackgroundStyle = .automatic
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:79:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Visibility = .visible
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:79:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Visibility = .visible
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:79:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Visibility = .visible
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:79:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Visibility = .visible
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:88:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: TimeInterval? = nil
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:88:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: TimeInterval? = nil
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:88:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: TimeInterval? = nil
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift:88:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: TimeInterval? = nil
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift:7:28: error: cannot find type 'UIPageControl' in scope
    typealias UIViewType = UIPageControl
                           ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift:21:42: error: cannot find type 'UIPageControl' in scope
    func makeUIView(context: Context) -> UIPageControl {
                                         ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift:21:30: error: cannot find type 'Context' in scope
    func makeUIView(context: Context) -> UIPageControl {
                             ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift:53:34: error: cannot find type 'UIPageControl' in scope
    func updateUIView(_ control: UIPageControl, context: Context) {
                                 ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift:53:58: error: cannot find type 'Context' in scope
    func updateUIView(_ control: UIPageControl, context: Context) {
                                                         ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift:5:31: error: cannot find type 'UIViewRepresentable' in scope
struct PlatformPageIndicator: UIViewRepresentable {
                              ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift:95:47: error: cannot find type 'UIPageControl' in scope
        @objc func selectionChanged(_ sender: UIPageControl) {
                                              ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift:103:19: error: cannot find type 'UIPageControl' in scope
    var platform: UIPageControl.BackgroundStyle {
                  ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:5:29: error: cannot find type 'UIViewControllerRepresentable' in scope
extension PlatformPageView: UIViewControllerRepresentable {
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:7:45: error: cannot find type 'UIPageViewController' in scope
    public typealias UIViewControllerType = UIPageViewController
                                            ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:9:59: error: cannot find type 'UIPageViewController' in scope
    public func makeUIViewController(context: Context) -> UIPageViewController {
                                                          ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:9:47: error: cannot find type 'Context' in scope
    public func makeUIViewController(context: Context) -> UIPageViewController {
                                              ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:28:31: error: cannot find type 'UIPageViewController' in scope
        _ pageViewController: UIPageViewController,
                              ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:29:18: error: cannot find type 'Context' in scope
        context: Context
                 ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:49:34: error: cannot find type 'UIPageViewControllerDelegate' in scope
    class Coordinator: NSObject, UIPageViewControllerDelegate, UIPageViewControllerDataSource {
                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:49:64: error: cannot find type 'UIPageViewControllerDataSource' in scope
    class Coordinator: NSObject, UIPageViewControllerDelegate, UIPageViewControllerDataSource {
                                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:63:14: error: cannot find type 'UIViewController' in scope
        ) -> UIViewController? {
             ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:61:35: error: cannot find type 'UIPageViewController' in scope
            _ pageViewController: UIPageViewController,
                                  ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:62:50: error: cannot find type 'UIViewController' in scope
            viewControllerBefore viewController: UIViewController
                                                 ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:77:14: error: cannot find type 'UIViewController' in scope
        ) -> UIViewController? {
             ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:75:35: error: cannot find type 'UIPageViewController' in scope
            _ pageViewController: UIPageViewController,
                                  ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:76:49: error: cannot find type 'UIViewController' in scope
            viewControllerAfter viewController: UIViewController
                                                ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:91:35: error: cannot find type 'UIPageViewController' in scope
            _ pageViewController: UIPageViewController,
                                  ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:93:39: error: cannot find type 'UIViewController' in scope
            previousViewControllers: [UIViewController],
                                      ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:103:61: error: cannot find type 'UIViewController' in scope
        func makeViewController(_ value: SelectionValue) -> UIViewController {
                                                            ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:117:36: error: cannot find type 'UIPageViewController' in scope
            in pageViewController: UIPageViewController,
                                   ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:134:51: error: cannot find type 'UIPageViewController' in scope
        func selectedValue(in pageViewController: UIPageViewController) -> SelectionValue? {
                                                  ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:147:36: error: cannot find type 'UIViewController' in scope
    class ContainerViewController: UIViewController {
                                   ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:151:32: error: cannot find type 'UIViewController' in scope
        var hostingController: UIViewController?
                               ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:171:23: error: method does not override any method from its superclass
        override func viewWillAppear(_ animated: Bool) {
        ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:188:23: error: method does not override any method from its superclass
        override func viewWillLayoutSubviews() {
        ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:193:23: error: method does not override any method from its superclass
        override func viewDidDisappear(_ animated: Bool) {
        ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:203:37: error: cannot find type 'UIHostingController' in scope
    class ContentHostingController: UIHostingController<Content> {
                                    ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:206:44: error: cannot find type 'UINavigationController' in scope
        override var navigationController: UINavigationController? {
                                           ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:206:22: error: property does not override any property from its superclass
        override var navigationController: UINavigationController? {
        ~~~~~~~~     ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:222:73: error: cannot find type 'UIPageViewController' in scope
    func fixNavigationControllerContentScrollView(_ pageViewController: UIPageViewController) {
                                                                        ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:248:19: error: cannot find type 'UIPageViewController' in scope
    var platform: UIPageViewController.NavigationOrientation {
                  ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:261:19: error: cannot find type 'UIPageViewController' in scope
    var platform: UIPageViewController.TransitionStyle {
                  ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift:273:11: error: cannot find type 'UIView' in scope
extension UIView {
          ^~~~~~
/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift:172:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Double? = nil
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift:172:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Double? = nil
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift:172:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Double? = nil
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift:172:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Double? = nil
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift:181:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Bool = false
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift:181:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Bool = false
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift:181:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Bool = false
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift:181:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Bool = false
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:13:23: warning: static property 'forwards' is not concurrency-safe because non-'Sendable' type 'PageViewDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let forwards = PageViewDirection(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:4:15: note: consider making struct 'PageViewDirection' conform to the 'Sendable' protocol
public struct PageViewDirection: OptionSet {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:13:23: note: annotate 'forwards' with '@MainActor' if property should only be accessed from the main actor
    public static let forwards = PageViewDirection(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let forwards = PageViewDirection(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:16:23: warning: static property 'backwards' is not concurrency-safe because non-'Sendable' type 'PageViewDirection' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let backwards = PageViewDirection(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:4:15: note: consider making struct 'PageViewDirection' conform to the 'Sendable' protocol
public struct PageViewDirection: OptionSet {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:16:23: note: annotate 'backwards' with '@MainActor' if property should only be accessed from the main actor
    public static let backwards = PageViewDirection(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let backwards = PageViewDirection(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift:31:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'PageViewNavigateAction' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default` = PageViewNavigateAction(id: nil) { _ in }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift:18:15: note: consider making struct 'PageViewNavigateAction' conform to the 'Sendable' protocol
public struct PageViewNavigateAction {
              ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift:31:16: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    static let `default` = PageViewNavigateAction(id: nil) { _ in }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift:31:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default` = PageViewNavigateAction(id: nil) { _ in }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:31:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: any PageViewStyle = PlainPageViewStyle()
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:31:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: any PageViewStyle = PlainPageViewStyle()
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:31:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: any PageViewStyle = PlainPageViewStyle()
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:31:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: any PageViewStyle = PlainPageViewStyle()
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:40:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Axis = .horizontal
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:40:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Axis = .horizontal
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:40:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Axis = .horizontal
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:40:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Axis = .horizontal
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:49:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Double? = nil
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:49:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Double? = nil
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:49:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Double? = nil
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:49:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Double? = nil
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:58:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: Visibility = .automatic
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:58:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: Visibility = .automatic
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:58:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: Visibility = .automatic
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:58:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: Visibility = .automatic
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:67:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: PageViewNavigateAction = .default
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:67:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: PageViewNavigateAction = .default
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:67:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: PageViewNavigateAction = .default
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:67:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: PageViewNavigateAction = .default
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:77:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue = PageViewDirection()
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:77:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue = PageViewDirection()
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:77:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue = PageViewDirection()
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift:77:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue = PageViewDirection()
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: PageViewDirection = []
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:5:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: PageViewDirection = []
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:5:16: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    static var defaultValue: PageViewDirection = []
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:5:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: PageViewDirection = []
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: PageViewNavigateAction?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:14:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: PageViewNavigateAction?
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:14:16: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    static var defaultValue: PageViewNavigateAction?
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: PageViewNavigateAction?
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize? = nil
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift:27:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize? = nil
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift:27:16: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    static var defaultValue: CGSize? = nil
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift:27:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize? = nil
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ PageView+Preferences.swift,\ PageView.swift,\ PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-17 -target arm64-apple-watchos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView+Preferences.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewEnvironmentModifier.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView+Preferences.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewEnvironmentModifier.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/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-17 -target arm64-apple-watchos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView+Preferences.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewEnvironmentModifier.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView+Preferences.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewEnvironmentModifier.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/BigUIPaging/Implementations/PageView/View/PageView.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-17 -target arm64-apple-watchos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView+Preferences.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewEnvironmentModifier.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView+Preferences.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewEnvironmentModifier.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/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-17 -target arm64-apple-watchos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView+Preferences.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewEnvironmentModifier.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView+Preferences.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageView.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewEnvironmentModifier.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ PageViewBasicExample.swift,\ PageViewForEachExample.swift,\ PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/supplementaryOutputs-3 -target arm64_32-apple-watchos9.0 -enable-objc-interop -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewBasicExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewForEachExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewNavigationStackExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewBasicExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewForEachExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewNavigationStackExample.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/supplementaryOutputs-3 -target arm64_32-apple-watchos9.0 -enable-objc-interop -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewBasicExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewForEachExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewNavigationStackExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewBasicExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewForEachExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewNavigationStackExample.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/supplementaryOutputs-3 -target arm64_32-apple-watchos9.0 -enable-objc-interop -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewBasicExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewForEachExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewNavigationStackExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewBasicExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewForEachExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewNavigationStackExample.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/supplementaryOutputs-3 -target arm64_32-apple-watchos9.0 -enable-objc-interop -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewBasicExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewForEachExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewNavigationStackExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewBasicExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewForEachExample.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64_32/PageViewNavigationStackExample.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ ScrollPageViewStyle.swift,\ PageViewDirection.swift,\ PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CardDeckExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/CustomPageViewExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/ExampleGridToPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageIndicatorExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewBasicExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewForEachExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Examples/PageViewNavigationStackExample.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/BookStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/CardDeckPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/HistoryStackPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlainPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/PlatformPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewStyleConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView+Preferences.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageView.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewEnvironmentModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-13 -target arm64-apple-watchos9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.0.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/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.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.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.0-22R349-08b27d462ff455ae5da64a900d2db39e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.0 -target-sdk-name watchos11.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/ScrollPageViewStyle.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewDirection.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewNavigateAction.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/ScrollPageViewStyle.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewDirection.o -index-unit-output-path /BigUIPaging.build/Debug-watchos/BigUIPaging.build/Objects-normal/arm64/PageViewNavigateAction.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ BigUIPaging (in target 'BigUIPaging' from project 'BigUIPaging')
	EmitSwiftModule normal arm64 (in target 'BigUIPaging' from project 'BigUIPaging')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ BigUIPaging (in target 'BigUIPaging' from project 'BigUIPaging')
	EmitSwiftModule normal arm64_32 (in target 'BigUIPaging' from project 'BigUIPaging')
	SwiftCompile normal arm64 Compiling\ ScrollPageViewStyle.swift,\ PageViewDirection.swift,\ PageViewNavigateAction.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Styles/ScrollPageViewStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Types/PageViewNavigateAction.swift (in target 'BigUIPaging' from project 'BigUIPaging')
	Building workspace spi-builder-workspace with scheme BigUIPaging
(6 failures)
BUILD FAILURE 6.0 watchOS