The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of BigUIPaging, reference master (d546c8), with Swift 6.0 for macOS (Xcode) using Xcode 16.0 on 14 Sep 2024 17:52:45 UTC.

Swift 6 data race errors: 20

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 platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/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/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: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)
SwiftCompile normal arm64 Compiling\ PageViewNavigationButton.swift,\ View+Inspect.swift,\ View+Measure.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 (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 /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-10 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationButton.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Inspect.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Measure.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationButton.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Inspect.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Measure.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/PageViewNavigationButton.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 /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-10 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationButton.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Inspect.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Measure.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationButton.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Inspect.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Measure.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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/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)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.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 /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-10 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationButton.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Inspect.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Measure.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationButton.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Inspect.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Measure.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift:97:30: warning: call to main actor-isolated instance method '_firstValue(labelled:children:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        guard let provider = _firstValue(labelled: "base") else {
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift:68:10: note: calls to instance method '_firstValue(labelled:children:)' from outside of its actor context are implicitly asynchronous
    func _firstValue(labelled label: String, children: Mirror.Children? = nil) -> Any? {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift:96:10: note: add '@MainActor' to make instance method '_systemName()' part of global actor 'MainActor'
    func _systemName() -> String? {
         ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Measure.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 /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/View/PageViewNavigationButton.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/Utils/View+Inspect.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-10 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationButton.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Inspect.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Measure.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationButton.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Inspect.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/View+Measure.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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\ PageIndicator+Environment.swift,\ PageIndicator+iOS.swift,\ PageIndicator.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 (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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageIndicator+Environment.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+iOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+Environment.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+iOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator.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/PageIndicator/PageIndicator+Environment.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageIndicator+Environment.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+iOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+Environment.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+iOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageIndicator+Environment.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+iOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+Environment.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+iOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator.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/PageIndicator/PageIndicator.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+Environment.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageIndicator/PageIndicator+iOS.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageIndicator+Environment.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+iOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+Environment.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator+iOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageIndicator.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ PlatformPageView+iOS.swift,\ PlatformPageView+macOS.swift,\ PlatformPageView.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 (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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+iOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+macOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+iOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+macOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView.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/Platform/PlatformPageView+iOS.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+iOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+macOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+iOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+macOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView.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/Platform/PlatformPageView+macOS.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+iOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+macOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+iOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+macOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:138:41: warning: call to main actor-isolated initializer 'init(rootView:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let view = PlatformPageView.HostingView(rootView: parent.content(value))
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:232:47: note: calls to initializer 'init(rootView:)' from outside of its actor context are implicitly asynchronous
    class HostingView: NSHostingView<Content> {
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:134:14: note: add '@MainActor' to make instance method 'makeView(for:)' part of global actor 'MainActor'
        func makeView(for value: SelectionValue) -> NSView {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:145:54: warning: main actor-isolated property 'arrangedObjects' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            guard let currentValues = pageController.arrangedObjects as? [SelectionValue] else {
                                                     ^
AppKit.NSPageController:6:25: note: property declared here
    @MainActor open var arrangedObjects: [Any] { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:144:14: note: add '@MainActor' to make instance method 'flushViewCache(in:)' part of global actor 'MainActor'
        func flushViewCache(in pageController: NSPageController) {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:159:50: warning: main actor-isolated property 'selectedViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            guard let container = pageController.selectedViewController as? PlatformPageView.ContainerViewController else {
                                                 ^
AppKit.NSPageController:4:14: note: property declared here
    open var selectedViewController: NSViewController? { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:158:14: note: add '@MainActor' to make instance method 'selectedValue(in:)' part of global actor 'MainActor'
        func selectedValue(in pageController: NSPageController) -> SelectionValue? {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:162:30: warning: main actor-isolated property 'representedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            return container.representedValue
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:207:13: note: property declared here
        var representedValue: SelectionValue? {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:158:14: note: add '@MainActor' to make instance method 'selectedValue(in:)' part of global actor 'MainActor'
        func selectedValue(in pageController: NSPageController) -> SelectionValue? {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:172:28: warning: main actor-isolated property 'arrangedObjects' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            pageController.arrangedObjects = arrangedObjects
                           ^
AppKit.NSPageController:6:25: note: mutation of this property is only permitted within the actor
    @MainActor open var arrangedObjects: [Any] { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:166:14: note: add '@MainActor' to make instance method 'go(to:in:animated:)' part of global actor 'MainActor'
        func go(
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:175:47: warning: main actor-isolated property 'selectedIndex' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    pageController.animator().selectedIndex = selectedIndex
                                              ^
AppKit.NSPageController:7:25: note: mutation of this property is only permitted within the actor
    @MainActor open var selectedIndex: Int { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:175:36: warning: call to main actor-isolated instance method 'animator()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    pageController.animator().selectedIndex = selectedIndex
                                   ^
AppKit.NSPageController:21:15: note: calls to instance method 'animator()' from outside of its actor context are implicitly asynchronous
    open func animator() -> Self
              ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:177:36: warning: call to main actor-isolated instance method 'completeTransition()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    pageController.completeTransition()
                                   ^
AppKit.NSPageController:11:26: note: calls to instance method 'completeTransition()' from outside of its actor context are implicitly asynchronous
    @MainActor open func completeTransition()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:180:32: warning: main actor-isolated property 'selectedIndex' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                pageController.selectedIndex = selectedIndex
                               ^
AppKit.NSPageController:7:25: note: mutation of this property is only permitted within the actor
    @MainActor open var selectedIndex: Int { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:166:14: note: add '@MainActor' to make instance method 'go(to:in:animated:)' part of global actor 'MainActor'
        func go(
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift:138:41: warning: sending task-isolated value of type 'Content' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
            let view = PlatformPageView.HostingView(rootView: parent.content(value))
                       ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+iOS.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/BigUIPaging/Implementations/PageView/Platform/PlatformPageView+macOS.swift -primary-file /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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+iOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+macOS.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+iOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView+macOS.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PlatformPageView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for BigUIPaging (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftCompile normal arm64 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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageViewBasicExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewForEachExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationStackExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewBasicExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewForEachExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationStackExample.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/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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageViewBasicExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewForEachExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationStackExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewBasicExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewForEachExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationStackExample.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/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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageViewBasicExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewForEachExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationStackExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewBasicExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewForEachExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationStackExample.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/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/BigUIPaging.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/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/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/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name BigUIPaging -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.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/BigUIPaging.build/Objects-normal/arm64/PageViewBasicExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewForEachExample.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationStackExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewBasicExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewForEachExample.o -index-unit-output-path /BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/PageViewNavigationStackExample.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling HistoryStackPageViewStyle.swift, PlainPageViewStyle.swift, PlatformPageViewStyle.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftDriver\ Compilation\ Requirements BigUIPaging normal arm64 com.apple.xcode.tools.swift.compiler (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BigUIPaging -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -target arm64-apple-macos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling PageViewNavigationButton.swift, View+Inspect.swift, View+Measure.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/BigUIPaging-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging-Swift.h (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/BigUIPaging-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.swiftmodule (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.swiftdoc (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.abi.json (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.swiftsourceinfo (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling PageViewBasicExample.swift, PageViewForEachExample.swift, PageViewNavigationStackExample.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftDriverJobDiscovery normal arm64 Compiling ScrollPageViewStyle.swift, PageViewDirection.swift, PageViewNavigateAction.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftDriverJobDiscovery normal arm64 Compiling BookPageViewStyle.swift, BookStackPageViewStyle.swift, CardDeckPageViewStyle.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftDriverJobDiscovery normal arm64 Compiling PageIndicator+Environment.swift, PageIndicator+iOS.swift, PageIndicator.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftDriverJobDiscovery normal arm64 Compiling PlatformPageView+iOS.swift, PlatformPageView+macOS.swift, PlatformPageView.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftDriverJobDiscovery normal arm64 Compiling CardDeckExample.swift, CustomPageViewExample.swift, ExampleGridToPageView.swift, PageIndicatorExample.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftDriverJobDiscovery normal arm64 Compiling PageView+Preferences.swift, PageView.swift, PageViewEnvironmentModifier.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftDriverJobDiscovery normal arm64 Compiling PageViewStyle.swift, PageViewStyleConfiguration.swift, PageView+Environment.swift (in target 'BigUIPaging' from project 'BigUIPaging')
SwiftDriver\ Compilation BigUIPaging normal arm64 com.apple.xcode.tools.swift.compiler (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BigUIPaging -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -target arm64-apple-macos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.0-24A330-dd2f76c5f4fc3be7a4c779844aac8496.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.o normal (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos13.0 -r -isysroot /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BigUIPaging.build/Debug/BigUIPaging.build/Objects-normal/arm64/BigUIPaging_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.o (in target 'BigUIPaging' from project 'BigUIPaging')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/BigUIPaging.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "BigUIPaging",
  "name" : "BigUIPaging",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    }
  ],
  "products" : [
    {
      "name" : "BigUIPaging",
      "targets" : [
        "BigUIPaging"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BigUIPagingTests",
      "module_type" : "SwiftTarget",
      "name" : "BigUIPagingTests",
      "path" : "Tests/BigUIPagingTests",
      "sources" : [
        "BigUIPagingTests.swift"
      ],
      "target_dependencies" : [
        "BigUIPaging"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BigUIPaging",
      "module_type" : "SwiftTarget",
      "name" : "BigUIPaging",
      "path" : "Sources/BigUIPaging",
      "product_memberships" : [
        "BigUIPaging"
      ],
      "sources" : [
        "Examples/CardDeckExample.swift",
        "Examples/CustomPageViewExample.swift",
        "Examples/ExampleGridToPageView.swift",
        "Examples/PageIndicatorExample.swift",
        "Examples/PageViewBasicExample.swift",
        "Examples/PageViewForEachExample.swift",
        "Examples/PageViewNavigationStackExample.swift",
        "Implementations/PageIndicator/PageIndicator+Environment.swift",
        "Implementations/PageIndicator/PageIndicator+iOS.swift",
        "Implementations/PageIndicator/PageIndicator.swift",
        "Implementations/PageView/Platform/PlatformPageView+iOS.swift",
        "Implementations/PageView/Platform/PlatformPageView+macOS.swift",
        "Implementations/PageView/Platform/PlatformPageView.swift",
        "Implementations/PageView/Styles/BookPageViewStyle.swift",
        "Implementations/PageView/Styles/BookStackPageViewStyle.swift",
        "Implementations/PageView/Styles/CardDeckPageViewStyle.swift",
        "Implementations/PageView/Styles/HistoryStackPageViewStyle.swift",
        "Implementations/PageView/Styles/PlainPageViewStyle.swift",
        "Implementations/PageView/Styles/PlatformPageViewStyle.swift",
        "Implementations/PageView/Styles/ScrollPageViewStyle.swift",
        "Implementations/PageView/Types/PageViewDirection.swift",
        "Implementations/PageView/Types/PageViewNavigateAction.swift",
        "Implementations/PageView/Types/PageViewStyle.swift",
        "Implementations/PageView/Types/PageViewStyleConfiguration.swift",
        "Implementations/PageView/View/PageView+Environment.swift",
        "Implementations/PageView/View/PageView+Preferences.swift",
        "Implementations/PageView/View/PageView.swift",
        "Implementations/PageView/View/PageViewEnvironmentModifier.swift",
        "Implementations/PageView/View/PageViewNavigationButton.swift",
        "Implementations/Utils/View+Inspect.swift",
        "Implementations/Utils/View+Measure.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.