Build Information
Successful build of swift-collections-benchmark, reference 0.0.3 (e8b88a
), with Swift 6.1 for watchOS using Xcode 16.3 on 27 Apr 2025 04:41:03 UTC.
Swift 6 data race errors: 36
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme swift-collections-benchmark-Package -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Size.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/TaskResults.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Tick.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:25:21: warning: static property 'second' is not concurrency-safe because non-'Sendable' type 'Time' may have shared mutable state; this is an error in the Swift 6 language mode
public static let second = Time(1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:15:15: note: consider making struct 'Time' conform to the 'Sendable' protocol
public struct Time {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:25:21: note: add '@MainActor' to make static property 'second' part of global actor 'MainActor'
public static let second = Time(1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:25:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let second = Time(1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:26:21: warning: static property 'millisecond' is not concurrency-safe because non-'Sendable' type 'Time' may have shared mutable state; this is an error in the Swift 6 language mode
public static let millisecond = Time(1e-3)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:15:15: note: consider making struct 'Time' conform to the 'Sendable' protocol
public struct Time {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:26:21: note: add '@MainActor' to make static property 'millisecond' part of global actor 'MainActor'
public static let millisecond = Time(1e-3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:26:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let millisecond = Time(1e-3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:27:21: warning: static property 'microsecond' is not concurrency-safe because non-'Sendable' type 'Time' may have shared mutable state; this is an error in the Swift 6 language mode
public static let microsecond = Time(1e-6)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:15:15: note: consider making struct 'Time' conform to the 'Sendable' protocol
public struct Time {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:27:21: note: add '@MainActor' to make static property 'microsecond' part of global actor 'MainActor'
public static let microsecond = Time(1e-6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:27:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let microsecond = Time(1e-6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:28:21: warning: static property 'nanosecond' is not concurrency-safe because non-'Sendable' type 'Time' may have shared mutable state; this is an error in the Swift 6 language mode
public static let nanosecond = Time(1e-9)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:15:15: note: consider making struct 'Time' conform to the 'Sendable' protocol
public struct Time {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:28:21: note: add '@MainActor' to make static property 'nanosecond' part of global actor 'MainActor'
public static let nanosecond = Time(1e-9)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:28:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let nanosecond = Time(1e-9)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:29:21: warning: static property 'picosecond' is not concurrency-safe because non-'Sendable' type 'Time' may have shared mutable state; this is an error in the Swift 6 language mode
public static let picosecond = Time(1e-12)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:15:15: note: consider making struct 'Time' conform to the 'Sendable' protocol
public struct Time {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:29:21: note: add '@MainActor' to make static property 'picosecond' part of global actor 'MainActor'
public static let picosecond = Time(1e-12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:29:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let picosecond = Time(1e-12)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:30:21: warning: static property 'femtosecond' is not concurrency-safe because non-'Sendable' type 'Time' may have shared mutable state; this is an error in the Swift 6 language mode
public static let femtosecond = Time(1e-15)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:15:15: note: consider making struct 'Time' conform to the 'Sendable' protocol
public struct Time {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:30:21: note: add '@MainActor' to make static property 'femtosecond' part of global actor 'MainActor'
public static let femtosecond = Time(1e-15)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:30:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let femtosecond = Time(1e-15)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:31:21: warning: static property 'attosecond' is not concurrency-safe because non-'Sendable' type 'Time' may have shared mutable state; this is an error in the Swift 6 language mode
public static let attosecond = Time(1e-18)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:15:15: note: consider making struct 'Time' conform to the 'Sendable' protocol
public struct Time {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:31:21: note: add '@MainActor' to make static property 'attosecond' part of global actor 'MainActor'
public static let attosecond = Time(1e-18)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:31:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let attosecond = Time(1e-18)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:32:21: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Time' may have shared mutable state; this is an error in the Swift 6 language mode
public static let zero = Time(0)
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:15:15: note: consider making struct 'Time' conform to the 'Sendable' protocol
public struct Time {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:32:21: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
public static let zero = Time(0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:32:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let zero = Time(0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:111:22: warning: static property '_scaleFromSuffix' is not concurrency-safe because non-'Sendable' type '[String : Time]' may have shared mutable state; this is an error in the Swift 6 language mode
private static let _scaleFromSuffix: [String: Time] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:15:15: note: consider making struct 'Time' conform to the 'Sendable' protocol
public struct Time {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:111:22: note: add '@MainActor' to make static property '_scaleFromSuffix' part of global actor 'MainActor'
private static let _scaleFromSuffix: [String: Time] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Time.swift:111:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let _scaleFromSuffix: [String: Time] = [
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling BenchmarkCLI+Library+Render.swift, BenchmarkCLI+Library+Run.swift, BenchmarkCLI+Library.swift, BenchmarkCLI+Render+Options.swift, BenchmarkCLI+Render.swift, BenchmarkCLI+Results+Compare.swift, BenchmarkCLI+Results+Delete.swift, BenchmarkCLI+Results+ListTasks.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 Compiling\ BenchmarkCLI+Results+Merge.swift,\ BenchmarkCLI+Results.swift,\ BenchmarkCLI+Run.swift,\ BenchmarkCLI+TaskSelection.swift,\ BenchmarkCLI.swift,\ _Document.swift,\ Band.swift,\ Chart+Options.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Results+Merge.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Results.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Run.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+TaskSelection.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/_Document.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Band.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Chart+Options.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Results+Merge.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Results.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Run.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+TaskSelection.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/_Document.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Band.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Chart+Options.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling Benchmark.swift, BenchmarkResults.swift, Task.swift, TaskID.swift, _ExecutionContext.swift, _TypeBox.swift, BenchmarkCLI+Info.swift, BenchmarkCLI+Library+List.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k Compiling\ BenchmarkCLI+Results+Merge.swift,\ BenchmarkCLI+Results.swift,\ BenchmarkCLI+Run.swift,\ BenchmarkCLI+TaskSelection.swift,\ BenchmarkCLI.swift,\ _Document.swift,\ Band.swift,\ Chart+Options.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Results+Merge.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Results.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Run.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+TaskSelection.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/_Document.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Band.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Chart+Options.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Results+Merge.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Results.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+Run.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI+TaskSelection.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/BenchmarkCLI.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/BenchmarkCLI/_Document.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Band.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Chart+Options.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Chart.swift, ChartScales.swift, ChartUtils.swift, Curve.swift, EdgeInsets.swift, Path.swift, Point.swift, Rectangle.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 Compiling\ Timer.swift,\ AnyTask.swift,\ Benchmark+ChartLibrary.swift,\ Benchmark+Error.swift,\ Benchmark+Event.swift,\ Benchmark+Links.swift,\ Benchmark+Main.swift,\ Benchmark+Options.swift,\ Benchmark+RunOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Timer.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/AnyTask.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+ChartLibrary.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Error.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Event.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Links.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Main.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Options.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+RunOptions.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Basics/Timer.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/AnyTask.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+ChartLibrary.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Error.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Event.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Links.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Main.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+Options.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Benchmark/Benchmark+RunOptions.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling BenchmarkCLI+Results+Merge.swift, BenchmarkCLI+Results.swift, BenchmarkCLI+Run.swift, BenchmarkCLI+TaskSelection.swift, BenchmarkCLI.swift, _Document.swift, Band.swift, Chart+Options.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k Compiling\ FilePath\ extensions.swift,\ ProjectInfo.swift,\ _MutableKeyValuePairs.swift,\ _Shims.swift,\ _SimpleOrderedDictionary.swift,\ _SimpleOrderedSet.swift,\ _SimpleSortedBag.swift,\ _SimpleSortedDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/FilePath\ extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/ProjectInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_MutableKeyValuePairs.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_Shims.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_SimpleOrderedDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_SimpleOrderedSet.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_SimpleSortedBag.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_SimpleSortedDictionary.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/FilePath\ extensions.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/ProjectInfo.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_MutableKeyValuePairs.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_Shims.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_SimpleOrderedDictionary.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_SimpleOrderedSet.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_SimpleSortedBag.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Utilities/_SimpleSortedDictionary.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Timer.swift, AnyTask.swift, Benchmark+ChartLibrary.swift, Benchmark+Error.swift, Benchmark+Event.swift, Benchmark+Links.swift, Benchmark+Main.swift, Benchmark+Options.swift, Benchmark+RunOptions.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 Compiling\ ImageFormat.swift,\ Renderer.swift,\ Shape.swift,\ Stroke.swift,\ Text.swift,\ CocoaRenderer.swift,\ CoreGraphics.swift,\ DefaultRenderer.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/ImageFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/Renderer.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/Shape.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/Stroke.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/Text.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Renderers/CocoaRenderer.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Renderers/CoreGraphics.swift /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Renderers/DefaultRenderer.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/ImageFormat.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/Renderer.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/Shape.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/Stroke.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Graphics/Text.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Renderers/CocoaRenderer.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Renderers/CoreGraphics.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CollectionsBenchmark/Charts/Renderers/DefaultRenderer.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling ImageFormat.swift, Renderer.swift, Shape.swift, Stroke.swift, Text.swift, CocoaRenderer.swift, CoreGraphics.swift, DefaultRenderer.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ArgumentParserToolInfo.o (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ArgumentParserToolInfo.o
SwiftDriverJobDiscovery normal armv7k Compiling Timer.swift, AnyTask.swift, Benchmark+ChartLibrary.swift, Benchmark+Error.swift, Benchmark+Event.swift, Benchmark+Links.swift, Benchmark+Main.swift, Benchmark+Options.swift, Benchmark+RunOptions.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftDriver\ Compilation ArgumentParser normal armv7k com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser-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/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.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/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.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/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation ArgumentParser normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser-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/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.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/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.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/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation ArgumentParser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-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/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.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/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.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/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-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/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/Binary/ArgumentParser.o normal armv7k (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/Binary/ArgumentParser.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/Binary/ArgumentParser.o normal arm64_32 (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/Binary/ArgumentParser.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/Binary/ArgumentParser.o normal arm64 (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/Binary/ArgumentParser.o
SwiftDriverJobDiscovery normal arm64 Compiling Transform.swift, Vector.swift, Color.swift, DocumentRenderer.swift, Font.swift, Graphics+Element.swift, Graphics+SVG.swift, Graphics.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftDriver CollectionsBenchmarkTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmarkTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver CollectionsBenchmarkTests normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmarkTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver CollectionsBenchmarkTests normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmarkTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ CollectionsBenchmarkTests (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
EmitSwiftModule normal arm64 (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ArgumentParser.o normal arm64\ armv7k\ arm64_32 (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/Binary/ArgumentParser.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/Binary/ArgumentParser.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/Binary/ArgumentParser.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ArgumentParser.o
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ CollectionsBenchmarkTests (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
EmitSwiftModule normal arm64_32 (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal armv7k Emitting\ module\ for\ CollectionsBenchmarkTests (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
EmitSwiftModule normal armv7k (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Blackhole.swift, Identity.swift, Measurement.swift, Sample+Statistic.swift, Sample.swift, Size.swift, TaskResults.swift, Tick.swift, Time.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 Compiling\ BinarySearchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/BinarySearchTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/BinarySearchTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling BenchmarkCLI+Library+Render.swift, BenchmarkCLI+Library+Run.swift, BenchmarkCLI+Library.swift, BenchmarkCLI+Render+Options.swift, BenchmarkCLI+Render.swift, BenchmarkCLI+Results+Compare.swift, BenchmarkCLI+Results+Delete.swift, BenchmarkCLI+Results+ListTasks.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 Compiling\ SimpleSortedDictionaryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling FilePath extensions.swift, ProjectInfo.swift, _MutableKeyValuePairs.swift, _Shims.swift, _SimpleOrderedDictionary.swift, _SimpleOrderedSet.swift, _SimpleSortedBag.swift, _SimpleSortedDictionary.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k Compiling\ SizeTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SizeTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SizeTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling BenchmarkCLI+Results+Merge.swift, BenchmarkCLI+Results.swift, BenchmarkCLI+Run.swift, BenchmarkCLI+TaskSelection.swift, BenchmarkCLI.swift, _Document.swift, Band.swift, Chart+Options.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k Compiling\ SimpleOrderedDictionaryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ImageFormat.swift, Renderer.swift, Shape.swift, Stroke.swift, Text.swift, CocoaRenderer.swift, CoreGraphics.swift, DefaultRenderer.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 Compiling\ SizeTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SizeTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SizeTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling BenchmarkCLI+Results+Merge.swift, BenchmarkCLI+Results.swift, BenchmarkCLI+Run.swift, BenchmarkCLI+TaskSelection.swift, BenchmarkCLI.swift, _Document.swift, Band.swift, Chart+Options.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k Compiling\ UtilitiesTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/UtilitiesTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/UtilitiesTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling BenchmarkCLI+Library+Render.swift, BenchmarkCLI+Library+Run.swift, BenchmarkCLI+Library.swift, BenchmarkCLI+Render+Options.swift, BenchmarkCLI+Render.swift, BenchmarkCLI+Results+Compare.swift, BenchmarkCLI+Results+Delete.swift, BenchmarkCLI+Results+ListTasks.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 Compiling\ UtilitiesTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/UtilitiesTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/UtilitiesTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Timer.swift, AnyTask.swift, Benchmark+ChartLibrary.swift, Benchmark+Error.swift, Benchmark+Event.swift, Benchmark+Links.swift, Benchmark+Main.swift, Benchmark+Options.swift, Benchmark+RunOptions.swift (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 Compiling\ SimpleOrderedDictionaryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Emitting module for CollectionsBenchmarkTests (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriver\ Compilation\ Requirements CollectionsBenchmarkTests normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmarkTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for CollectionsBenchmarkTests (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k Compiling\ SimpleSortedBagTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedBagTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedBagTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriver\ Compilation\ Requirements CollectionsBenchmarkTests normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmarkTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for CollectionsBenchmarkTests (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftmodule (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftDriver\ Compilation\ Requirements CollectionsBenchmarkTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmarkTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftdoc (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.abi.json (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftmodule (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftdoc (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.abi.json (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftmodule (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftdoc (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.abi.json (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftsourceinfo (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftsourceinfo (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftsourceinfo (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ SizeTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SizeTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SizeTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ SimpleSortedBagTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedBagTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedBagTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling UtilitiesTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 Compiling\ UtilitiesTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/UtilitiesTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/UtilitiesTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ BinarySearchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/BinarySearchTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/BinarySearchTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling SizeTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriverJobDiscovery normal armv7k Compiling SimpleOrderedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k Compiling\ GeometryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/GeometryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/GeometryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling SimpleSortedBagTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k Compiling\ SimpleOrderedSetTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedSetTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedSetTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling UtilitiesTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 Compiling\ SimpleOrderedSetTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedSetTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedSetTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling SizeTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 Compiling\ SimpleOrderedSetTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedSetTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedSetTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SimpleOrderedDictionaryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleOrderedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ BinarySearchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/BinarySearchTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/BinarySearchTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SimpleSortedDictionaryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling SimpleSortedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriverJobDiscovery normal arm64_32 Compiling SimpleOrderedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriverJobDiscovery normal arm64_32 Compiling BinarySearchTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriverJobDiscovery normal arm64 Compiling SizeTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 Compiling\ GeometryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/GeometryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/GeometryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling UtilitiesTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 Compiling\ GeometryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/GeometryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/GeometryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling BinarySearchTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k Compiling\ SimpleSortedDictionaryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling SimpleSortedBagTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 Compiling\ SimpleSortedBagTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedBagTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CollectionsBenchmarkTests/SimpleSortedBagTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling SimpleOrderedSetTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriverJobDiscovery normal arm64 Compiling BinarySearchTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriver\ Compilation CollectionsBenchmark normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark.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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation CollectionsBenchmark normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark.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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation CollectionsBenchmark normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark.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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling SimpleOrderedSetTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
ExtractAppIntentsMetadata (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ArgumentParser --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier swift-argument-parser.ArgumentParser --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ArgumentParser.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ArgumentParser.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/ArgumentParser.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/ArgumentParser.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:41:01.724 appintentsmetadataprocessor[974:5928] Starting appintentsmetadataprocessor export
2025-04-26 21:41:01.764 appintentsmetadataprocessor[974:5928] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SystemPackage.o (in target 'SystemPackage' from project 'swift-system')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SystemPackage.o
SwiftDriverJobDiscovery normal arm64_32 Compiling SimpleOrderedSetTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriverJobDiscovery normal arm64 Compiling SimpleSortedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriverJobDiscovery normal arm64 Compiling SimpleOrderedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriverJobDiscovery normal armv7k Compiling GeometryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ArgumentParser.o (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ArgumentParser.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/Binary/CollectionsBenchmark.o normal armv7k (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/Binary/CollectionsBenchmark.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/Binary/CollectionsBenchmark.o normal arm64_32 (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/Binary/CollectionsBenchmark.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/Binary/CollectionsBenchmark.o normal arm64 (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/Binary/CollectionsBenchmark.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmark.o normal arm64\ armv7k\ arm64_32 (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/Binary/CollectionsBenchmark.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/Binary/CollectionsBenchmark.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/Binary/CollectionsBenchmark.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmark.o
ExtractAppIntentsMetadata (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CollectionsBenchmark --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier spi-builder-workspace.CollectionsBenchmark --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmark.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmark.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/CollectionsBenchmark.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/CollectionsBenchmark.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:41:01.892 appintentsmetadataprocessor[982:5973] Starting appintentsmetadataprocessor export
2025-04-26 21:41:01.932 appintentsmetadataprocessor[982:5973] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal armv7k Compiling SimpleSortedDictionaryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriver\ Compilation CollectionsBenchmarkTests normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmarkTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling GeometryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriver\ Compilation CollectionsBenchmarkTests normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmarkTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling SimpleSortedBagTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmark.o (in target 'CollectionsBenchmark' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmark.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/empty-CollectionsBenchmarkTests.plist (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/empty-CollectionsBenchmarkTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform watchos -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/Binary/CollectionsBenchmarkTests normal armv7k (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/Binary/CollectionsBenchmarkTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParserToolInfo.build/Objects-normal/armv7k/ArgumentParserToolInfo.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-system.build/Debug-watchos/SystemPackage.build/Objects-normal/armv7k/SystemPackage.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/armv7k/CollectionsBenchmark.swiftmodule
ld: warning: dylib (/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks/XCTest.framework/XCTest) was built for newer watchOS version (7.0) than being linked (6.0)
ld: warning: dylib (/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib) was built for newer watchOS version (7.0) than being linked (6.0)
ld: warning: dylib (/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks/XCUIAutomation.framework/XCUIAutomation) was built for newer watchOS version (7.0) than being linked (6.0)
ld: warning: dylib (/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks/XCTest.framework/../../PrivateFrameworks///XCTestCore.framework/XCTestCore) was built for newer watchOS version (7.0) than being linked (6.0)
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/Binary/CollectionsBenchmarkTests normal arm64_32 (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/Binary/CollectionsBenchmarkTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParserToolInfo.build/Objects-normal/arm64_32/ArgumentParserToolInfo.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-system.build/Debug-watchos/SystemPackage.build/Objects-normal/arm64_32/SystemPackage.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64_32/CollectionsBenchmark.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling GeometryTests.swift (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
SwiftDriver\ Compilation CollectionsBenchmarkTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CollectionsBenchmarkTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests-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/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-system/Sources/CSystem/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -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/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/Binary/CollectionsBenchmarkTests normal arm64 (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/Binary/CollectionsBenchmarkTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-system.build/Debug-watchos/SystemPackage.build/Objects-normal/arm64/SystemPackage.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmark.build/Objects-normal/arm64/CollectionsBenchmark.swiftmodule
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/CollectionsBenchmarkTests normal arm64\ armv7k\ arm64_32 (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/Binary/CollectionsBenchmarkTests /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/Binary/CollectionsBenchmarkTests /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/Binary/CollectionsBenchmarkTests -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/CollectionsBenchmarkTests
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/CollectionsBenchmarkTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/Extensions --platform watchos --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os --back-deploy-swift-concurrency
Ignoring --strip-bitcode because --sign was not passed
Copying /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/watchos/libswift_Concurrency.dylib to /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/Frameworks/libswift_Concurrency.dylib
ExtractAppIntentsMetadata (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CollectionsBenchmarkTests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 6.0 --bundle-identifier spi-builder-workspace.CollectionsBenchmarkTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/CollectionsBenchmarkTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/CollectionsBenchmarkTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/CollectionsBenchmarkTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64/CollectionsBenchmarkTests.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/armv7k/CollectionsBenchmarkTests.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections-benchmark.build/Debug-watchos/CollectionsBenchmarkTests.build/Objects-normal/arm64_32/CollectionsBenchmarkTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:41:02.268 appintentsmetadataprocessor[990:6034] Starting appintentsmetadataprocessor export
2025-04-26 21:41:02.272 appintentsmetadataprocessor[990:6034] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/CollectionsBenchmarkTests (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest/CollectionsBenchmarkTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest.dSYM
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest (in target 'CollectionsBenchmarkTests' from project 'swift-collections-benchmark')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CollectionsBenchmarkTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.4",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
},
{
"identity" : "swift-system",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-system"
}
],
"manifest_display_name" : "swift-collections-benchmark",
"name" : "swift-collections-benchmark",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CollectionsBenchmark",
"targets" : [
"CollectionsBenchmark"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CollectionsBenchmarkTests",
"module_type" : "SwiftTarget",
"name" : "CollectionsBenchmarkTests",
"path" : "Tests/CollectionsBenchmarkTests",
"sources" : [
"BinarySearchTests.swift",
"GeometryTests.swift",
"SimpleOrderedDictionaryTests.swift",
"SimpleOrderedSetTests.swift",
"SimpleSortedBagTests.swift",
"SimpleSortedDictionaryTests.swift",
"SizeTests.swift",
"UtilitiesTests.swift"
],
"target_dependencies" : [
"CollectionsBenchmark"
],
"type" : "test"
},
{
"c99name" : "CollectionsBenchmark",
"module_type" : "SwiftTarget",
"name" : "CollectionsBenchmark",
"path" : "Sources/CollectionsBenchmark",
"product_dependencies" : [
"ArgumentParser",
"SystemPackage"
],
"product_memberships" : [
"CollectionsBenchmark"
],
"sources" : [
"Basics/Blackhole.swift",
"Basics/Identity.swift",
"Basics/Measurement.swift",
"Basics/Sample+Statistic.swift",
"Basics/Sample.swift",
"Basics/Size.swift",
"Basics/TaskResults.swift",
"Basics/Tick.swift",
"Basics/Time.swift",
"Basics/Timer.swift",
"Benchmark/AnyTask.swift",
"Benchmark/Benchmark+ChartLibrary.swift",
"Benchmark/Benchmark+Error.swift",
"Benchmark/Benchmark+Event.swift",
"Benchmark/Benchmark+Links.swift",
"Benchmark/Benchmark+Main.swift",
"Benchmark/Benchmark+Options.swift",
"Benchmark/Benchmark+RunOptions.swift",
"Benchmark/Benchmark.swift",
"Benchmark/BenchmarkResults.swift",
"Benchmark/Task.swift",
"Benchmark/TaskID.swift",
"Benchmark/_ExecutionContext.swift",
"Benchmark/_TypeBox.swift",
"BenchmarkCLI/BenchmarkCLI+Info.swift",
"BenchmarkCLI/BenchmarkCLI+Library+List.swift",
"BenchmarkCLI/BenchmarkCLI+Library+Render.swift",
"BenchmarkCLI/BenchmarkCLI+Library+Run.swift",
"BenchmarkCLI/BenchmarkCLI+Library.swift",
"BenchmarkCLI/BenchmarkCLI+Render+Options.swift",
"BenchmarkCLI/BenchmarkCLI+Render.swift",
"BenchmarkCLI/BenchmarkCLI+Results+Compare.swift",
"BenchmarkCLI/BenchmarkCLI+Results+Delete.swift",
"BenchmarkCLI/BenchmarkCLI+Results+ListTasks.swift",
"BenchmarkCLI/BenchmarkCLI+Results+Merge.swift",
"BenchmarkCLI/BenchmarkCLI+Results.swift",
"BenchmarkCLI/BenchmarkCLI+Run.swift",
"BenchmarkCLI/BenchmarkCLI+TaskSelection.swift",
"BenchmarkCLI/BenchmarkCLI.swift",
"BenchmarkCLI/_Document.swift",
"Charts/Band.swift",
"Charts/Chart+Options.swift",
"Charts/Chart.swift",
"Charts/ChartScales.swift",
"Charts/ChartUtils.swift",
"Charts/Curve.swift",
"Charts/Geometry/EdgeInsets.swift",
"Charts/Geometry/Path.swift",
"Charts/Geometry/Point.swift",
"Charts/Geometry/Rectangle.swift",
"Charts/Geometry/Transform.swift",
"Charts/Geometry/Vector.swift",
"Charts/Graphics/Color.swift",
"Charts/Graphics/DocumentRenderer.swift",
"Charts/Graphics/Font.swift",
"Charts/Graphics/Graphics+Element.swift",
"Charts/Graphics/Graphics+SVG.swift",
"Charts/Graphics/Graphics.swift",
"Charts/Graphics/ImageFormat.swift",
"Charts/Graphics/Renderer.swift",
"Charts/Graphics/Shape.swift",
"Charts/Graphics/Stroke.swift",
"Charts/Graphics/Text.swift",
"Charts/Renderers/CocoaRenderer.swift",
"Charts/Renderers/CoreGraphics.swift",
"Charts/Renderers/DefaultRenderer.swift",
"Charts/Renderers/HTMLDocumentRenderer.swift",
"Charts/Renderers/UIKitRenderer.swift",
"Charts/Renderers/_XML.swift",
"Charts/Theme.swift",
"Compatibility/Compatibility.swift",
"Utilities/BinarySearch.swift",
"Utilities/Complain.swift",
"Utilities/Debug.swift",
"Utilities/FilePath extensions.swift",
"Utilities/ProjectInfo.swift",
"Utilities/_MutableKeyValuePairs.swift",
"Utilities/_Shims.swift",
"Utilities/_SimpleOrderedDictionary.swift",
"Utilities/_SimpleOrderedSet.swift",
"Utilities/_SimpleSortedBag.swift",
"Utilities/_SimpleSortedDictionary.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.