Build Information
Failed to build MapboxDirections, reference v2.14.0 (651232
), with Swift 6.1 for visionOS using Xcode 16.3 on 28 Apr 2025 23:14:09 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme MapboxDirections-Package -destination generic/platform=xrOS
Build Log
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:119:31: warning: static property 'annotations' is not concurrency-safe because non-'Sendable' type 'Route.RefreshParameters.PropertiesToMerge' may have shared mutable state; this is an error in the Swift 6 language mode
static public let annotations = PropertiesToMerge(rawValue: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:111:23: note: consider making struct 'PropertiesToMerge' conform to the 'Sendable' protocol
public struct PropertiesToMerge: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:119:31: note: add '@MainActor' to make static property 'annotations' part of global actor 'MainActor'
static public let annotations = PropertiesToMerge(rawValue: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:119:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let annotations = PropertiesToMerge(rawValue: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:123:31: warning: static property 'incidents' is not concurrency-safe because non-'Sendable' type 'Route.RefreshParameters.PropertiesToMerge' may have shared mutable state; this is an error in the Swift 6 language mode
static public let incidents = PropertiesToMerge(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:111:23: note: consider making struct 'PropertiesToMerge' conform to the 'Sendable' protocol
public struct PropertiesToMerge: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:123:31: note: add '@MainActor' to make static property 'incidents' part of global actor 'MainActor'
static public let incidents = PropertiesToMerge(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:123:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let incidents = PropertiesToMerge(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:127:31: warning: static property 'closures' is not concurrency-safe because non-'Sendable' type 'Route.RefreshParameters.PropertiesToMerge' may have shared mutable state; this is an error in the Swift 6 language mode
static public let closures = PropertiesToMerge(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:111:23: note: consider making struct 'PropertiesToMerge' conform to the 'Sendable' protocol
public struct PropertiesToMerge: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:127:31: note: add '@MainActor' to make static property 'closures' part of global actor 'MainActor'
static public let closures = PropertiesToMerge(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:127:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let closures = PropertiesToMerge(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:132:31: warning: static property 'everything' is not concurrency-safe because non-'Sendable' type 'Route.RefreshParameters.PropertiesToMerge' may have shared mutable state; this is an error in the Swift 6 language mode
static public let everything: PropertiesToMerge = [PropertiesToMerge.annotations, PropertiesToMerge.closures, PropertiesToMerge.incidents]
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:111:23: note: consider making struct 'PropertiesToMerge' conform to the 'Sendable' protocol
public struct PropertiesToMerge: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:132:31: note: add '@MainActor' to make static property 'everything' part of global actor 'MainActor'
static public let everything: PropertiesToMerge = [PropertiesToMerge.annotations, PropertiesToMerge.closures, PropertiesToMerge.incidents]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:132:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let everything: PropertiesToMerge = [PropertiesToMerge.annotations, PropertiesToMerge.closures, PropertiesToMerge.incidents]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:32:16: warning: stored property 'routes' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type '[Route]?'; this is an error in the Swift 6 language mode
public var routes: [Route]? {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Route.swift:9:12: note: class 'Route' does not conform to the 'Sendable' protocol
open class Route: DirectionsResult {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:43:16: warning: stored property 'waypoints' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type '[Waypoint]?'; this is an error in the Swift 6 language mode
public let waypoints: [Waypoint]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift:9:14: note: class 'Waypoint' does not conform to the 'Sendable' protocol
public class Waypoint: Codable, ForeignMemberContainerClass {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:48:16: warning: stored property 'options' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type 'ResponseOptions'; this is an error in the Swift 6 language mode
public let options: ResponseOptions
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:7:13: note: consider making enum 'ResponseOptions' conform to the 'Sendable' protocol
public enum ResponseOptions {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:53:16: warning: stored property 'credentials' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type 'Credentials'; this is an error in the Swift 6 language mode
public let credentials: Credentials
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:87:29: warning: stored property 'roadClassExclusionViolations' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type '[RoadClassExclusionViolation]?'; this is an error in the Swift 6 language mode
public private(set) var roadClassExclusionViolations: [RoadClassExclusionViolation]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClassExclusionViolation.swift:7:15: note: consider making struct 'RoadClassExclusionViolation' conform to the 'Sendable' protocol
public struct RoadClassExclusionViolation {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:218:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ManeuverType' may have shared mutable state; this is an error in the Swift 6 language mode
static let `default` = ManeuverType.turn
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:92:13: note: consider making enum 'ManeuverType' conform to the 'Sendable' protocol
public enum ManeuverType: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:218:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static let `default` = ManeuverType.turn
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:218:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let `default` = ManeuverType.turn
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:437:13: warning: stored property 'maneuverType' of 'Sendable'-conforming struct 'Maneuver' has non-sendable type 'ManeuverType'; this is an error in the Swift 6 language mode
let maneuverType: ManeuverType
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:92:13: note: consider making enum 'ManeuverType' conform to the 'Sendable' protocol
public enum ManeuverType: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:438:13: warning: stored property 'maneuverDirection' of 'Sendable'-conforming struct 'Maneuver' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
let maneuverDirection: ManeuverDirection?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
public enum ManeuverDirection: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift:18:16: warning: stored property 'type' of 'Sendable'-conforming struct 'TollCollection' has non-sendable type 'TollCollection.CollectionType'; this is an error in the Swift 6 language mode
public let type: CollectionType
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift:10:17: note: consider making enum 'CollectionType' conform to the 'Sendable' protocol
public enum CollectionType: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:17:23: warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
public static let electronicTollCollection = TollPaymentMethod(identifier: "etc")
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:8:15: note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
public struct TollPaymentMethod: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:17:23: note: add '@MainActor' to make static property 'electronicTollCollection' part of global actor 'MainActor'
public static let electronicTollCollection = TollPaymentMethod(identifier: "etc")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let electronicTollCollection = TollPaymentMethod(identifier: "etc")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:21:23: warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
public static let cash = TollPaymentMethod(identifier: "cash")
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:8:15: note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
public struct TollPaymentMethod: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:21:23: note: add '@MainActor' to make static property 'cash' part of global actor 'MainActor'
public static let cash = TollPaymentMethod(identifier: "cash")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let cash = TollPaymentMethod(identifier: "cash")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:39:23: warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
public static let small = TollCategory(name: "small")
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:28:15: note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
public struct TollCategory: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:39:23: note: add '@MainActor' to make static property 'small' part of global actor 'MainActor'
public static let small = TollCategory(name: "small")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let small = TollCategory(name: "small")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:45:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
public static let standard = TollCategory(name: "standard")
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:28:15: note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
public struct TollCategory: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:45:23: note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
public static let standard = TollCategory(name: "standard")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let standard = TollCategory(name: "standard")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:51:23: warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
public static let middle = TollCategory(name: "middle")
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:28:15: note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
public struct TollCategory: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:51:23: note: add '@MainActor' to make static property 'middle' part of global actor 'MainActor'
public static let middle = TollCategory(name: "middle")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let middle = TollCategory(name: "middle")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:57:23: warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
public static let large = TollCategory(name: "large")
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:28:15: note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
public struct TollCategory: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:57:23: note: add '@MainActor' to make static property 'large' part of global actor 'MainActor'
public static let large = TollCategory(name: "large")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let large = TollCategory(name: "large")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:63:23: warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
public static let jumbo = TollCategory(name: "jumbo")
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:28:15: note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
public struct TollCategory: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:63:23: note: add '@MainActor' to make static property 'jumbo' part of global actor 'MainActor'
public static let jumbo = TollCategory(name: "jumbo")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let jumbo = TollCategory(name: "jumbo")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:83:16: warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
public let paymentMethod: TollPaymentMethod
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:8:15: note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
public struct TollPaymentMethod: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:87:16: warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
public let category: TollCategory
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:28:15: note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
public struct TollCategory: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift:124:48: error: 'CLHeading' is unavailable in visionOS
public init(location: CLLocation, heading: CLHeading? = nil, name: String? = nil) {
^~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLHeading.h:46:12: note: 'CLHeading' has been explicitly marked unavailable here
@interface CLHeading : NSObject <NSCopying, NSSecureCoding>
^
SwiftCompile normal arm64 Compiling\ Codable.swift,\ CoreLocation.swift,\ Double.swift,\ ForeignMemberContainer.swift,\ GeoJSON.swift,\ HTTPURLResponse.swift,\ Measurement.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Codable.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/CoreLocation.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Double.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/ForeignMemberContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/GeoJSON.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/HTTPURLResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Measurement.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Codable.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/CoreLocation.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Double.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/ForeignMemberContainer.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/GeoJSON.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/HTTPURLResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Measurement.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling InputOrigin.swift, Name.swift, Parsed.swift, ParsedValues.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ CustomValueOptionSet.swift,\ Directions.swift,\ DirectionsError.swift,\ DirectionsOptions.swift,\ DirectionsResult.swift,\ DrivingSide.swift,\ Array.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/CustomValueOptionSet.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsResult.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Array.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/CustomValueOptionSet.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsError.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsResult.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Array.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling CoreLocation.swift (in target 'Polyline' from project 'Polyline')
SwiftCompile normal arm64 Compiling\ RoadClasses.swift,\ Route.swift,\ RouteLeg.swift,\ RouteLegAttributes.swift,\ RouteOptions.swift,\ RouteRefreshResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Route.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLeg.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLegAttributes.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Route.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLeg.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLegAttributes.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ RouteRefreshSource.swift,\ RouteResponse.swift,\ RouteStep.swift,\ SilentWaypoint.swift,\ SpokenInstruction.swift,\ TollCollection.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshSource.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SilentWaypoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SpokenInstruction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshSource.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SilentWaypoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SpokenInstruction.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ String.swift,\ URL+Request.swift,\ Incident.swift,\ Interchange.swift,\ Intersection.swift,\ IsochroneError.swift,\ IsochroneOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/String.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/URL+Request.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/IsochroneError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/IsochroneOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/String.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/URL+Request.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/IsochroneError.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/IsochroneOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ParsableArguments.swift, ParsableArgumentsValidation.swift, ParsableCommand.swift, ArgumentDecoder.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ AdministrativeRegion.swift,\ Amenity.swift,\ AmenityType.swift,\ AttributeOptions.swift,\ BlockedLanes.swift,\ Congestion.swift,\ Credentials.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AdministrativeRegion.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Amenity.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AmenityType.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Congestion.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AdministrativeRegion.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Amenity.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AmenityType.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Congestion.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ArgumentHelp.swift, ArgumentVisibility.swift, CompletionKind.swift, Errors.swift, Flag.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ TollPrice.swift,\ TrafficTendency.swift,\ VisualInstruction.swift,\ VisualInstructionBanner.swift,\ VisualInstructionComponent.swift,\ Waypoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TrafficTendency.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstruction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionBanner.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TrafficTendency.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstruction.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionBanner.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionComponent.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling HelpGenerator.swift, MessageInfo.swift, UsageGenerator.swift, CollectionExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ Tracepoint.swift,\ MapboxStreetsRoadClass.swift,\ Matrix.swift,\ MatrixError.swift,\ MatrixOptions.swift,\ MatrixResponse.swift,\ OfflineDirections.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Tracepoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift (in target 'MapboxDirections' from project 'MapboxDirections')
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
SwiftEmitModule normal arm64 Emitting\ module\ for\ MapboxDirections (in target 'MapboxDirections' from project 'MapboxDirections')
EmitSwiftModule normal arm64 (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 Compiling\ Tracepoint.swift,\ MapboxStreetsRoadClass.swift,\ Matrix.swift,\ MatrixError.swift,\ MatrixOptions.swift,\ MatrixResponse.swift,\ OfflineDirections.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Tracepoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift (in target 'MapboxDirections' from project 'MapboxDirections')
Building workspace spi-builder-workspace with scheme MapboxDirections-Package
(4 failures)
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
Polyline: https://github.com/raphaelmor/Polyline.git @ 5.1.0
MapboxDirections: /Users/admin/builder/spi-builder-workspace
Turf: https://github.com/mapbox/turf-swift.git @ 2.8.0
OHHTTPStubs: https://github.com/AliSoftware/OHHTTPStubs @ 9.1.0
swift-argument-parser: https://github.com/apple/swift-argument-parser @ 1.5.0
resolved source packages: Polyline, MapboxDirections, Turf, OHHTTPStubs, swift-argument-parser
{
"dependencies" : [
{
"identity" : "polyline",
"requirement" : {
"range" : [
{
"lower_bound" : "5.0.2",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/raphaelmor/Polyline.git"
},
{
"identity" : "turf-swift",
"requirement" : {
"range" : [
{
"lower_bound" : "2.8.0",
"upper_bound" : "2.9.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/mapbox/turf-swift.git"
},
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
},
{
"identity" : "ohhttpstubs",
"requirement" : {
"range" : [
{
"lower_bound" : "9.1.0",
"upper_bound" : "10.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/AliSoftware/OHHTTPStubs"
}
],
"manifest_display_name" : "MapboxDirections",
"name" : "MapboxDirections",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.14"
},
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "watchos",
"version" : "5.0"
},
{
"name" : "tvos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "MapboxDirections",
"targets" : [
"MapboxDirections"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "mapbox-directions-swift",
"targets" : [
"MapboxDirectionsCLI"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "MapboxDirectionsTests",
"module_type" : "SwiftTarget",
"name" : "MapboxDirectionsTests",
"path" : "Tests/MapboxDirectionsTests",
"product_dependencies" : [
"OHHTTPStubsSwift"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Match/match-polyline6.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Match/match.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Match/null-tracepoint.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Offline/2018-10-16-Liechtenstein.tar",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Offline/versions.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Responses/RouteRefreshResponseWithForeignMembers.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Responses/RouteResponseWithForeignMembers.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Responses/apiDestinationName.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Responses/noDestinationName.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/RouteRefresh/incorrectRouteRefreshResponse.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/RouteRefresh/partialRouteRefreshResponse.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/RouteRefresh/routeRefreshResponse.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/RouteRefresh/routeRefreshRoute.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/amenities.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/incidents.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/instructions.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/intersections.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/matrix.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/subLaneInstructions.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/subVisualInstructions.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/tollAndFerryDirectionsRoute.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/v5/annotation.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/v5/v5_driving_dc_geojson.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/v5/v5_driving_dc_polyline.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/v5/v5_driving_oldenburg_polyline.json",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"AmenityTests.swift",
"AnnotationTests.swift",
"AttributeOptionsTests.swift",
"CredentialsTests.swift",
"CustomStringOptionSetTests.swift",
"DirectionsErrorTests.swift",
"DirectionsTests.swift",
"Fixture.swift",
"ForeignMemberContainerTests.swift",
"GeoJSONTests.swift",
"IntersectionTests.swift",
"IsochroneTests.swift",
"JSONSerialization.swift",
"MatchOptionsTests.swift",
"MatchTests.swift",
"MatrixTests.swift",
"OfflineDirectionsTests.swift",
"QuickLookTests.swift",
"RoutableMatchTests.swift",
"RouteLegTests.swift",
"RouteOptionsTests.swift",
"RouteRefreshTests.swift",
"RouteResponseTests.swift",
"RouteStepTests.swift",
"RouteTests.swift",
"SpokenInstructionTests.swift",
"TransportTypeTests.swift",
"V5Tests.swift",
"VisualInstructionComponentTests.swift",
"VisualInstructionTests.swift",
"WalkingOptionsTests.swift",
"WaypointTests.swift"
],
"target_dependencies" : [
"MapboxDirections"
],
"type" : "test"
},
{
"c99name" : "MapboxDirectionsCLI",
"module_type" : "SwiftTarget",
"name" : "MapboxDirectionsCLI",
"path" : "Sources/MapboxDirectionsCLI",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"mapbox-directions-swift"
],
"sources" : [
"CodingOperation.swift",
"main.swift"
],
"target_dependencies" : [
"MapboxDirections"
],
"type" : "executable"
},
{
"c99name" : "MapboxDirections",
"module_type" : "SwiftTarget",
"name" : "MapboxDirections",
"path" : "Sources/MapboxDirections",
"product_dependencies" : [
"Polyline",
"Turf"
],
"product_memberships" : [
"MapboxDirections",
"mapbox-directions-swift"
],
"sources" : [
"AdministrativeRegion.swift",
"Amenity.swift",
"AmenityType.swift",
"AttributeOptions.swift",
"BlockedLanes.swift",
"Congestion.swift",
"Credentials.swift",
"CustomValueOptionSet.swift",
"Directions.swift",
"DirectionsError.swift",
"DirectionsOptions.swift",
"DirectionsResult.swift",
"DrivingSide.swift",
"Extensions/Array.swift",
"Extensions/Codable.swift",
"Extensions/CoreLocation.swift",
"Extensions/Double.swift",
"Extensions/ForeignMemberContainer.swift",
"Extensions/GeoJSON.swift",
"Extensions/HTTPURLResponse.swift",
"Extensions/Measurement.swift",
"Extensions/String.swift",
"Extensions/URL+Request.swift",
"Incident.swift",
"Interchange.swift",
"Intersection.swift",
"IsochroneError.swift",
"IsochroneOptions.swift",
"Isochrones.swift",
"Junction.swift",
"Lane.swift",
"LaneIndication.swift",
"MapMatching/MapMatchingResponse.swift",
"MapMatching/Match.swift",
"MapMatching/MatchOptions.swift",
"MapMatching/Tracepoint.swift",
"MapboxStreetsRoadClass.swift",
"Matrix.swift",
"MatrixError.swift",
"MatrixOptions.swift",
"MatrixResponse.swift",
"OfflineDirections.swift",
"ProfileIdentifier.swift",
"QuickLook.swift",
"RefreshedRoute.swift",
"ResponseDisposition.swift",
"RestStop.swift",
"RoadClassExclusionViolation.swift",
"RoadClasses.swift",
"Route.swift",
"RouteLeg.swift",
"RouteLegAttributes.swift",
"RouteOptions.swift",
"RouteRefreshResponse.swift",
"RouteRefreshSource.swift",
"RouteResponse.swift",
"RouteStep.swift",
"SilentWaypoint.swift",
"SpokenInstruction.swift",
"TollCollection.swift",
"TollPrice.swift",
"TrafficTendency.swift",
"VisualInstruction.swift",
"VisualInstructionBanner.swift",
"VisualInstructionComponent.swift",
"Waypoint.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"mapbox-directions-swift",
"MapboxDirections",
"MapboxDirections-Package"
]
}
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"mapbox-directions-swift",
"MapboxDirections",
"MapboxDirections-Package"
]
}
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme MapboxDirections-Package -destination generic/platform=xrOS
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme MapboxDirections-Package -destination generic/platform=xrOS
Resolve Package Graph
Resolved source packages:
swift-argument-parser: https://github.com/apple/swift-argument-parser @ 1.5.0
Polyline: https://github.com/raphaelmor/Polyline.git @ 5.1.0
MapboxDirections: /Users/admin/builder/spi-builder-workspace
Turf: https://github.com/mapbox/turf-swift.git @ 2.8.0
OHHTTPStubs: https://github.com/AliSoftware/OHHTTPStubs @ 9.1.0
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (10 targets)
Target 'mapbox-directions-swift' in project 'MapboxDirections'
➜ Explicit dependency on target 'MapboxDirections' in project 'MapboxDirections'
➜ Explicit dependency on target 'Polyline' in project 'Polyline'
➜ Explicit dependency on target 'Turf' in project 'Turf'
➜ Explicit dependency on target 'ArgumentParser' in project 'swift-argument-parser'
Target 'ArgumentParser' in project 'swift-argument-parser'
➜ Explicit dependency on target 'ArgumentParser' in project 'swift-argument-parser'
➜ Explicit dependency on target 'ArgumentParserToolInfo' in project 'swift-argument-parser'
Target 'ArgumentParser' in project 'swift-argument-parser'
➜ Explicit dependency on target 'ArgumentParserToolInfo' in project 'swift-argument-parser'
Target 'ArgumentParserToolInfo' in project 'swift-argument-parser' (no dependencies)
Target 'MapboxDirections' in project 'MapboxDirections'
➜ Explicit dependency on target 'MapboxDirections' in project 'MapboxDirections'
➜ Explicit dependency on target 'Polyline' in project 'Polyline'
➜ Explicit dependency on target 'Turf' in project 'Turf'
Target 'MapboxDirections' in project 'MapboxDirections'
➜ Explicit dependency on target 'Polyline' in project 'Polyline'
➜ Explicit dependency on target 'Turf' in project 'Turf'
Target 'Turf' in project 'Turf'
➜ Explicit dependency on target 'Turf' in project 'Turf'
Target 'Turf' in project 'Turf' (no dependencies)
Target 'Polyline' in project 'Polyline'
➜ Explicit dependency on target 'Polyline' in project 'Polyline'
Target 'Polyline' in project 'Polyline' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
ReadFileContents /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/share/docc/features.json
Build description signature: 14f5fa1e4334cff5f1154202bdbad7da
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/14f5fa1e4334cff5f1154202bdbad7da.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
SwiftDriver Turf normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Turf' from project 'Turf')
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 Turf -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf-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/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.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/Turf.build/Debug-xros/Turf.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.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/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver Polyline normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Polyline' from project 'Polyline')
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 Polyline -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline-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/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.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/Polyline.build/Debug-xros/Polyline.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.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/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver ArgumentParserToolInfo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
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 ArgumentParserToolInfo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-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-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.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-xros/ArgumentParserToolInfo.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-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.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-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ Polyline (in target 'Polyline' from project 'Polyline')
EmitSwiftModule normal arm64 (in target 'Polyline' from project 'Polyline')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CoreLocation.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Polyline/Sources/Polyline/CoreLocation.swift (in target 'Polyline' from project 'Polyline')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Polyline/Sources/Polyline/CoreLocation.swift (in target 'Polyline' from project 'Polyline')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ ArgumentParserToolInfo (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParserToolInfo/ToolInfo.swift (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Polyline.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Polyline/Sources/Polyline/Polyline.swift (in target 'Polyline' from project 'Polyline')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Polyline/Sources/Polyline/Polyline.swift (in target 'Polyline' from project 'Polyline')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ToolInfo.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParserToolInfo/ToolInfo.swift (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParserToolInfo/ToolInfo.swift (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Point.swift,\ Polygon.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/Point.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/Polygon.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/Point.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/Polygon.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ Turf (in target 'Turf' from project 'Turf')
EmitSwiftModule normal arm64 (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ MultiPoint.swift,\ MultiPolygon.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/MultiPoint.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/MultiPolygon.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/MultiPoint.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/MultiPolygon.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ FeatureCollection.swift,\ FeatureIdentifier.swift,\ GeoJSON.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/FeatureCollection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/FeatureIdentifier.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/GeoJSON.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/FeatureCollection.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/FeatureIdentifier.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/GeoJSON.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Consumer.swift,\ CoreLocation.swift,\ Feature.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Consumer/Consumer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/CoreLocation.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Feature.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Consumer/Consumer.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/CoreLocation.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Feature.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Geometry.swift,\ JSON.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometry.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/JSON.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometry.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/JSON.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for ArgumentParserToolInfo (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
SwiftDriver\ Compilation\ Requirements ArgumentParserToolInfo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
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 ArgumentParserToolInfo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-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-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.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-xros/ArgumentParserToolInfo.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-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.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-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CoreLocation.swift (in target 'Polyline' from project 'Polyline')
SwiftCompile normal arm64 Compiling\ Simplifier.swift,\ Spline.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Simplifier.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Spline.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Simplifier.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Spline.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ArgumentParserToolInfo.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.abi.json (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
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-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ArgumentParserToolInfo.swiftmodule/arm64-apple-xros.abi.json
SwiftDriverJobDiscovery normal arm64 Emitting module for Polyline (in target 'Polyline' from project 'Polyline')
SwiftDriver\ Compilation\ Requirements Polyline normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Polyline' from project 'Polyline')
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 Polyline -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline-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/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.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/Polyline.build/Debug-xros/Polyline.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.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/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ RadianCoordinate2D.swift,\ Ring.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/RadianCoordinate2D.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Ring.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/RadianCoordinate2D.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Ring.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Polyline.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.abi.json (in target 'Polyline' from project 'Polyline')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Polyline
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/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Polyline.swiftmodule/arm64-apple-xros.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling MultiPoint.swift, MultiPolygon.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 Compiling\ GeometryCollection.swift,\ LineString.swift,\ MultiLineString.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/GeometryCollection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/LineString.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/MultiLineString.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/GeometryCollection.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/LineString.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Geometries/MultiLineString.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Turf.swift,\ WKT.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Turf.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/WKT.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Turf.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/WKT.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ToolInfo.swift (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ BoundingBox.swift,\ Codable.swift,\ Consumer+WKT.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/BoundingBox.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Codable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Consumer/Consumer+WKT.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/BoundingBox.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Codable.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift/Sources/Turf/Consumer/Consumer+WKT.swift (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling FeatureCollection.swift, FeatureIdentifier.swift, GeoJSON.swift (in target 'Turf' from project 'Turf')
SwiftDriver\ Compilation ArgumentParserToolInfo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParserToolInfo' 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 ArgumentParserToolInfo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-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-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.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-xros/ArgumentParserToolInfo.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-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.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-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for Turf (in target 'Turf' from project 'Turf')
SwiftDriver\ Compilation\ Requirements Turf normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Turf' from project 'Turf')
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 Turf -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf-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/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.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/Turf.build/Debug-xros/Turf.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.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/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ArgumentParserToolInfo.o normal (in target 'ArgumentParserToolInfo' 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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ArgumentParserToolInfo.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Turf.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.swiftmodule (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift
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/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Turf.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Turf.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.abi.json (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift
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/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Turf.swiftmodule/arm64-apple-xros.abi.json
SwiftDriver 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-SwiftDriver -- /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-xros/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -enable-experimental-feature StrictConcurrency -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/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-xros/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-xros/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-xros/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/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-xros/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Point.swift, Polygon.swift (in target 'Turf' from project 'Turf')
SwiftDriver MapboxDirections normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MapboxDirections' from project 'MapboxDirections')
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 MapboxDirections -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-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/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.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/MapboxDirections.build/Debug-xros/MapboxDirections.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.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/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ExtractAppIntentsMetadata (in target 'ArgumentParserToolInfo' 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 ArgumentParserToolInfo --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier swift-argument-parser.ArgumentParserToolInfo --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ArgumentParserToolInfo.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ArgumentParserToolInfo.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/ArgumentParserToolInfo.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/ArgumentParserToolInfo.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-28 16:14:08.592 appintentsmetadataprocessor[1035:5383] Starting appintentsmetadataprocessor export
2025-04-28 16:14:08.629 appintentsmetadataprocessor[1035:5383] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Geometry.swift, JSON.swift (in target 'Turf' from project 'Turf')
SwiftDriverJobDiscovery normal arm64 Compiling RadianCoordinate2D.swift, Ring.swift (in target 'Turf' from project 'Turf')
SwiftDriverJobDiscovery normal arm64 Compiling Simplifier.swift, Spline.swift (in target 'Turf' from project 'Turf')
SwiftEmitModule normal arm64 Emitting\ module\ for\ ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
EmitSwiftModule normal arm64 (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ InputOrigin.swift,\ Name.swift,\ Parsed.swift,\ ParsedValues.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ArgumentDefinition.swift,\ ArgumentSet.swift,\ CommandParser.swift,\ InputKey.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputKey.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputKey.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Platform.swift,\ SequenceExtensions.swift,\ StringExtensions.swift,\ Tree.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Platform.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Platform.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ MapboxDirections (in target 'MapboxDirections' from project 'MapboxDirections')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AdministrativeRegion.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Amenity.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AmenityType.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Congestion.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/CustomValueOptionSet.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsResult.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Array.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Codable.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/CoreLocation.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Double.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/ForeignMemberContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/GeoJSON.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/HTTPURLResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Measurement.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/String.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/URL+Request.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/IsochroneError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/IsochroneOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Isochrones.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Lane.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Match.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Tracepoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/QuickLook.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RefreshedRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ResponseDisposition.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClassExclusionViolation.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Route.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLeg.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLegAttributes.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshSource.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SilentWaypoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SpokenInstruction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TrafficTendency.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstruction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionBanner.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MapboxDirections -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.4 -target-sdk-name xros2.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug-xros/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.abi.json
EmitSwiftModule normal arm64 (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:392:53: warning: 'usesMetricSystem' was deprecated in visionOS 1.0: Use `measurementSystem` instead
self.distanceMeasurementSystem = locale.usesMetricSystem ? .metric : .imperial
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:410:76: warning: 'usesMetricSystem' was deprecated in visionOS 1.0: Use `measurementSystem` instead
open var distanceMeasurementSystem: MeasurementSystem = Locale.current.usesMetricSystem ? .metric : .imperial
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/GeoJSON.swift:10:1: warning: extension declares a conformance of imported type 'BoundingBox' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Turf' introduce this conformance in the future
extension BoundingBox: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/GeoJSON.swift:10:1: note: add '@retroactive' to silence this warning
extension BoundingBox: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:148:16: warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
public var impact: Impact?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:82:17: note: consider making enum 'Impact' conform to the 'Sendable' protocol
public enum Impact: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:178:16: warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
public var lanesBlocked: BlockedLanes?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:105:16: warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
public let outletRoadClasses: RoadClasses?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift:6:15: note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
public struct RoadClasses: OptionSet, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:112:16: warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
public let outletMapboxStreetsRoadClass: MapboxStreetsRoadClass?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
public enum MapboxStreetsRoadClass: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:162:16: warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
public let approachLanes: [LaneIndication]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
public struct LaneIndication: OptionSet, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:183:16: warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
public let usableLaneIndication: ManeuverDirection?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
public enum ManeuverDirection: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:215:16: warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
public let interchange: Interchange?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift:4:15: note: consider making struct 'Interchange' conform to the 'Sendable' protocol
public struct Interchange: Codable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:219:16: warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
public let junction: Junction?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift:4:15: note: consider making struct 'Junction' conform to the 'Sendable' protocol
public struct Junction: Codable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:254:13: warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
let streetClass: MapboxStreetsRoadClass?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
public enum MapboxStreetsRoadClass: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Lane.swift:13:9: warning: stored property 'indications' of 'Sendable'-conforming struct 'Lane' has non-sendable type 'LaneIndication'; this is an error in the Swift 6 language mode
let indications: LaneIndication
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
public struct LaneIndication: OptionSet, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Lane.swift:29:9: warning: stored property 'validIndication' of 'Sendable'-conforming struct 'Lane' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
var validIndication: ManeuverDirection?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
public enum ManeuverDirection: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift:21:16: warning: stored property 'matches' of 'Sendable'-conforming struct 'MapMatchingResponse' has non-sendable type '[Match]?'; this is an error in the Swift 6 language mode
public var matches : [Match]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Match.swift:45:12: note: class 'Match' does not conform to the 'Sendable' protocol
open class Match: DirectionsResult {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift:27:16: warning: stored property 'tracepoints' of 'Sendable'-conforming struct 'MapMatchingResponse' has non-sendable type '[Tracepoint?]?'; this is an error in the Swift 6 language mode
public var tracepoints: [Tracepoint?]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Tracepoint.swift:7:14: note: class 'Tracepoint' does not conform to the 'Sendable' protocol
public class Tracepoint: Waypoint {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift:32:16: warning: stored property 'options' of 'Sendable'-conforming struct 'MapMatchingResponse' has non-sendable type 'MatchOptions'; this is an error in the Swift 6 language mode
public let options: MatchOptions
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift:37:16: warning: stored property 'credentials' of 'Sendable'-conforming struct 'MapMatchingResponse' has non-sendable type 'Credentials'; this is an error in the Swift 6 language mode
public let credentials: Credentials
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift:27:16: warning: stored property 'type' of 'Sendable'-conforming struct 'RestStop' has non-sendable type 'RestStop.StopType'; this is an error in the Swift 6 language mode
public let type: StopType
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift:13:17: note: consider making enum 'StopType' conform to the 'Sendable' protocol
public enum StopType: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift:38:16: warning: stored property 'amenities' of 'Sendable'-conforming struct 'RestStop' has non-sendable type '[Amenity]?'; this is an error in the Swift 6 language mode
public let amenities: [Amenity]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Amenity.swift:7:15: note: consider making struct 'Amenity' conform to the 'Sendable' protocol
public struct Amenity: Codable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLegAttributes.swift:45:20: warning: stored property 'segmentCongestionLevels' of 'Sendable'-conforming struct 'Attributes' has non-sendable type '[CongestionLevel]?'; this is an error in the Swift 6 language mode
public var segmentCongestionLevels: [CongestionLevel]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Congestion.swift:6:13: note: consider making enum 'CongestionLevel' conform to the 'Sendable' protocol
public enum CongestionLevel: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLegAttributes.swift:73:20: warning: stored property 'trafficTendencies' of 'Sendable'-conforming struct 'Attributes' has non-sendable type '[TrafficTendency]?'; this is an error in the Swift 6 language mode
public var trafficTendencies: [TrafficTendency]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TrafficTendency.swift:7:13: note: consider making enum 'TrafficTendency' conform to the 'Sendable' protocol
public enum TrafficTendency: Int, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift:41:16: warning: stored property 'credentials' of 'Sendable'-conforming struct 'RouteRefreshResponse' has non-sendable type 'Credentials'; this is an error in the Swift 6 language mode
public let credentials: Credentials
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:32:16: warning: stored property 'routes' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type '[Route]?'; this is an error in the Swift 6 language mode
public var routes: [Route]? {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Route.swift:9:12: note: class 'Route' does not conform to the 'Sendable' protocol
open class Route: DirectionsResult {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:43:16: warning: stored property 'waypoints' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type '[Waypoint]?'; this is an error in the Swift 6 language mode
public let waypoints: [Waypoint]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift:9:14: note: class 'Waypoint' does not conform to the 'Sendable' protocol
public class Waypoint: Codable, ForeignMemberContainerClass {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:48:16: warning: stored property 'options' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type 'ResponseOptions'; this is an error in the Swift 6 language mode
public let options: ResponseOptions
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:7:13: note: consider making enum 'ResponseOptions' conform to the 'Sendable' protocol
public enum ResponseOptions {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:53:16: warning: stored property 'credentials' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type 'Credentials'; this is an error in the Swift 6 language mode
public let credentials: Credentials
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:87:29: warning: stored property 'roadClassExclusionViolations' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type '[RoadClassExclusionViolation]?'; this is an error in the Swift 6 language mode
public private(set) var roadClassExclusionViolations: [RoadClassExclusionViolation]?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClassExclusionViolation.swift:7:15: note: consider making struct 'RoadClassExclusionViolation' conform to the 'Sendable' protocol
public struct RoadClassExclusionViolation {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:437:13: warning: stored property 'maneuverType' of 'Sendable'-conforming struct 'Maneuver' has non-sendable type 'ManeuverType'; this is an error in the Swift 6 language mode
let maneuverType: ManeuverType
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:92:13: note: consider making enum 'ManeuverType' conform to the 'Sendable' protocol
public enum ManeuverType: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:438:13: warning: stored property 'maneuverDirection' of 'Sendable'-conforming struct 'Maneuver' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
let maneuverDirection: ManeuverDirection?
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
public enum ManeuverDirection: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift:18:16: warning: stored property 'type' of 'Sendable'-conforming struct 'TollCollection' has non-sendable type 'TollCollection.CollectionType'; this is an error in the Swift 6 language mode
public let type: CollectionType
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift:10:17: note: consider making enum 'CollectionType' conform to the 'Sendable' protocol
public enum CollectionType: String, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:83:16: warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
public let paymentMethod: TollPaymentMethod
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:8:15: note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
public struct TollPaymentMethod: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:87:16: warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
public let category: TollCategory
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:28:15: note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
public struct TollCategory: Hashable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift:124:48: error: 'CLHeading' is unavailable in visionOS
public init(location: CLLocation, heading: CLHeading? = nil, name: String? = nil) {
^~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLHeading.h:46:12: note: 'CLHeading' has been explicitly marked unavailable here
@interface CLHeading : NSObject <NSCopying, NSSecureCoding>
^
SwiftDriverJobDiscovery normal arm64 Compiling Turf.swift, WKT.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 Compiling\ Codable.swift,\ CoreLocation.swift,\ Double.swift,\ ForeignMemberContainer.swift,\ GeoJSON.swift,\ HTTPURLResponse.swift,\ Measurement.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Codable.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/CoreLocation.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Double.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/ForeignMemberContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/GeoJSON.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/HTTPURLResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Measurement.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Codable.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/CoreLocation.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Double.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/ForeignMemberContainer.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/GeoJSON.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/GeoJSON.swift:10:1: warning: extension declares a conformance of imported type 'BoundingBox' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Turf' introduce this conformance in the future
extension BoundingBox: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/GeoJSON.swift:10:1: note: add '@retroactive' to silence this warning
extension BoundingBox: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/HTTPURLResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Measurement.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CustomValueOptionSet.swift,\ Directions.swift,\ DirectionsError.swift,\ DirectionsOptions.swift,\ DirectionsResult.swift,\ DrivingSide.swift,\ Array.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/CustomValueOptionSet.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsResult.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Array.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/CustomValueOptionSet.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsError.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsResult.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Array.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling BoundingBox.swift, Codable.swift, Consumer+WKT.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 Compiling\ RouteRefreshSource.swift,\ RouteResponse.swift,\ RouteStep.swift,\ SilentWaypoint.swift,\ SpokenInstruction.swift,\ TollCollection.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshSource.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SilentWaypoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SpokenInstruction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshSource.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SilentWaypoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SpokenInstruction.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling InputOrigin.swift, Name.swift, Parsed.swift, ParsedValues.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ Tracepoint.swift,\ MapboxStreetsRoadClass.swift,\ Matrix.swift,\ MatrixError.swift,\ MatrixOptions.swift,\ MatrixResponse.swift,\ OfflineDirections.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Tracepoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Tracepoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixError.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Polyline.swift (in target 'Polyline' from project 'Polyline')
SwiftDriver\ Compilation Polyline normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Polyline' from project 'Polyline')
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 Polyline -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline-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/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.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/Polyline.build/Debug-xros/Polyline.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.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/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Consumer.swift, CoreLocation.swift, Feature.swift (in target 'Turf' from project 'Turf')
SwiftCompile normal arm64 Compiling\ RoadClasses.swift,\ Route.swift,\ RouteLeg.swift,\ RouteLegAttributes.swift,\ RouteOptions.swift,\ RouteRefreshResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Route.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLeg.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLegAttributes.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Route.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLeg.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteLegAttributes.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ AdministrativeRegion.swift,\ Amenity.swift,\ AmenityType.swift,\ AttributeOptions.swift,\ BlockedLanes.swift,\ Congestion.swift,\ Credentials.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AdministrativeRegion.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Amenity.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AmenityType.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Congestion.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AdministrativeRegion.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Amenity.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AmenityType.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Congestion.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling GeometryCollection.swift, LineString.swift, MultiLineString.swift (in target 'Turf' from project 'Turf')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Polyline.o normal (in target 'Polyline' from project 'Polyline')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Polyline
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug-xros/Polyline.build/Objects-normal/arm64/Polyline.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Polyline.o
SwiftDriverJobDiscovery normal arm64 Emitting module for ArgumentParser (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftDriver\ Compilation\ Requirements 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-Requirements -- /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-xros/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -enable-experimental-feature StrictConcurrency -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/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-xros/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-xros/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-xros/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/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-xros/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Platform.swift, SequenceExtensions.swift, StringExtensions.swift, Tree.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftDriver\ Compilation Turf normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Turf' from project 'Turf')
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 Turf -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf-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/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.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/Turf.build/Debug-xros/Turf.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.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/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ Isochrones.swift,\ Junction.swift,\ Lane.swift,\ LaneIndication.swift,\ MapMatchingResponse.swift,\ Match.swift,\ MatchOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Isochrones.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Lane.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Match.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Isochrones.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Lane.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Match.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Turf.o normal (in target 'Turf' from project 'Turf')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug-xros/Turf.build/Objects-normal/arm64/Turf.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Turf.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ArgumentParser.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-xros/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.abi.json (in target 'ArgumentParser' from project 'swift-argument-parser')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
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-argument-parser.build/Debug-xros/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ArgumentParser.swiftmodule/arm64-apple-xros.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling Codable.swift, CoreLocation.swift, Double.swift, ForeignMemberContainer.swift, GeoJSON.swift, HTTPURLResponse.swift, Measurement.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 Compiling\ String.swift,\ URL+Request.swift,\ Incident.swift,\ Interchange.swift,\ Intersection.swift,\ IsochroneError.swift,\ IsochroneOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/String.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/URL+Request.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/IsochroneError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/IsochroneOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 Compiling\ ProfileIdentifier.swift,\ QuickLook.swift,\ RefreshedRoute.swift,\ ResponseDisposition.swift,\ RestStop.swift,\ RoadClassExclusionViolation.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/QuickLook.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RefreshedRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ResponseDisposition.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClassExclusionViolation.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 Compiling\ TollPrice.swift,\ TrafficTendency.swift,\ VisualInstruction.swift,\ VisualInstructionBanner.swift,\ VisualInstructionComponent.swift,\ Waypoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TrafficTendency.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstruction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionBanner.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
SwiftEmitModule normal arm64 Emitting\ module\ for\ MapboxDirections (in target 'MapboxDirections' from project 'MapboxDirections')
EmitSwiftModule normal arm64 (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 Compiling\ TollPrice.swift,\ TrafficTendency.swift,\ VisualInstruction.swift,\ VisualInstructionBanner.swift,\ VisualInstructionComponent.swift,\ Waypoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TrafficTendency.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstruction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionBanner.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/VisualInstructionComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
Building workspace spi-builder-workspace with scheme MapboxDirections-Package
(4 failures)
BUILD FAILURE 6.1 visionOS