The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Datadog, reference 3.0.0 (f60c78), with Swift 6.1 for iOS using Xcode 16.3 on 2 Sep 2025 21:09:08 UTC.

Swift 6 data race errors: 48

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Datadog-Package -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

internal final class FeatureDataStore: DataStore {
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:628:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
    @_implementationOnly import DatadogPrivate
                         ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:633:14: warning: let 'registerObjcExceptionHandlerOnce' is not concurrency-safe because non-'Sendable' type '() -> Void' may have shared mutable state; this is an error in the Swift 6 language mode
internal let registerObjcExceptionHandlerOnce: () -> Void = {
             ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:633:14: note: add '@MainActor' to make let 'registerObjcExceptionHandlerOnce' part of global actor 'MainActor'
internal let registerObjcExceptionHandlerOnce: () -> Void = {
             ^
@MainActor
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:633:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal let registerObjcExceptionHandlerOnce: () -> Void = {
             ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:634:19: warning: reference to static property 'rethrow' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
    ObjcException.rethrow = __dd_private_ObjcExceptionHandler.rethrow
                  ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DDError.swift:90:23: note: static property declared here
    public static var rethrow: ((() -> Void) throws -> Void) = { $0() }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:207:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            DD.logger.error(
               ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:246:17: warning: capture of 'allStorages' with non-sendable type '[FeatureStorage]' in a '@Sendable' closure
                allStorages.forEach { $0.migrateUnauthorizedData(toConsent: trackingConsent) }
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:10:17: note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
internal struct FeatureStorage {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:246:77: warning: capture of 'trackingConsent' with non-sendable type 'TrackingConsent' in a '@Sendable' closure
                allStorages.forEach { $0.migrateUnauthorizedData(toConsent: trackingConsent) }
                                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/TrackingConsent.swift:13:13: note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
public enum TrackingConsent: Codable {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
import DatadogInternal
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:246:77: warning: capture of 'trackingConsent' with non-sendable type 'TrackingConsent' in an isolated closure; this is an error in the Swift 6 language mode
                allStorages.forEach { $0.migrateUnauthorizedData(toConsent: trackingConsent) }
                                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/TrackingConsent.swift:13:13: note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
public enum TrackingConsent: Codable {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:268:36: warning: capture of 'messageReceiver' with non-sendable type 'any FeatureMessageReceiver' in a '@Sendable' closure
            self.bus.queue.async { messageReceiver.receive(message: .context(context), from: self) }
                                   ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessageReceiver.swift:14:17: note: protocol 'FeatureMessageReceiver' does not conform to the 'Sendable' protocol
public protocol FeatureMessageReceiver {
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:268:78: warning: capture of 'context' with non-sendable type 'DatadogContext' in a '@Sendable' closure
            self.bus.queue.async { messageReceiver.receive(message: .context(context), from: self) }
                                                                             ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/DatadogContext.swift:9:15: note: struct 'DatadogContext' does not conform to the 'Sendable' protocol
public struct DatadogContext {
              ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:268:94: warning: capture of 'self' with non-sendable type 'DatadogCore' in a '@Sendable' closure
            self.bus.queue.async { messageReceiver.receive(message: .context(context), from: self) }
                                                                                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:17:22: note: class 'DatadogCore' does not conform to the 'Sendable' protocol
internal final class DatadogCore {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:426:20: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                DD.logger.error(
                   ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:552:112: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        subscribe(\.batteryStatus, to: BatteryStatusPublisher(notificationCenter: notificationCenter, device: .current))
                                                                                                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
                                                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BrightnessLevelPublisher.swift:23:61: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    init(notificationCenter: NotificationCenter = .default, screen: UIScreen = .main) {
                                                            ^
SwiftDriverJobDiscovery normal arm64 Compiling SwiftExtensions.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ PerformancePreset.swift,\ BatchMetrics.swift,\ BenchmarkURLSessionTaskDelegate.swift,\ Cryptography.swift,\ Retrying.swift,\ Versioning.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/PerformancePreset.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/SDKMetrics/BatchMetrics.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/SDKMetrics/BenchmarkURLSessionTaskDelegate.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Utils/Cryptography.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Utils/Retrying.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Versioning.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/PerformancePreset.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/SDKMetrics/BatchMetrics.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/SDKMetrics/BenchmarkURLSessionTaskDelegate.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Utils/Cryptography.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Utils/Retrying.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Versioning.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling PLCrashReporterIntegration.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ AccountInfoPublisher.swift,\ ApplicationStatePublisher.swift,\ ApplicationVersionPublisher.swift,\ BatteryStatusPublisher.swift,\ BrightnessLevelPublisher.swift,\ CarrierInfoPublisher.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/AccountInfoPublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ApplicationStatePublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ApplicationVersionPublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BrightnessLevelPublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/CarrierInfoPublisher.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/DerivedSources/resource_bundle_accessor.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/AccountInfoPublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ApplicationStatePublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ApplicationVersionPublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:35:50: warning: main actor-isolated property 'isBatteryMonitoringEnabled' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        self.isBatteryMonitoringEnabled = device.isBatteryMonitoringEnabled
                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:52:61: note: property declared here
@property(nonatomic,getter=isBatteryMonitoringEnabled) BOOL batteryMonitoringEnabled API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // default is NO
                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:37:16: warning: main actor-isolated property 'isBatteryMonitoringEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        device.isBatteryMonitoringEnabled = true // enabled to check the battery level
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:52:61: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isBatteryMonitoringEnabled) BOOL batteryMonitoringEnabled API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // default is NO
                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:39:33: warning: main actor-isolated property 'batteryState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            state: .init(device.batteryState),
                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:53:61: note: property declared here
@property(nonatomic,readonly) UIDeviceBatteryState          batteryState API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // UIDeviceBatteryStateUnknown if monitoring disabled
                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:40:27: warning: main actor-isolated property 'batteryLevel' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            level: device.batteryLevel
                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:54:61: note: property declared here
@property(nonatomic,readonly) float                         batteryLevel API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // 0 .. 1.0. -1.0 if UIDeviceBatteryStateUnknown
                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:63:24: warning: converting non-sendable function value to '@Sendable (Notification) -> Void' may introduce data races
                using: block
                       ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:69:24: warning: converting non-sendable function value to '@Sendable (Notification) -> Void' may introduce data races
                using: block
                       ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:51:37: warning: main actor-isolated property 'batteryState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                state: .init(device.batteryState),
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:53:61: note: property declared here
@property(nonatomic,readonly) UIDeviceBatteryState          batteryState API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // UIDeviceBatteryStateUnknown if monitoring disabled
                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:52:31: warning: main actor-isolated property 'batteryLevel' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                level: device.batteryLevel
                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:54:61: note: property declared here
@property(nonatomic,readonly) float                         batteryLevel API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // 0 .. 1.0. -1.0 if UIDeviceBatteryStateUnknown
                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:75:16: warning: main actor-isolated property 'isBatteryMonitoringEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        device.isBatteryMonitoringEnabled = isBatteryMonitoringEnabled
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:52:61: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isBatteryMonitoringEnabled) BOOL batteryMonitoringEnabled API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // default is NO
                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BatteryStatusPublisher.swift:74:10: note: add '@MainActor' to make instance method 'cancel()' part of global actor 'MainActor'
    func cancel() {
         ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BrightnessLevelPublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BrightnessLevelPublisher.swift:23:61: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    init(notificationCenter: NotificationCenter = .default, screen: UIScreen = .main) {
                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BrightnessLevelPublisher.swift:26:42: warning: main actor-isolated property 'brightness' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        self.initialValue = Float(screen.brightness)
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:76:30: note: property declared here
@property(nonatomic) CGFloat brightness API_AVAILABLE(ios(5.0)) API_UNAVAILABLE(tvos);        // 0 .. 1.0, where 1.0 is maximum brightness. Only supported by main screen.
                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BrightnessLevelPublisher.swift:42:24: warning: converting non-sendable function value to '@Sendable (Notification) -> Void' may introduce data races
                using: block
                       ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/BrightnessLevelPublisher.swift:34:40: warning: main actor-isolated property 'brightness' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            receiver(Float(self.screen.brightness))
                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:76:30: note: property declared here
@property(nonatomic) CGFloat brightness API_AVAILABLE(ios(5.0)) API_UNAVAILABLE(tvos);        // 0 .. 1.0, where 1.0 is maximum brightness. Only supported by main screen.
                             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/CarrierInfoPublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling LogEventAttributes.swift, LogMessage.swift, RUMCoreContext.swift, RUMDataModels.swift, RUMPayloadMessages.swift, RUMWebViewContext.swift, SessionReplayConfiguration.swift, SessionReplayCoreContext.swift, SpanCoreContext.swift, SpanID.swift, TraceID.swift, WebViewMessage.swift (in target 'DatadogInternal' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, CrashContextProvider.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ FilesOrchestrator.swift,\ DataReader.swift,\ FileReader.swift,\ Reader.swift,\ Storage+TLV.swift,\ AsyncWriter.swift,\ FileWriter.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FilesOrchestrator.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Reading/DataReader.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Reading/FileReader.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Reading/Reader.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Storage+TLV.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/AsyncWriter.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/FileWriter.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FilesOrchestrator.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Reading/DataReader.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Reading/FileReader.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Reading/FileReader.swift:42:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            DD.logger.error("(\(orchestrator.trackName)) Failed to read data from file", error: error)
               ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Reading/FileReader.swift:64:30: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            failure.map { DD.logger.error($0) }
                             ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Reading/Reader.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Storage+TLV.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/AsyncWriter.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/AsyncWriter.swift:21:23: warning: capture of 'self' with non-sendable type 'AsyncWriter' in a '@Sendable' closure
        queue.async { writer.write(value: value, metadata: metadata) }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/AsyncWriter.swift:11:17: note: consider making struct 'AsyncWriter' conform to the 'Sendable' protocol
internal struct AsyncWriter: Writer {
                ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/AsyncWriter.swift:21:43: warning: capture of 'value' with non-sendable type 'T' in a '@Sendable' closure
        queue.async { writer.write(value: value, metadata: metadata) }
                                          ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/AsyncWriter.swift:20:16: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
    func write<T: Encodable, M: Encodable>(value: T, metadata: M?) {
               ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/AsyncWriter.swift:21:60: warning: capture of 'metadata' with non-sendable type 'M?' in a '@Sendable' closure
        queue.async { writer.write(value: value, metadata: metadata) }
                                                           ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/AsyncWriter.swift:20:30: note: consider making generic parameter 'M' conform to the 'Sendable' protocol
    func write<T: Encodable, M: Encodable>(value: T, metadata: M?) {
                             ^
                                         , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/FileWriter.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/FileWriter.swift:46:20: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                DD.logger.error("(\(orchestrator.trackName)) Failed to encode metadata", error: error)
                   ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/FileWriter.swift:55:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            DD.logger.error("(\(orchestrator.trackName)) Failed to encode value", error: error)
               ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/FileWriter.swift:68:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            DD.logger.error("(\(orchestrator.trackName)) Failed to get writable file for \(writeSize) bytes", error: error)
               ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Writing/FileWriter.swift:80:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            DD.logger.error("(\(orchestrator.trackName)) Failed to write \(writeSize) bytes to file", error: error)
               ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
SwiftDriver\ Compilation DatadogInternal normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogInternal' from project 'Datadog')
    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 DatadogInternal -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal-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/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.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/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CrashReportMinifier.swift, DDCrashReportBuilder.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ ContextValuePublisher.swift,\ DatadogContextProvider.swift,\ LaunchInfoPublisher.swift,\ LocaleInfoPublisher.swift,\ LowPowerModePublisher.swift,\ NetworkConnectionInfoPublisher.swift,\ ServerOffsetPublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ContextValuePublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LocaleInfoPublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LowPowerModePublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/NetworkConnectionInfoPublisher.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ServerOffsetPublisher.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ContextValuePublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:75:23: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
        queue.async { self.receivers.append(receiver) }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:39:22: note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
internal final class DatadogContextProvider {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:75:45: warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<DatadogContext>' (aka '(DatadogContext) -> ()') in a '@Sendable' closure
        queue.async { self.receivers.append(receiver) }
                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:75:45: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async { self.receivers.append(receiver) }
                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:23: warning: capture of 'block' with non-sendable type '(DatadogContext) -> Void' in a '@Sendable' closure
        queue.async { block(self.context) }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:23: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async { block(self.context) }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:29: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
        queue.async { block(self.context) }
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:39:22: note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
internal final class DatadogContextProvider {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:13: warning: capture of 'block' with non-sendable type '(inout DatadogContext) -> Void' in a '@Sendable' closure
            block(&self.context)
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            block(&self.context)
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:20: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
            block(&self.context)
                   ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:39:22: note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
internal final class DatadogContextProvider {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:102:26: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in an isolated closure; this is an error in the Swift 6 language mode
                receiver(self.context)
                         ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:39:22: note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
internal final class DatadogContextProvider {
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
    @_implementationOnly import DatadogPrivate
                         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LocaleInfoPublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LocaleInfoPublisher.swift:37:17: warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<LocaleInfo>' (aka '(LocaleInfo) -> ()') in a '@Sendable' closure
                receiver(updatedLocale)
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LocaleInfoPublisher.swift:37:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                receiver(updatedLocale)
                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LowPowerModePublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LowPowerModePublisher.swift:48:21: warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<Bool>' (aka '(Bool) -> ()') in a '@Sendable' closure
                    receiver(processInfo.isLowPowerModeEnabled)
                    ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LowPowerModePublisher.swift:48:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    receiver(processInfo.isLowPowerModeEnabled)
                    ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LowPowerModePublisher.swift:48:21: warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<Bool>' (aka '(Bool) -> ()') in a '@Sendable' closure
                    receiver(processInfo.isLowPowerModeEnabled)
                    ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LowPowerModePublisher.swift:48:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    receiver(processInfo.isLowPowerModeEnabled)
                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/NetworkConnectionInfoPublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/NetworkConnectionInfoPublisher.swift:43:13: warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<NetworkConnectionInfo?>' (aka '(Optional<NetworkConnectionInfo>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
            receiver(info)
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/NetworkConnectionInfoPublisher.swift:43:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            receiver(info)
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ServerOffsetPublisher.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ServerOffsetPublisher.swift:49:24: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                    DD.logger.debug(
                       ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/ServerOffsetPublisher.swift:58:24: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                    DD.logger.error(
                       ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogInternal.o normal (in target 'DatadogInternal' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogInternal.o
SwiftDriverJobDiscovery normal arm64 Compiling PLCrashReporterPlugin.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ DatadogConfiguration+objc.swift,\ DatadogConfiguration.swift,\ CITestIntegration.swift,\ KronosClock.swift,\ KronosDNSResolver.swift,\ KronosData+Bytes.swift,\ KronosInternetAddress.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/DatadogConfiguration+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/DatadogConfiguration.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosClock.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosDNSResolver.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosData+Bytes.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosInternetAddress.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/DatadogConfiguration+objc.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/DatadogConfiguration.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
    static let active: CITestIntegration? = CITestIntegration()
               ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:15:16: note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
internal class CITestIntegration {
               ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
    static let active: CITestIntegration? = CITestIntegration()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let active: CITestIntegration? = CITestIntegration()
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosClock.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosDNSResolver.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosData+Bytes.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosInternetAddress.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CrashReportSender.swift, CrashReport.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ DataUploader.swift,\ FeatureUpload.swift,\ HTTPClient.swift,\ URLSessionClient.swift,\ Datadog+Internal.swift,\ Datadog+objc.swift,\ Datadog.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploader.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/FeatureUpload.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/URLSessionClient.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog+Internal.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploader.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/FeatureUpload.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/HTTPClient.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/URLSessionClient.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/URLSessionClient.swift:40:13: warning: capture of 'completion' with non-sendable type '(Result<HTTPURLResponse, any Error>) -> Void' in a '@Sendable' closure
            completion(httpClientResult(for: (data, response, error)))
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/URLSessionClient.swift:40:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completion(httpClientResult(for: (data, response, error)))
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog+Internal.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog+objc.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:276:13: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            consolePrint("\(error)", .error)
            ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
           ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:306:12: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        DD.logger = InternalLogger(
           ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:309:28: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            printFunction: consolePrint,
                           ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
           ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:377:13: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            consolePrint("⚠️ Overriding verbosity, upload frequency, and sample rates due to \(LaunchArguments.Debug) launch argument", .warn)
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
           ^
SwiftCompile normal arm64 Compiling\ MessageBus.swift,\ DataEncryption.swift,\ Directories.swift,\ EventGenerator.swift,\ FeatureStorage.swift,\ Directory.swift,\ File.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/DataEncryption.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Directories.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/EventGenerator.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Files/Directory.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Files/File.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:46:30: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
            guard let core = self.core, let configuration = self.configuration else {
                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:62:23: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
        queue.async { self.core = core }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:62:35: warning: capture of 'core' with non-sendable type 'any DatadogCoreProtocol' in a '@Sendable' closure
        queue.async { self.core = core }
                                  ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DatadogCoreProtocol.swift:14:17: note: protocol 'DatadogCoreProtocol' does not conform to the 'Sendable' protocol
public protocol DatadogCoreProtocol: AnyObject, MessageSending, AdditionalContextSharing, Storage {
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
import DatadogInternal
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:71:23: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
        queue.async { self.bus[key] = receiver }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:71:39: warning: capture of 'receiver' with non-sendable type 'any FeatureMessageReceiver' in a '@Sendable' closure
        queue.async { self.bus[key] = receiver }
                                      ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessageReceiver.swift:14:17: note: protocol 'FeatureMessageReceiver' does not conform to the 'Sendable' protocol
public protocol FeatureMessageReceiver {
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:78:23: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
        queue.async { self.bus.removeValue(forKey: key) }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:98:30: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
            guard let core = self.core else {
                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:103:37: warning: capture of 'message' with non-sendable type 'FeatureMessage' in a '@Sendable' closure
                $0.receive(message: message, from: core)
                                    ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessage.swift:10:13: note: enum 'FeatureMessage' does not conform to the 'Sendable' protocol
public enum FeatureMessage {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:107:17: warning: capture of 'fallback' with non-sendable type '() -> Void' in a '@Sendable' closure
                fallback()
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:107:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                fallback()
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:103:37: warning: capture of 'message' with non-sendable type 'FeatureMessage' in an isolated closure; this is an error in the Swift 6 language mode
                $0.receive(message: message, from: core)
                                    ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessage.swift:10:13: note: enum 'FeatureMessage' does not conform to the 'Sendable' protocol
public enum FeatureMessage {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:121:13: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
            self.configuration = self.configuration.map {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:122:33: warning: capture of 'configuration' with non-sendable type 'ConfigurationTelemetry' in a '@Sendable' closure
                $0.merged(with: configuration)
                                ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:10:15: note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
public struct ConfigurationTelemetry: Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:122:33: warning: capture of 'configuration' with non-sendable type 'ConfigurationTelemetry' in an isolated closure; this is an error in the Swift 6 language mode
                $0.merged(with: configuration)
                                ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:10:15: note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
public struct ConfigurationTelemetry: Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:123:18: warning: implicit capture of 'configuration' requires that 'ConfigurationTelemetry' conforms to 'Sendable'; this is an error in the Swift 6 language mode
            } ?? configuration
                 ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:10:15: note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
public struct ConfigurationTelemetry: Equatable {
              ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/DataEncryption.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Directories.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/EventGenerator.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:65:24: warning: capture of 'consent' with non-sendable type 'TrackingConsent' in a '@Sendable' closure
                switch consent {
                       ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/TrackingConsent.swift:13:13: note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
public enum TrackingConsent: Codable {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
import DatadogInternal
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:67:25: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
                    try directories.unauthorized.deleteAllFiles()
                        ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:10:17: note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
internal struct FeatureStorage {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:85:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
                try directories.unauthorized.deleteAllFiles()
                    ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:10:17: note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
internal struct FeatureStorage {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:95:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
                try directories.unauthorized.deleteAllFiles()
                    ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:10:17: note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
internal struct FeatureStorage {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:125:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            DD.logger.error("Can't determine track name for feature named '\(featureName)'")
               ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Files/Directory.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Files/File.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling RUMApplicationScope.swift, RUMResourceScope.swift, RUMScopeDependencies.swift, RUMSessionScope.swift, RUMUserActionScope.swift, RUMViewScope.swift, LaunchReasonResolver.swift, RUMOffViewEventsHandlingRule.swift, ViewCache.swift, ViewIdentifier.swift, RUMMonitorProtocol+Convenience.swift (in target 'DatadogRUM' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ TLVBlock.swift,\ TLVBlockReader.swift,\ BackgroundTaskCoordinator.swift,\ DataUploadConditions.swift,\ DataUploadDelay.swift,\ DataUploadStatus.swift,\ DataUploadWorker.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlock.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlockReader.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadConditions.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadDelay.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadStatus.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlock.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlock.swift:16:10: warning: associated value 'invalidDataType(got:)' of 'Sendable'-conforming enum 'TLVBlockError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case invalidDataType(got: Any)
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlockReader.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:31:10: warning: main actor-isolated instance method 'beginBgTask' cannot be used to satisfy nonisolated requirement from protocol 'UIKitAppBackgroundTaskCoordinator'; this is an error in the Swift 6 language mode
    func beginBgTask(_ handler: (() -> Void)?) -> UIBackgroundTaskIdentifier {
         ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:31:10: note: add 'nonisolated' to 'beginBgTask' to make this instance method not isolated to the actor
    func beginBgTask(_ handler: (() -> Void)?) -> UIBackgroundTaskIdentifier {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:30:26: note: add '@preconcurrency' to the 'UIKitAppBackgroundTaskCoordinator' conformance to defer isolation checking to run time
extension UIApplication: UIKitAppBackgroundTaskCoordinator {
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:26:10: note: mark the protocol requirement 'beginBgTask' 'async' to allow actor-isolated conformances
    func beginBgTask(_ handler: (() -> Void)?) -> UIBackgroundTaskIdentifier
         ^
                                               async
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:36:10: warning: main actor-isolated instance method 'endBgTask' cannot be used to satisfy nonisolated requirement from protocol 'UIKitAppBackgroundTaskCoordinator'; this is an error in the Swift 6 language mode
    func endBgTask(_ identifier: UIBackgroundTaskIdentifier) {
         ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:36:10: note: add 'nonisolated' to 'endBgTask' to make this instance method not isolated to the actor
    func endBgTask(_ identifier: UIBackgroundTaskIdentifier) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:27:10: note: mark the protocol requirement 'endBgTask' 'async' to allow actor-isolated conformances
    func endBgTask(_ identifier: UIBackgroundTaskIdentifier)
         ^
                                                             async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadConditions.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadDelay.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadStatus.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:78:20: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                DD.logger.debug("⏳ (\(self.featureName)) Uploading batches...")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:83:20: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                DD.logger.debug("💡 (\(self.featureName)) No upload. Batch to upload: \(batchLabel), System conditions: \(blockersForUpload.description)")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:128:28: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                        DD.logger.debug("   → (\(self.featureName)) not delivered, will be retransmitted: \(uploadStatus.userDebugDescription)")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:134:24: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                    DD.logger.debug("   → (\(self.featureName)) accepted, won't be retransmitted: \(uploadStatus.userDebugDescription)")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:155:24: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                    DD.logger.error("⚠️ Make sure that the provided token still exists and you're targeting the relevant Datadog site.")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
SwiftDriverJobDiscovery normal arm64 Compiling CrashReporting.swift, CrashReportingFeature.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftDriver\ Compilation DatadogCrashReporting normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogCrashReporting' from project 'Datadog')
    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 DatadogCrashReporting -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CrashReporter.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting-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/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/plcrashreporter/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.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/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling PerformancePreset.swift, BatchMetrics.swift, BenchmarkURLSessionTaskDelegate.swift, Cryptography.swift, Retrying.swift, Versioning.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ KronosNSTimer+ClosureKit.swift,\ KronosNTPClient.swift,\ KronosNTPPacket.swift,\ KronosNTPProtocol.swift,\ KronosTimeFreeze.swift,\ KronosTimeStorage.swift,\ URLSessionInstrumentation+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosNSTimer+ClosureKit.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosNTPClient.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosNTPPacket.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosNTPProtocol.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosTimeFreeze.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosTimeStorage.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/NetworkInstrumentation/URLSessionInstrumentation+objc.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosNSTimer+ClosureKit.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosNTPClient.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosNTPPacket.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosNTPProtocol.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosTimeFreeze.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosTimeStorage.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/NetworkInstrumentation/URLSessionInstrumentation+objc.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, AccountInfoPublisher.swift, ApplicationStatePublisher.swift, ApplicationVersionPublisher.swift, BatteryStatusPublisher.swift, BrightnessLevelPublisher.swift, CarrierInfoPublisher.swift (in target 'DatadogCore' from project 'Datadog')
ExtractAppIntentsMetadata (in target 'DatadogInternal' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogInternal --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogInternal --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogInternal.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogInternal.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/DatadogInternal.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/DatadogInternal.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-02 14:09:05.606 appintentsmetadataprocessor[1238:6270] Starting appintentsmetadataprocessor export
2025-09-02 14:09:05.647 appintentsmetadataprocessor[1238:6270] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogInternal.o (in target 'DatadogInternal' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogInternal.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogWebViewTracking.o normal (in target 'DatadogWebViewTracking' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogWebViewTracking.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogTrace.o normal (in target 'DatadogTrace' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogTrace.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogSessionReplay.o normal (in target 'DatadogSessionReplay' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogSessionReplay.o
SwiftDriverJobDiscovery normal arm64 Compiling FilesOrchestrator.swift, DataReader.swift, FileReader.swift, Reader.swift, Storage+TLV.swift, AsyncWriter.swift, FileWriter.swift (in target 'DatadogCore' from project 'Datadog')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogLogs.o normal (in target 'DatadogLogs' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogLogs.o
SwiftDriverJobDiscovery normal arm64 Compiling ContextValuePublisher.swift, DatadogContextProvider.swift, LaunchInfoPublisher.swift, LocaleInfoPublisher.swift, LowPowerModePublisher.swift, NetworkConnectionInfoPublisher.swift, ServerOffsetPublisher.swift (in target 'DatadogCore' from project 'Datadog')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCrashReporting.o normal (in target 'DatadogCrashReporting' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCrashReporting.o
SwiftDriverJobDiscovery normal arm64 Compiling TrackingConsentPublisher.swift, UserInfoPublisher.swift, DataStore+TLV.swift, DataStoreFileReader.swift, DataStoreFileWriter.swift, FeatureDataStore.swift, DatadogCore.swift (in target 'DatadogCore' from project 'Datadog')
ExtractAppIntentsMetadata (in target 'DatadogWebViewTracking' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogWebViewTracking --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogWebViewTracking --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogWebViewTracking.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogWebViewTracking.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/DatadogWebViewTracking.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/DatadogWebViewTracking.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-02 14:09:05.823 appintentsmetadataprocessor[1249:6345] Starting appintentsmetadataprocessor export
2025-09-02 14:09:05.868 appintentsmetadataprocessor[1249:6345] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogTrace' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogTrace --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogTrace --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogTrace.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogTrace.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/DatadogTrace.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/DatadogTrace.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-02 14:09:05.841 appintentsmetadataprocessor[1250:6368] Starting appintentsmetadataprocessor export
2025-09-02 14:09:05.883 appintentsmetadataprocessor[1250:6368] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogLogs' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogLogs --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogLogs --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogLogs.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogLogs.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/DatadogLogs.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/DatadogLogs.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-02 14:09:05.847 appintentsmetadataprocessor[1251:6373] Starting appintentsmetadataprocessor export
2025-09-02 14:09:05.888 appintentsmetadataprocessor[1251:6373] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogCrashReporting' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogCrashReporting --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogCrashReporting --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCrashReporting.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCrashReporting.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/DatadogCrashReporting.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/DatadogCrashReporting.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-02 14:09:05.859 appintentsmetadataprocessor[1252:6376] Starting appintentsmetadataprocessor export
2025-09-02 14:09:05.897 appintentsmetadataprocessor[1252:6376] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogSessionReplay' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogSessionReplay --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogSessionReplay --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogSessionReplay.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogSessionReplay.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/DatadogSessionReplay.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/DatadogSessionReplay.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-02 14:09:05.889 appintentsmetadataprocessor[1253:6386] Starting appintentsmetadataprocessor export
2025-09-02 14:09:05.927 appintentsmetadataprocessor[1253:6386] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogWebViewTracking.o (in target 'DatadogWebViewTracking' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogWebViewTracking.o
SwiftDriverJobDiscovery normal arm64 Compiling DatadogConfiguration+objc.swift, DatadogConfiguration.swift, CITestIntegration.swift, KronosClock.swift, KronosDNSResolver.swift, KronosData+Bytes.swift, KronosInternetAddress.swift (in target 'DatadogCore' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling DataUploader.swift, FeatureUpload.swift, HTTPClient.swift, URLSessionClient.swift, Datadog+Internal.swift, Datadog+objc.swift, Datadog.swift (in target 'DatadogCore' from project 'Datadog')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogTrace.o (in target 'DatadogTrace' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogTrace.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogLogs.o (in target 'DatadogLogs' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogLogs.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCrashReporting.o (in target 'DatadogCrashReporting' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCrashReporting.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogSessionReplay.o (in target 'DatadogSessionReplay' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogSessionReplay.o
SwiftDriverJobDiscovery normal arm64 Compiling MessageBus.swift, DataEncryption.swift, Directories.swift, EventGenerator.swift, FeatureStorage.swift, Directory.swift, File.swift (in target 'DatadogCore' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling TLVBlock.swift, TLVBlockReader.swift, BackgroundTaskCoordinator.swift, DataUploadConditions.swift, DataUploadDelay.swift, DataUploadStatus.swift, DataUploadWorker.swift (in target 'DatadogCore' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling KronosNSTimer+ClosureKit.swift, KronosNTPClient.swift, KronosNTPPacket.swift, KronosNTPProtocol.swift, KronosTimeFreeze.swift, KronosTimeStorage.swift, URLSessionInstrumentation+objc.swift (in target 'DatadogCore' from project 'Datadog')
SwiftDriver\ Compilation DatadogCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogCore' from project 'Datadog')
    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 DatadogCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DSPM_BUILD -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DatadogPrivate.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore-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/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.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/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore-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-iphoneos/DatadogCore.o normal (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCore.o
ExtractAppIntentsMetadata (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogCore --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogCore --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCore.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCore.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/DatadogCore.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/DatadogCore.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogCore.build/Objects-normal/arm64/DatadogCore.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-02 14:09:06.224 appintentsmetadataprocessor[1256:6412] Starting appintentsmetadataprocessor export
2025-09-02 14:09:06.259 appintentsmetadataprocessor[1256:6412] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCore.o (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogCore.o
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, Accessibility.swift, RUMDataModels+objc.swift, RUMDataModelsMapping.swift, RUMDebugging.swift, FatalErrorBuilder.swift, RUMDataStore.swift, RUMFeature.swift, RUMViewEventsFilter.swift, RequestBuilder.swift, RUMAction.swift, RUMActionsHandler.swift (in target 'DatadogRUM' from project 'Datadog')
SwiftDriver\ Compilation DatadogRUM normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogRUM' from project 'Datadog')
    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 DatadogRUM -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM-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/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.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/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM-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-iphoneos/DatadogRUM.o normal (in target 'DatadogRUM' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogRUM.o
ExtractAppIntentsMetadata (in target 'DatadogRUM' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogRUM --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogRUM --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogRUM.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogRUM.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/DatadogRUM.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/DatadogRUM.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-02 14:09:07.415 appintentsmetadataprocessor[1259:6442] Starting appintentsmetadataprocessor export
2025-09-02 14:09:07.451 appintentsmetadataprocessor[1259:6442] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogRUM.o (in target 'DatadogRUM' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogRUM.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "plcrashreporter",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.12.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/microsoft/plcrashreporter.git"
    },
    {
      "identity" : "opentelemetry-swift-packages",
      "requirement" : {
        "exact" : [
          "1.13.1"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/DataDog/opentelemetry-swift-packages.git"
    }
  ],
  "manifest_display_name" : "Datadog",
  "name" : "Datadog",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "DatadogCore",
      "targets" : [
        "DatadogCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogLogs",
      "targets" : [
        "DatadogLogs"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogTrace",
      "targets" : [
        "DatadogTrace"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogRUM",
      "targets" : [
        "DatadogRUM"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogSessionReplay",
      "targets" : [
        "DatadogSessionReplay"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogCrashReporting",
      "targets" : [
        "DatadogCrashReporting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogWebViewTracking",
      "targets" : [
        "DatadogWebViewTracking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TestUtilities",
      "module_type" : "SwiftTarget",
      "name" : "TestUtilities",
      "path" : "TestUtilities/Sources",
      "sources" : [
        "Helpers/DDAssert.swift",
        "Helpers/DateAndTime.swift",
        "Helpers/Decompression.swift",
        "Helpers/Encoding.swift",
        "Helpers/FuzzyHelpers.swift",
        "Helpers/MockNotificationCenter.swift",
        "Helpers/ModuleName.swift",
        "Helpers/SwiftExtensions.swift",
        "Helpers/TestsDirectory.swift",
        "Helpers/UIKitHelpers.swift",
        "Helpers/XCTestCase.swift",
        "Matchers/JSONDataMatcher.swift",
        "Matchers/JSONObjectMatcher.swift",
        "Matchers/LogMatcher.swift",
        "Matchers/RUMEventMatcher.swift",
        "Matchers/RUMSessionMatcher.swift",
        "Matchers/SRRequestMatcher.swift",
        "Matchers/SRSegmentMatcher.swift",
        "Matchers/SpanMatcher.swift",
        "Mocks/CrashReporting/BacktraceReportMocks.swift",
        "Mocks/CrashReporting/BacktraceReportingMocks.swift",
        "Mocks/CrashReporting/BinaryImageMocks.swift",
        "Mocks/CrashReporting/CrashReportingFeatureMocks.swift",
        "Mocks/CrashReporting/DDCrashReportMocks.swift",
        "Mocks/CrashReporting/DDThreadMocks.swift",
        "Mocks/DatadogCore/ContextValuePublisherMock.swift",
        "Mocks/DatadogCore/CoreMocks.swift",
        "Mocks/DatadogCore/DatadogContextProviderMock.swift",
        "Mocks/DatadogCore/DirectoriesMock.swift",
        "Mocks/DatadogCore/HTTPClientMock.swift",
        "Mocks/DatadogCore/KronosClockMock.swift",
        "Mocks/DatadogInternal/AccountConfigurationContextMocks.swift",
        "Mocks/DatadogInternal/AppStateProvider.swift",
        "Mocks/DatadogInternal/AttributesMocks.swift",
        "Mocks/DatadogInternal/DDErrorMocks.swift",
        "Mocks/DatadogInternal/DataStoreMock.swift",
        "Mocks/DatadogInternal/DatadogContextMock.swift",
        "Mocks/DatadogInternal/DatadogRemoteFeatureMock.swift",
        "Mocks/DatadogInternal/DateProvider.swift",
        "Mocks/DatadogInternal/EventMocks.swift",
        "Mocks/DatadogInternal/FeatureMessageMocks.swift",
        "Mocks/DatadogInternal/FeatureMessageReceiverMock.swift",
        "Mocks/DatadogInternal/FeatureRegistrationCoreMock.swift",
        "Mocks/DatadogInternal/FeatureScopeMock.swift",
        "Mocks/DatadogInternal/FileWriterMock.swift",
        "Mocks/DatadogInternal/HostsSanitizerMock.swift",
        "Mocks/DatadogInternal/MockFeature.swift",
        "Mocks/DatadogInternal/PassthroughCoreMock.swift",
        "Mocks/DatadogInternal/RUMDataModelMocks.swift",
        "Mocks/DatadogInternal/SamplerMock.swift",
        "Mocks/DatadogInternal/SingleFeatureCoreMock.swift",
        "Mocks/DatadogInternal/TelemetryMocks.swift",
        "Mocks/DatadogInternal/TelemetryReceiverMock.swift",
        "Mocks/DatadogInternal/UploadMock.swift",
        "Mocks/DatadogInternal/UploadMocks.swift",
        "Mocks/DatadogInternal/UserConfigurationContextMocks.swift",
        "Mocks/DatadogLogs/LoggingFeatureMocks.swift",
        "Mocks/DatadogRUM/AccessibilityValuesMock.swift",
        "Mocks/DatadogRUM/RUMFeatureMocks.swift",
        "Mocks/DatadogRUM/VitalMocks.swift",
        "Mocks/DatadogSessionReplay/CoreGraphicsMocks.swift",
        "Mocks/DatadogSessionReplay/FeatureFlagsMock.swift",
        "Mocks/DatadogSessionReplay/MultipartBuilderSpy.swift",
        "Mocks/DatadogSessionReplay/PrivacyOverridesMock+objc.swift",
        "Mocks/DatadogSessionReplay/QueueMocks.swift",
        "Mocks/DatadogSessionReplay/RUMContextObserverMock.swift",
        "Mocks/DatadogSessionReplay/RecorderMocks.swift",
        "Mocks/DatadogSessionReplay/ReflectionMocks.swift",
        "Mocks/DatadogSessionReplay/ResourceMocks.swift",
        "Mocks/DatadogSessionReplay/ResourceProcessorSpy.swift",
        "Mocks/DatadogSessionReplay/SRDataModelsMocks.swift",
        "Mocks/DatadogSessionReplay/SessionReplayConfigurationMocks.swift",
        "Mocks/DatadogSessionReplay/SnapshotProcessorSpy.swift",
        "Mocks/DatadogSessionReplay/SnapshotProducerMocks.swift",
        "Mocks/DatadogSessionReplay/TestScheduler.swift",
        "Mocks/DatadogTrace/NetworkInstrumentationMocks.swift",
        "Mocks/DatadogTrace/TracingFeatureMocks.swift",
        "Mocks/DatadogWebViewTracking/WebViewTrackingMocks.swift",
        "Mocks/Mockable.swift",
        "Mocks/NetworkInstrumentation/SessionDataDelegateMock.swift",
        "Mocks/NetworkInstrumentation/SessionTaskDelegateMock.swift",
        "Mocks/SystemFrameworks/CoreTelephonyMocks.swift",
        "Mocks/SystemFrameworks/FoundationMocks.swift",
        "Mocks/SystemFrameworks/UIKitMocks.swift",
        "Mocks/SystemFrameworks/WebKitMocks.swift",
        "Proxies/DatadogCoreProxy+Utils.swift",
        "Proxies/DatadogCoreProxy.swift",
        "Proxies/ServerMock.swift",
        "Spies/PrintFunctionSpy.swift"
      ],
      "target_dependencies" : [
        "DatadogCore",
        "DatadogPrivate",
        "DatadogInternal",
        "DatadogLogs",
        "DatadogRUM",
        "DatadogSessionReplay",
        "DatadogTrace",
        "DatadogCrashReporting",
        "DatadogWebViewTracking"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogWebViewTrackingTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogWebViewTrackingTests",
      "path" : "DatadogWebViewTracking/Tests",
      "sources" : [
        "MessageEmitterTests.swift",
        "WebViewTrackingTests.swift"
      ],
      "target_dependencies" : [
        "DatadogWebViewTracking",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogWebViewTracking",
      "module_type" : "SwiftTarget",
      "name" : "DatadogWebViewTracking",
      "path" : "DatadogWebViewTracking/Sources",
      "product_memberships" : [
        "DatadogWebViewTracking"
      ],
      "sources" : [
        "DDScriptMessageHandler.swift",
        "MessageEmitter.swift",
        "ObjC/WebViewTracking+objc.swift",
        "WebViewTracking.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogTraceTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogTraceTests",
      "path" : "DatadogTrace/Tests",
      "sources" : [
        "ContextMessageReceiverTests.swift",
        "DDNoopTracerTests.swift",
        "DDSpanContextTests.swift",
        "DDSpanTests.swift",
        "DatadogTracer+InjectAndExtract.swift",
        "DatadogTracer+SamplingTests.swift",
        "OpenTelemetry/OTelAttributeValue+DatadogTests.swift",
        "OpenTelemetry/OTelSpanId+DatadogTests.swift",
        "OpenTelemetry/OTelSpanLinkTests.swift",
        "OpenTelemetry/OTelSpanTests.swift",
        "OpenTelemetry/OTelTraceId+DatadogTests.swift",
        "OpenTelemetry/OTelTraceState+DatadogTests.swift",
        "Span/SpanEventBuilderTests.swift",
        "Span/SpanSanitizerTests.swift",
        "Span/SpanWriteContextTests.swift",
        "TraceConfigurationTests.swift",
        "TraceTests.swift",
        "TracingURLSessionHandlerTests.swift",
        "Utils/ActiveSpansPoolTests.swift",
        "Utils/Casting+Tracing.swift",
        "Utils/WarningsTests.swift"
      ],
      "target_dependencies" : [
        "DatadogTrace",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogTrace",
      "module_type" : "SwiftTarget",
      "name" : "DatadogTrace",
      "path" : "DatadogTrace/Sources",
      "product_dependencies" : [
        "OpenTelemetryApi"
      ],
      "product_memberships" : [
        "DatadogTrace"
      ],
      "sources" : [
        "DDFormat.swift",
        "DDNoOps.swift",
        "DDSpan.swift",
        "DDSpanContext.swift",
        "DatadogTracer.swift",
        "Feature/MessageReceivers.swift",
        "Feature/RequestBuilder.swift",
        "Feature/TraceFeature.swift",
        "Integrations/TracingURLSessionHandler.swift",
        "Integrations/TracingWithLoggingIntegration.swift",
        "Objc/OpenTracing/OTSpan+objc.swift",
        "Objc/OpenTracing/OTSpanContext+objc.swift",
        "Objc/OpenTracing/OTTracer+objc.swift",
        "Objc/Tracing/DDSpan+objc.swift",
        "Objc/Tracing/DDSpanContext+objc.swift",
        "Objc/Tracing/Propagation/B3HTTPHeadersWriter+objc.swift",
        "Objc/Tracing/Propagation/HTTPHeadersWriter+objc.swift",
        "Objc/Tracing/Propagation/TraceContextInjection+objc.swift",
        "Objc/Tracing/Propagation/W3CHTTPHeadersWriter+objc.swift",
        "Objc/Tracing/Trace+objc.swift",
        "Objc/Tracing/Utils/Casting+Tracing.swift",
        "OpenTelemetry/NOPOTelSpan.swift",
        "OpenTelemetry/NOPOTelSpanBuilder.swift",
        "OpenTelemetry/OTelAttributeValue+Datadog.swift",
        "OpenTelemetry/OTelSpan.swift",
        "OpenTelemetry/OTelSpanBuilder.swift",
        "OpenTelemetry/OTelSpanId+Datadog.swift",
        "OpenTelemetry/OTelSpanLink.swift",
        "OpenTelemetry/OTelTraceId+Datadog.swift",
        "OpenTelemetry/OTelTraceState+Datadog.swift",
        "OpenTelemetry/OTelTracerProvider.swift",
        "OpenTracing/OTConstants.swift",
        "OpenTracing/OTFormat.swift",
        "OpenTracing/OTReference.swift",
        "OpenTracing/OTSpan.swift",
        "OpenTracing/OTSpanContext.swift",
        "OpenTracing/OTTracer.swift",
        "Scrubbing/SpanEventMapper.swift",
        "Span/SpanEventBuilder.swift",
        "Span/SpanEventEncoder.swift",
        "Span/SpanSanitizer.swift",
        "Span/SpanTagsReducer.swift",
        "Span/SpanWriteContext.swift",
        "Trace.swift",
        "TraceConfiguration.swift",
        "Tracer.swift",
        "Utils/ActiveSpansPool.swift",
        "Utils/Casting.swift",
        "Utils/Warnings.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogSessionReplayTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogSessionReplayTests",
      "path" : "DatadogSessionReplay/Tests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogSessionReplay/Tests/Resources/Assets.xcassets",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "DDSessionReplayOverridesTests.swift",
        "DDSessionReplayTests.swift",
        "Feature/RUMContextReceiverTests.swift",
        "Feature/RequestBuilder/JSON/SegmentJSONTests.swift",
        "Feature/RequestBuilder/Multipart/MultipartFormDataTests.swift",
        "Feature/RequestBuilder/ResourceRequestBuilderTests.swift",
        "Feature/RequestBuilder/SegmentRequestBuilderTests.swift",
        "Feature/SRContextPublisherTests.swift",
        "Feature/SessionReplayTelemetryTests.swift",
        "Feature/WebViewRecordReceiverTests.swift",
        "Helpers/XCTAssertRectsEqual.swift",
        "Processor/Builders/RecordsBuilderTests.swift",
        "Processor/Builders/WireframesBuilderTests.swift",
        "Processor/Diffing/Diff+SRWireframesTests.swift",
        "Processor/Diffing/DiffTests.swift",
        "Processor/Flattening/NodesFlattenerTests.swift",
        "Processor/Privacy/TextObfuscatorTests.swift",
        "Processor/ResourceProcessorTests.swift",
        "Processor/SnapshotProcessorTests.swift",
        "Recorder/RecorderTests.swift",
        "Recorder/RecordingCoordinatorTests.swift",
        "Recorder/TextAndInputPrivacyLevelTests.swift",
        "Recorder/TouchSnapshotProducer/TouchSnapshot/TouchIdentifierGeneratorTests.swift",
        "Recorder/TouchSnapshotProducer/WindowTouchSnapshotProducerTests.swift",
        "Recorder/Utilties/CGRect+SessionReplayTests.swift",
        "Recorder/Utilties/UIView+SessionReplayTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeIDGeneratorTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/ColorReflectionTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/DisplayListReflectionTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/GraphicImagePrivacyTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/GraphicsImageReflectionTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/ImageRendererTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/SwiftUIWireframesBuilderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/TextReflectionTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIActivityIndicatorRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIDatePickerRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIHostingViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageResourceTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageViewWireframesBuilderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UILabelRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UINavigationBarRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIPickerViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIProgressViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISegmentRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISliderRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIStepperRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISwitchRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITabBarRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITextFieldRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITextViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UnsupportedViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/WKWebViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeRecordingContextTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeSnapshotBuilderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeSnapshotTests.swift",
        "SessionReplayConfigurationTests.swift",
        "SessionReplayOverrideTests.swift",
        "SessionReplayTests.swift",
        "Utilities/CFType+SafetyTests.swift",
        "Utilities/CGRectExtensionsTests.swift",
        "Utilities/ColorsTests.swift",
        "Utilities/QueueTests.swift",
        "Utilities/Schedulers/MainThreadSchedulerTests.swift",
        "Utilities/SwiftExtensionsTests.swift",
        "Utilities/UIImage+SessionReplayTests.swift",
        "Utilities/XoshiroTests.swift",
        "Writer/RecordsWriterTests.swift",
        "Writer/ResourcesWriterTests.swift",
        "Writer/SRCompressionTests.swift"
      ],
      "target_dependencies" : [
        "DatadogSessionReplay",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogSessionReplay",
      "module_type" : "SwiftTarget",
      "name" : "DatadogSessionReplay",
      "path" : "DatadogSessionReplay/Sources",
      "product_memberships" : [
        "DatadogSessionReplay"
      ],
      "sources" : [
        "Feature/RUMContextReceiver.swift",
        "Feature/RequestBuilders/JSON/SegmentJSON.swift",
        "Feature/RequestBuilders/Multipart/MultipartFormData.swift",
        "Feature/RequestBuilders/ResourceRequestBuilder.swift",
        "Feature/RequestBuilders/SegmentRequestBuilder.swift",
        "Feature/ResourcesFeature.swift",
        "Feature/SRContextPublisher.swift",
        "Feature/SessionReplayFeature.swift",
        "Feature/SessionReplayTelemetry.swift",
        "Feature/WebViewRecordReceiver.swift",
        "Models/EnrichedRecord.swift",
        "Models/EnrichedResource.swift",
        "Models/SRDataModels+UIKit.swift",
        "Models/SRDataModels.swift",
        "Processor/Builders/RecordsBuilder.swift",
        "Processor/Builders/WireframesBuilder.swift",
        "Processor/Diffing/Diff+SRWireframes.swift",
        "Processor/Diffing/Diff.swift",
        "Processor/Flattening/NodesFlattener.swift",
        "Processor/Privacy/TextObfuscator.swift",
        "Processor/ResourcesProcessor.swift",
        "Processor/SnapshotProcessor.swift",
        "Recorder/PrivacyLevel.swift",
        "Recorder/Recorder.swift",
        "Recorder/RecordingCoordinator.swift",
        "Recorder/TouchSnapshotProducer/TouchSnapshot/TouchIdentifierGenerator.swift",
        "Recorder/TouchSnapshotProducer/TouchSnapshot/TouchSnapshot.swift",
        "Recorder/TouchSnapshotProducer/TouchSnapshotProducer.swift",
        "Recorder/TouchSnapshotProducer/UIApplicationSwizzler.swift",
        "Recorder/TouchSnapshotProducer/WindowTouchSnapshotProducer.swift",
        "Recorder/Utilities/CFType+Safety.swift",
        "Recorder/Utilities/CGImage+SessionReplay.swift",
        "Recorder/Utilities/CGRect+SessionReplay.swift",
        "Recorder/Utilities/CGSize+SessionReplay.swift",
        "Recorder/Utilities/Int64+SessionReplay.swift",
        "Recorder/Utilities/SystemColors.swift",
        "Recorder/Utilities/UIColor+SessionReplay.swift",
        "Recorder/Utilities/UIImage+SessionReplay.swift",
        "Recorder/Utilities/UIView+SessionReplay.swift",
        "Recorder/Utilities/Xoshiro.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeIDGenerator.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/NodeRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Color+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Color.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/DisplayList+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/DisplayList.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Drawing.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/GraphicsFilter+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/GraphicsFilter.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/GraphicsImage+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/GraphicsImage.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/ImageRenderer.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/ImageRepresentable.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/SwiftUIWireframesBuilder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Text+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Text.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIActivityIndicatorRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIDatePickerRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIHostingViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageResource.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UILabelRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UINavigationBarRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIPickerViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIProgressViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISegmentRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISliderRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIStepperRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISwitchRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITabBarRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITextFieldRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITextViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UnsupportedViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/WKWebViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeRecordingContext.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeSnapshot.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeSnapshotBuilder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshotProducer.swift",
        "Recorder/ViewTreeSnapshotProducer/WindowViewTreeSnapshotProducer.swift",
        "Recorder/WindowObserver/AppWindowObserver.swift",
        "Recorder/WindowObserver/KeyWindowObserver.swift",
        "SessionReplay+objc.swift",
        "SessionReplay.swift",
        "SessionReplayConfiguration.swift",
        "SessionReplayPrivacyOverrides+objc.swift",
        "SessionReplayPrivacyOverrides.swift",
        "SessionReplayPrivacyView.swift",
        "UIView+SessionReplayPrivacyOverrides+objc.swift",
        "Utilities/CGRectExtensions.swift",
        "Utilities/Colors.swift",
        "Utilities/Errors.swift",
        "Utilities/Queue.swift",
        "Utilities/Schedulers/MainThreadScheduler.swift",
        "Utilities/Schedulers/Scheduler.swift",
        "Writers/RecordWriter.swift",
        "Writers/ResourcesWriter.swift",
        "Writers/SRCompression.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogRUMTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogRUMTests",
      "path" : "DatadogRUM/Tests",
      "sources" : [
        "DDTAssertValidRUMUUID.swift",
        "DataModels/RUMDataModelsMappingTests.swift",
        "Feature/RequestBuilderTests.swift",
        "Instrumentation/Actions/RUMActionsHandlerTests.swift",
        "Instrumentation/Actions/SwiftUIComponentDetectorTests.swift",
        "Instrumentation/AppHangs/AppHangsMonitorTests.swift",
        "Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift",
        "Instrumentation/MemoryWarnings/MemoryWarningMocks.swift",
        "Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift",
        "Instrumentation/RUMInstrumentationTests.swift",
        "Instrumentation/Resources/BaggageHeaderMergerTests.swift",
        "Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift",
        "Instrumentation/Views/RUMViewsHandlerTests.swift",
        "Instrumentation/Views/SwiftUIViewNameExtractorTests.swift",
        "Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift",
        "Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift",
        "Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift",
        "Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift",
        "Integrations/AnonymousIdentifierManagerTests.swift",
        "Integrations/ErrorMessageReceiverTests.swift",
        "Integrations/SessionReplayDependencyTests.swift",
        "Integrations/SwiftUIViewNameExtractorIntegrationTests.swift",
        "Integrations/TelemetryInterceptorTests.swift",
        "Integrations/TelemetryReceiverTests.swift",
        "Integrations/WebViewEventReceiverTests.swift",
        "RUMConfigurationTests.swift",
        "RUMContext/AccessibilityReaderTests.swift",
        "RUMEvent/RUMDeviceInfoTests.swift",
        "RUMEvent/RUMEventBuilderTests.swift",
        "RUMEvent/RUMEventSanitizerTests.swift",
        "RUMMetrics/INVMetricTests.swift",
        "RUMMetrics/TNSMetricTests.swift",
        "RUMMonitor/Monitor+GlobalAttributesTests.swift",
        "RUMMonitor/MonitorTests.swift",
        "RUMMonitor/RUMCommandTests.swift",
        "RUMMonitor/RUMScopeTests.swift",
        "RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift",
        "RUMMonitor/Scopes/RUMApplicationScopeTests.swift",
        "RUMMonitor/Scopes/RUMResourceScopeTests.swift",
        "RUMMonitor/Scopes/RUMSessionScopeTests.swift",
        "RUMMonitor/Scopes/RUMUserActionScopeTests.swift",
        "RUMMonitor/Scopes/RUMViewScopeTests.swift",
        "RUMMonitor/Scopes/Utils/LaunchReasonResolverTests.swift",
        "RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift",
        "RUMMonitor/Scopes/Utils/ViewCacheTests.swift",
        "RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift",
        "RUMMonitorProtocol+ConvenienceTests.swift",
        "RUMMonitorProtocol+InternalTests.swift",
        "RUMMonitorProtocolTests.swift",
        "RUMTests.swift",
        "RUMViewEventsFilterTests.swift",
        "SDKMetrics/SessionEndedMetricControllerTests.swift",
        "SDKMetrics/SessionEndedMetricTests.swift",
        "Scrubbing/RUMEventsMapperTests.swift",
        "Utils/ValuePublisherTests.swift"
      ],
      "target_dependencies" : [
        "DatadogRUM",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogRUM",
      "module_type" : "SwiftTarget",
      "name" : "DatadogRUM",
      "path" : "DatadogRUM",
      "product_memberships" : [
        "DatadogRUM"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogRUM/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Sources/DataModels/Accessibility.swift",
        "Sources/DataModels/RUMDataModels+objc.swift",
        "Sources/DataModels/RUMDataModelsMapping.swift",
        "Sources/Debugging/RUMDebugging.swift",
        "Sources/FatalErrorBuilder.swift",
        "Sources/Feature/RUMDataStore.swift",
        "Sources/Feature/RUMFeature.swift",
        "Sources/Feature/RUMViewEventsFilter.swift",
        "Sources/Feature/RequestBuilder.swift",
        "Sources/Instrumentation/Actions/RUMAction.swift",
        "Sources/Instrumentation/Actions/RUMActionsHandler.swift",
        "Sources/Instrumentation/Actions/SwiftUI/LegacySwiftUIComponentDetector.swift",
        "Sources/Instrumentation/Actions/SwiftUI/ModernSwiftUIComponentDetector.swift",
        "Sources/Instrumentation/Actions/SwiftUI/SwiftUIActionModifier.swift",
        "Sources/Instrumentation/Actions/SwiftUI/SwiftUIComponentDetector.swift",
        "Sources/Instrumentation/Actions/SwiftUI/SwiftUIRUMActionsPredicate.swift",
        "Sources/Instrumentation/Actions/UIKit/UIApplicationSwizzler.swift",
        "Sources/Instrumentation/Actions/UIKit/UIEventCommandFactory.swift",
        "Sources/Instrumentation/Actions/UIKit/UIKitRUMUserActionsPredicate.swift",
        "Sources/Instrumentation/AppHangs/AppHang.swift",
        "Sources/Instrumentation/AppHangs/AppHangsMonitor.swift",
        "Sources/Instrumentation/AppHangs/AppHangsWatchdogThread.swift",
        "Sources/Instrumentation/AppHangs/FatalAppHangsHandler.swift",
        "Sources/Instrumentation/AppHangs/NonFatalAppHangsHandler.swift",
        "Sources/Instrumentation/AppHangs/ProcessIdentifier.swift",
        "Sources/Instrumentation/LongTasks/LongTaskObserver.swift",
        "Sources/Instrumentation/MemoryWarnings/MemoryWarningMonitor.swift",
        "Sources/Instrumentation/MemoryWarnings/MemoryWarningReporter.swift",
        "Sources/Instrumentation/RUMCommandSubscriber.swift",
        "Sources/Instrumentation/RUMInstrumentation.swift",
        "Sources/Instrumentation/Resources/BaggageHeaderMerger.swift",
        "Sources/Instrumentation/Resources/URLSessionRUMResourcesHandler.swift",
        "Sources/Instrumentation/Views/RUMView.swift",
        "Sources/Instrumentation/Views/RUMViewsHandler.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIControllerType.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIRUMViewsPredicate+objc.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIRUMViewsPredicate.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIViewHandler.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIViewModifier.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIViewNameExtractor.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIViewPath.swift",
        "Sources/Instrumentation/Views/SwiftUI/TopLevelReflector.swift",
        "Sources/Instrumentation/Views/UIKit/UIKitRUMViewsPredicate.swift",
        "Sources/Instrumentation/Views/UIKit/UIViewControllerHandler.swift",
        "Sources/Instrumentation/Views/UIKit/UIViewControllerSwizzler.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationAppState.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManager.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationChecker.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitor.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationReporter.swift",
        "Sources/Integrations/AnonymousIdentifierManager.swift",
        "Sources/Integrations/CrashReportReceiver.swift",
        "Sources/Integrations/ErrorMessageReceiver.swift",
        "Sources/Integrations/FatalErrorContextNotifier.swift",
        "Sources/Integrations/RUMContextAttributes.swift",
        "Sources/Integrations/SessionReplayDependency.swift",
        "Sources/Integrations/TelemetryInterceptor.swift",
        "Sources/Integrations/TelemetryReceiver.swift",
        "Sources/Integrations/WebViewEventReceiver.swift",
        "Sources/RUM+Internal.swift",
        "Sources/RUM+objc.swift",
        "Sources/RUM.swift",
        "Sources/RUMConfiguration.swift",
        "Sources/RUMContext/AccessibilityReader.swift",
        "Sources/RUMContext/RUMContext.swift",
        "Sources/RUMContext/RUMContextProvider.swift",
        "Sources/RUMEvent/RUMAccount.swift",
        "Sources/RUMEvent/RUMConnectivityInfoProvider.swift",
        "Sources/RUMEvent/RUMEventBuilder.swift",
        "Sources/RUMEvent/RUMEventSanitizer.swift",
        "Sources/RUMEvent/RUMUser.swift",
        "Sources/RUMMetrics/INVMetric.swift",
        "Sources/RUMMetrics/NetworkSettledResourcePredicate.swift",
        "Sources/RUMMetrics/NextViewActionPredicate.swift",
        "Sources/RUMMetrics/TNSMetric.swift",
        "Sources/RUMMonitor.swift",
        "Sources/RUMMonitor/Monitor.swift",
        "Sources/RUMMonitor/RUMCommand.swift",
        "Sources/RUMMonitor/RUMScope.swift",
        "Sources/RUMMonitor/Scopes/RUMApplicationScope.swift",
        "Sources/RUMMonitor/Scopes/RUMResourceScope.swift",
        "Sources/RUMMonitor/Scopes/RUMScopeDependencies.swift",
        "Sources/RUMMonitor/Scopes/RUMSessionScope.swift",
        "Sources/RUMMonitor/Scopes/RUMUserActionScope.swift",
        "Sources/RUMMonitor/Scopes/RUMViewScope.swift",
        "Sources/RUMMonitor/Scopes/Utils/LaunchReasonResolver.swift",
        "Sources/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRule.swift",
        "Sources/RUMMonitor/Scopes/Utils/ViewCache.swift",
        "Sources/RUMMonitor/Scopes/Utils/ViewIdentifier.swift",
        "Sources/RUMMonitorProtocol+Convenience.swift",
        "Sources/RUMMonitorProtocol+Internal.swift",
        "Sources/RUMMonitorProtocol.swift",
        "Sources/RUMVitals/PerformanceMetric.swift",
        "Sources/RUMVitals/RenderLoop/FrameInfoProvider.swift",
        "Sources/RUMVitals/RenderLoop/RenderLoopObserver.swift",
        "Sources/RUMVitals/RenderLoop/ViewHitchesReader.swift",
        "Sources/RUMVitals/RenderLoop/VitalRefreshRateReader.swift",
        "Sources/RUMVitals/VitalCPUReader.swift",
        "Sources/RUMVitals/VitalInfo.swift",
        "Sources/RUMVitals/VitalInfoSampler.swift",
        "Sources/RUMVitals/VitalMemoryReader.swift",
        "Sources/SDKMetrics/SessionEndedMetric.swift",
        "Sources/SDKMetrics/SessionEndedMetricController.swift",
        "Sources/SDKMetrics/ViewEndedController.swift",
        "Sources/SDKMetrics/ViewEndedMetric.swift",
        "Sources/SDKMetrics/ViewHitchesMetric.swift",
        "Sources/Scrubbing/RUMEventsMapper.swift",
        "Sources/UUIDs/RUMUUID.swift",
        "Sources/UUIDs/RUMUUIDGenerator.swift",
        "Sources/Utils/SwiftUIExtensions.swift",
        "Sources/Utils/UIKitExtensions.swift",
        "Sources/Utils/ValuePublisher.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogPrivate",
      "module_type" : "ClangTarget",
      "name" : "DatadogPrivate",
      "path" : "DatadogCore/Private",
      "product_memberships" : [
        "DatadogCore"
      ],
      "sources" : [
        "ObjcAppLaunchHandler.m",
        "ObjcExceptionHandler.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogLogsTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogLogsTests",
      "path" : "DatadogLogs/Tests",
      "sources" : [
        "ConsoleLoggerTests.swift",
        "Log/LogEventBuilderTests.swift",
        "Log/LogSanitizerTests.swift",
        "Log/SynchronizedAttributesTests.swift",
        "Log/SynchronizedTagsTests.swift",
        "LogMessageReceiverTests.swift",
        "LoggerTests.swift",
        "LogsTests.swift",
        "RemoteLoggerTests.swift",
        "WebViewLogReceiverTests.swift"
      ],
      "target_dependencies" : [
        "DatadogLogs",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogLogs",
      "module_type" : "SwiftTarget",
      "name" : "DatadogLogs",
      "path" : "DatadogLogs/Sources",
      "product_memberships" : [
        "DatadogLogs"
      ],
      "sources" : [
        "ConsoleLogger.swift",
        "Feature/LogsFeature.swift",
        "Feature/MessageReceivers.swift",
        "Feature/RequestBuilder.swift",
        "Log/LogEventBuilder.swift",
        "Log/LogEventEncoder.swift",
        "Log/LogEventSanitizer.swift",
        "Log/SynchronizedAttributes.swift",
        "Log/SynchronizedTags.swift",
        "Logger.swift",
        "LoggerProtocol+Internal.swift",
        "LoggerProtocol.swift",
        "Logs+Internal.swift",
        "Logs+objc.swift",
        "Logs.swift",
        "LogsDataModels+objc.swift",
        "RemoteLogger.swift",
        "Scrubbing/LogEventMapper.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogInternalTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogInternalTests",
      "path" : "DatadogInternal/Tests",
      "sources" : [
        "Codable/AnyCodableTests.swift",
        "Codable/AnyEncodableTests.swift",
        "Concurrency/ReadWriteLockTests.swift",
        "Context/AppStateHistoryTests.swift",
        "Context/BundleTypeTests.swift",
        "Context/DeviceInfoTests.swift",
        "CoreRegistryTest.swift",
        "DatadogCoreProtocolTests.swift",
        "Extensions/Data+CryptoTests.swift",
        "Extensions/FixedWidthInteger+ConvenienceTests.swift",
        "Extensions/TimeInterval+ConvenienceTests.swift",
        "MessageBus/FeatureMessageReceiverTests.swift",
        "Models/WebViewMessageTests.swift",
        "NetworkInstrumentation/B3HTTPHeadersReaderTests.swift",
        "NetworkInstrumentation/B3HTTPHeadersWriterTests.swift",
        "NetworkInstrumentation/FirstPartyHostsTests.swift",
        "NetworkInstrumentation/HTTPHeadersReaderTests.swift",
        "NetworkInstrumentation/HTTPHeadersWriterTests.swift",
        "NetworkInstrumentation/HostsSanitizerTests.swift",
        "NetworkInstrumentation/ImmutableRequestTests.swift",
        "NetworkInstrumentation/NetworkInstrumentationFeatureTests.swift",
        "NetworkInstrumentation/SpanIDGeneratorTests.swift",
        "NetworkInstrumentation/SpanIDTests.swift",
        "NetworkInstrumentation/TraceIDGeneratorTests.swift",
        "NetworkInstrumentation/TraceIDTests.swift",
        "NetworkInstrumentation/URLSessionDataDelegateSwizzlerTests.swift",
        "NetworkInstrumentation/URLSessionSwizzlerTests.swift",
        "NetworkInstrumentation/URLSessionTaskDelegateSwizzlerTests.swift",
        "NetworkInstrumentation/URLSessionTaskInterceptionTests.swift",
        "NetworkInstrumentation/URLSessionTaskSwizzlerTests.swift",
        "NetworkInstrumentation/W3CHTTPHeadersReaderTests.swift",
        "NetworkInstrumentation/W3CHTTPHeadersWriterTests.swift",
        "Swizzling/MethodSwizzlerTests.swift",
        "Telemetry/TelemetryTests.swift",
        "Upload/DataCompressionTests.swift",
        "Upload/DataFormatTests.swift",
        "Utils/DeterministicSamplerTests.swift",
        "Utils/ObjcExceptionTests.swift",
        "Utils/ReflectionMirrorTests.swift",
        "Utils/ReflectorTests.swift",
        "Utils/SampleRateTests.swift",
        "Utils/SamplerTests.swift",
        "Utils/SwiftExtensionsTests.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogInternal",
      "module_type" : "SwiftTarget",
      "name" : "DatadogInternal",
      "path" : "DatadogInternal/Sources",
      "product_memberships" : [
        "DatadogCore",
        "DatadogLogs",
        "DatadogTrace",
        "DatadogRUM",
        "DatadogSessionReplay",
        "DatadogCrashReporting",
        "DatadogWebViewTracking"
      ],
      "sources" : [
        "Attributes/Attributes.swift",
        "Attributes/AttributesSanitizer.swift",
        "BacktraceReporting/BacktraceReporter.swift",
        "BacktraceReporting/BacktraceReportingFeature.swift",
        "Benchmarks/BenchmarkProfiler.swift",
        "Codable/AnyCodable.swift",
        "Codable/AnyDecodable.swift",
        "Codable/AnyEncodable.swift",
        "Codable/DynamicCodingKey.swift",
        "Concurrency/Flushable.swift",
        "Concurrency/ReadWriteLock.swift",
        "Concurrency/Threading.swift",
        "Context/AccountInfo.swift",
        "Context/AppState.swift",
        "Context/ApplicationNotifications.swift",
        "Context/BatteryStatus.swift",
        "Context/BrightnessLevel.swift",
        "Context/BundleType.swift",
        "Context/CarrierInfo.swift",
        "Context/DatadogContext.swift",
        "Context/DatadogSite.swift",
        "Context/DateProvider.swift",
        "Context/DeviceInfo.swift",
        "Context/LaunchInfo.swift",
        "Context/LocaleInfo.swift",
        "Context/NetworkConnectionInfo.swift",
        "Context/OperatingSystem+Utils.swift",
        "Context/Sysctl.swift",
        "Context/TrackingConsent.swift",
        "Context/UserInfo.swift",
        "CoreRegistry.swift",
        "DD.swift",
        "DataStore/DataStore.swift",
        "DatadogCoreProtocol.swift",
        "DatadogFeature.swift",
        "Extensions/Data+Crypto.swift",
        "Extensions/DatadogExtended.swift",
        "Extensions/FixedWidthInteger+Convenience.swift",
        "Extensions/Foundation+Datadog.swift",
        "Extensions/InternalExtended.swift",
        "Extensions/TimeInterval+Convenience.swift",
        "MessageBus/FeatureMessage.swift",
        "MessageBus/FeatureMessageReceiver.swift",
        "Models/CrashReporting/BacktraceReport.swift",
        "Models/CrashReporting/BinaryImage.swift",
        "Models/CrashReporting/Crash.swift",
        "Models/CrashReporting/CrashContext.swift",
        "Models/CrashReporting/DDCrashReport.swift",
        "Models/CrashReporting/DDThread.swift",
        "Models/CrashReporting/LaunchReport.swift",
        "Models/Logs/LogEventAttributes.swift",
        "Models/Logs/LogMessage.swift",
        "Models/RUM/RUMCoreContext.swift",
        "Models/RUM/RUMDataModels.swift",
        "Models/RUM/RUMPayloadMessages.swift",
        "Models/RUM/RUMWebViewContext.swift",
        "Models/SessionReplay/SessionReplayConfiguration.swift",
        "Models/SessionReplay/SessionReplayCoreContext.swift",
        "Models/Trace/SpanCoreContext.swift",
        "Models/Trace/SpanID.swift",
        "Models/Trace/TraceID.swift",
        "Models/WebViewTracking/WebViewMessage.swift",
        "NetworkInstrumentation/B3/B3HTTPHeaders.swift",
        "NetworkInstrumentation/B3/B3HTTPHeadersReader.swift",
        "NetworkInstrumentation/B3/B3HTTPHeadersWriter.swift",
        "NetworkInstrumentation/Datadog/HTTPHeadersReader.swift",
        "NetworkInstrumentation/Datadog/HTTPHeadersWriter.swift",
        "NetworkInstrumentation/Datadog/TracingHTTPHeaders.swift",
        "NetworkInstrumentation/DatadogURLSessionHandler.swift",
        "NetworkInstrumentation/FirstPartyHosts.swift",
        "NetworkInstrumentation/HostsSanitizer.swift",
        "NetworkInstrumentation/NetworkContext.swift",
        "NetworkInstrumentation/NetworkContextProvider.swift",
        "NetworkInstrumentation/NetworkInstrumentationFeature.swift",
        "NetworkInstrumentation/TraceContext.swift",
        "NetworkInstrumentation/TraceContextInjection.swift",
        "NetworkInstrumentation/TracePropagationHeadersReader.swift",
        "NetworkInstrumentation/TracePropagationHeadersWriter.swift",
        "NetworkInstrumentation/TracingHeaderType+objc.swift",
        "NetworkInstrumentation/TracingHeaderType.swift",
        "NetworkInstrumentation/URLSession/ImmutableRequest.swift",
        "NetworkInstrumentation/URLSession/NetworkInstrumentationSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionDataDelegateSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionInstrumentation.swift",
        "NetworkInstrumentation/URLSession/URLSessionSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionTask+Tracking.swift",
        "NetworkInstrumentation/URLSession/URLSessionTaskDelegateSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionTaskInterception.swift",
        "NetworkInstrumentation/URLSession/URLSessionTaskSwizzler.swift",
        "NetworkInstrumentation/W3C/W3CHTTPHeaders.swift",
        "NetworkInstrumentation/W3C/W3CHTTPHeadersReader.swift",
        "NetworkInstrumentation/W3C/W3CHTTPHeadersWriter.swift",
        "SDKMetrics/MethodCalledMetric.swift",
        "SDKMetrics/SDKMetricFields.swift",
        "SDKMetrics/UploadQualityMetric.swift",
        "Storage.swift",
        "Storage/PerformancePresetOverride.swift",
        "Storage/Writer.swift",
        "Swizzling/MethodSwizzler.swift",
        "Telemetry/CoreLogger.swift",
        "Telemetry/CoreLoggerLevel+objc.swift",
        "Telemetry/InternalLogger+objc.swift",
        "Telemetry/InternalLogger.swift",
        "Telemetry/Telemetry.swift",
        "Upload/DataCompression.swift",
        "Upload/DataFormat.swift",
        "Upload/DefaultJSONEncoder.swift",
        "Upload/Event.swift",
        "Upload/FeatureRequestBuilder.swift",
        "Upload/URLRequestBuilder.swift",
        "Upload/UploadPerformancePreset.swift",
        "Utils/Assert.swift",
        "Utils/CustomDump.swift",
        "Utils/DDError.swift",
        "Utils/DateFormatting.swift",
        "Utils/DeterministicSampler.swift",
        "Utils/ReflectionMirror.swift",
        "Utils/Reflector.swift",
        "Utils/Sampler.swift",
        "Utils/SwiftExtensions.swift",
        "Utils/UIKitExtensions.swift",
        "Utils/WatchKitExtensions.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogCrashReportingTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogCrashReportingTests",
      "path" : "DatadogCrashReporting/Tests",
      "sources" : [
        "CrashReportingPluginTests.swift",
        "PLCrashReporterIntegration/CrashReportMinifierTests.swift",
        "PLCrashReporterIntegration/CrashReportTests.swift",
        "PLCrashReporterIntegration/DDCrashReportBuilderTests.swift",
        "PLCrashReporterIntegration/DDCrashReportExporterTests.swift",
        "PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift",
        "PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift"
      ],
      "target_dependencies" : [
        "DatadogCrashReporting",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogCrashReporting",
      "module_type" : "SwiftTarget",
      "name" : "DatadogCrashReporting",
      "path" : "DatadogCrashReporting",
      "product_dependencies" : [
        "CrashReporter"
      ],
      "product_memberships" : [
        "DatadogCrashReporting"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Sources/CrashContext/CrashContextProvider.swift",
        "Sources/CrashReporting.swift",
        "Sources/CrashReportingFeature.swift",
        "Sources/CrashReportingPlugin.swift",
        "Sources/Integrations/BacktraceReporter.swift",
        "Sources/Integrations/CrashReportSender.swift",
        "Sources/PLCrashReporterIntegration/CrashReport.swift",
        "Sources/PLCrashReporterIntegration/CrashReportMinifier.swift",
        "Sources/PLCrashReporterIntegration/DDCrashReportBuilder.swift",
        "Sources/PLCrashReporterIntegration/DDCrashReportExporter.swift",
        "Sources/PLCrashReporterIntegration/PLCrashReporterIntegration.swift",
        "Sources/PLCrashReporterIntegration/PLCrashReporterPlugin.swift",
        "Sources/PLCrashReporterIntegration/Utils/SwiftExtensions.swift",
        "Sources/ThirdPartyCrashReporter.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogCore",
      "module_type" : "SwiftTarget",
      "name" : "DatadogCore",
      "path" : "DatadogCore",
      "product_memberships" : [
        "DatadogCore"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogCore/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Sources/Core/Context/AccountInfoPublisher.swift",
        "Sources/Core/Context/ApplicationStatePublisher.swift",
        "Sources/Core/Context/ApplicationVersionPublisher.swift",
        "Sources/Core/Context/BatteryStatusPublisher.swift",
        "Sources/Core/Context/BrightnessLevelPublisher.swift",
        "Sources/Core/Context/CarrierInfoPublisher.swift",
        "Sources/Core/Context/ContextValuePublisher.swift",
        "Sources/Core/Context/DatadogContextProvider.swift",
        "Sources/Core/Context/LaunchInfoPublisher.swift",
        "Sources/Core/Context/LocaleInfoPublisher.swift",
        "Sources/Core/Context/LowPowerModePublisher.swift",
        "Sources/Core/Context/NetworkConnectionInfoPublisher.swift",
        "Sources/Core/Context/ServerOffsetPublisher.swift",
        "Sources/Core/Context/TrackingConsentPublisher.swift",
        "Sources/Core/Context/UserInfoPublisher.swift",
        "Sources/Core/DataStore/DataStore+TLV.swift",
        "Sources/Core/DataStore/DataStoreFileReader.swift",
        "Sources/Core/DataStore/DataStoreFileWriter.swift",
        "Sources/Core/DataStore/FeatureDataStore.swift",
        "Sources/Core/DatadogCore.swift",
        "Sources/Core/MessageBus.swift",
        "Sources/Core/Storage/DataEncryption.swift",
        "Sources/Core/Storage/Directories.swift",
        "Sources/Core/Storage/EventGenerator.swift",
        "Sources/Core/Storage/FeatureStorage.swift",
        "Sources/Core/Storage/Files/Directory.swift",
        "Sources/Core/Storage/Files/File.swift",
        "Sources/Core/Storage/FilesOrchestrator.swift",
        "Sources/Core/Storage/Reading/DataReader.swift",
        "Sources/Core/Storage/Reading/FileReader.swift",
        "Sources/Core/Storage/Reading/Reader.swift",
        "Sources/Core/Storage/Storage+TLV.swift",
        "Sources/Core/Storage/Writing/AsyncWriter.swift",
        "Sources/Core/Storage/Writing/FileWriter.swift",
        "Sources/Core/TLV/TLVBlock.swift",
        "Sources/Core/TLV/TLVBlockReader.swift",
        "Sources/Core/Upload/BackgroundTaskCoordinator.swift",
        "Sources/Core/Upload/DataUploadConditions.swift",
        "Sources/Core/Upload/DataUploadDelay.swift",
        "Sources/Core/Upload/DataUploadStatus.swift",
        "Sources/Core/Upload/DataUploadWorker.swift",
        "Sources/Core/Upload/DataUploader.swift",
        "Sources/Core/Upload/FeatureUpload.swift",
        "Sources/Core/Upload/HTTPClient.swift",
        "Sources/Core/Upload/URLSessionClient.swift",
        "Sources/Datadog+Internal.swift",
        "Sources/Datadog+objc.swift",
        "Sources/Datadog.swift",
        "Sources/DatadogConfiguration+objc.swift",
        "Sources/DatadogConfiguration.swift",
        "Sources/FeaturesIntegration/CITestIntegration.swift",
        "Sources/Kronos/KronosClock.swift",
        "Sources/Kronos/KronosDNSResolver.swift",
        "Sources/Kronos/KronosData+Bytes.swift",
        "Sources/Kronos/KronosInternetAddress.swift",
        "Sources/Kronos/KronosNSTimer+ClosureKit.swift",
        "Sources/Kronos/KronosNTPClient.swift",
        "Sources/Kronos/KronosNTPPacket.swift",
        "Sources/Kronos/KronosNTPProtocol.swift",
        "Sources/Kronos/KronosTimeFreeze.swift",
        "Sources/Kronos/KronosTimeStorage.swift",
        "Sources/NetworkInstrumentation/URLSessionInstrumentation+objc.swift",
        "Sources/PerformancePreset.swift",
        "Sources/SDKMetrics/BatchMetrics.swift",
        "Sources/SDKMetrics/BenchmarkURLSessionTaskDelegate.swift",
        "Sources/Utils/Cryptography.swift",
        "Sources/Utils/Retrying.swift",
        "Sources/Versioning.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal",
        "DatadogPrivate"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/datadog/dd-sdk-ios/3.0.0
Repository:               DataDog/dd-sdk-ios
Swift version used:       6.1
Target:                   DatadogCore iOS
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
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 docbuild "OTHER_DOCC_FLAGS=--emit-digest --source-service github --source-service-base-url https://github.com/DataDog/dd-sdk-ios/blob/3.0.0 --checkout-path /Users/admin/builder/spi-builder-workspace" -scheme "DatadogCore iOS" -destination generic/platform=iOS
Build settings from command line:
    OTHER_DOCC_FLAGS = --emit-digest --source-service github --source-service-base-url https://github.com/DataDog/dd-sdk-ios/blob/3.0.0 --checkout-path /Users/admin/builder/spi-builder-workspace
Resolve Package Graph
Fetching from https://github.com/swiftlang/swift-docc-plugin (cached)
Updating from https://github.com/microsoft/plcrashreporter.git
Updating from https://github.com/DataDog/opentelemetry-swift-packages.git
Fetching from https://github.com/swiftlang/swift-docc-symbolkit (cached)
Creating working copy of package ‘swift-docc-plugin’
Checking out 1.4.5 of package ‘swift-docc-plugin’
Creating working copy of package ‘swift-docc-symbolkit’
Checking out 1.0.0 of package ‘swift-docc-symbolkit’
Resolve Package Graph
Resolved source packages:
  Datadog: /Users/admin/builder/spi-builder-workspace
  SymbolKit: https://github.com/swiftlang/swift-docc-symbolkit @ 1.0.0
  SwiftDocCPlugin: https://github.com/swiftlang/swift-docc-plugin @ 1.4.5
  PLCrashReporter: https://github.com/microsoft/plcrashreporter.git @ 1.12.0
  opentelemetry-swift: https://github.com/DataDog/opentelemetry-swift-packages.git @ 1.13.1
2025-09-02 14:09:39.899 xcodebuild[1332:6674] Writing error result bundle to /var/folders/5k/5yc19ymj0jqd5v0zvgfqz0xw0000gn/T/ResultBundle_2025-02-09_14-09-0039.xcresult
xcodebuild: error: The workspace named "spi-builder-workspace" does not contain a scheme named "DatadogCore iOS". The "-list" option can be used to find the names of the schemes in the workspace.
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 docbuild "OTHER_DOCC_FLAGS=--emit-digest --source-service github --source-service-base-url https://github.com/DataDog/dd-sdk-ios/blob/3.0.0 --checkout-path /Users/admin/builder/spi-builder-workspace" -scheme "DatadogCore iOS" -destination generic/platform=iOS
Build settings from command line:
    OTHER_DOCC_FLAGS = --emit-digest --source-service github --source-service-base-url https://github.com/DataDog/dd-sdk-ios/blob/3.0.0 --checkout-path /Users/admin/builder/spi-builder-workspace
Resolve Package Graph
Resolved source packages:
  opentelemetry-swift: https://github.com/DataDog/opentelemetry-swift-packages.git @ 1.13.1
  PLCrashReporter: https://github.com/microsoft/plcrashreporter.git @ 1.12.0
  SymbolKit: https://github.com/swiftlang/swift-docc-symbolkit @ 1.0.0
  SwiftDocCPlugin: https://github.com/swiftlang/swift-docc-plugin @ 1.4.5
  Datadog: /Users/admin/builder/spi-builder-workspace
2025-09-02 14:09:50.424 xcodebuild[1768:9039] Writing error result bundle to /var/folders/5k/5yc19ymj0jqd5v0zvgfqz0xw0000gn/T/ResultBundle_2025-02-09_14-09-0050.xcresult
xcodebuild: error: The workspace named "spi-builder-workspace" does not contain a scheme named "DatadogCore iOS". The "-list" option can be used to find the names of the schemes in the workspace.
Error while generating docs: retryLimitExceeded(lastError: Optional(Shell command failed:
    env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData docbuild OTHER_DOCC_FLAGS=--emit-digest --source-service github --source-service-base-url https://github.com/DataDog/dd-sdk-ios/blob/3.0.0 --checkout-path $PWD -scheme DatadogCore iOS -destination generic/platform=iOS))
✅  Doc result (failed) reported
Done.