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 2.28.1 (aa4211), with Swift 6.1 for iOS using Xcode 16.3 on 31 May 2025 13:42:20 UTC.

Swift 6 data race errors: 52

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


/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(
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/TrackingConsentPublisher.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/UserInfoPublisher.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/DataStore/DataStore+TLV.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\ TLVBlock.swift,\ TLVBlockReader.swift,\ BackgroundTaskCoordinator.swift,\ DataUploadConditions.swift,\ DataUploadDelay.swift,\ DataUploadStatus.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 (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

SwiftDriverJobDiscovery normal arm64 Compiling CrashReportSender.swift, CrashReport.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 CrashReportMinifier.swift, DDCrashReportBuilder.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 DataReader.swift, FileReader.swift, Reader.swift, Storage+TLV.swift, AsyncWriter.swift, FileWriter.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ DataStoreFileReader.swift,\ DataStoreFileWriter.swift,\ FeatureDataStore.swift,\ DatadogCore.swift,\ MessageBus.swift,\ DataEncryption.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/DataStoreFileReader.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/DataStoreFileWriter.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/DataEncryption.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/DataStoreFileReader.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/DataStore/DataStoreFileWriter.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/DataStore/FeatureDataStore.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/DataStore/FeatureDataStore.swift:45:30: warning: capture of 'self' with non-sendable type 'FeatureDataStore?' in a '@Sendable' closure
            guard let self = self else {
                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:11:22: note: class 'FeatureDataStore' does not conform to the 'Sendable' protocol
internal final class FeatureDataStore: DataStore {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:52: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("[Data Store] Error on setting `\(key)` value for `\(self.feature)`", 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/DataStore/FeatureDataStore.swift:60:30: warning: capture of 'self' with non-sendable type 'FeatureDataStore?' in a '@Sendable' closure
            guard let self = self else {
                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:11:22: note: class 'FeatureDataStore' does not conform to the 'Sendable' protocol
internal final class FeatureDataStore: DataStore {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:66:17: warning: capture of 'callback' with non-sendable type '(DataStoreValueResult) -> Void' in a '@Sendable' closure
                callback(result)
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:66:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                callback(result)
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:69: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("[Data Store] Error on getting `\(key)` value for `\(self.feature)`", 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/DataStore/FeatureDataStore.swift:77:30: warning: capture of 'self' with non-sendable type 'FeatureDataStore?' in a '@Sendable' closure
            guard let self = self else {
                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:11:22: note: class 'FeatureDataStore' does not conform to the 'Sendable' protocol
internal final class FeatureDataStore: DataStore {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:84: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("[Data Store] Error on deleting `\(key)` value for `\(self.feature)`", 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/DataStore/FeatureDataStore.swift:93:37: warning: capture of 'self' with non-sendable type 'FeatureDataStore' in a '@Sendable' closure
                let directory = try self.coreDirectory.coreDirectory.subdirectoryIfExists(path: self.directoryPath)
                                    ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:11:22: note: class 'FeatureDataStore' does not conform to the 'Sendable' protocol
internal final class FeatureDataStore: DataStore {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:96: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("[Data Store] Error on clearing all data for `\(self.feature)`", 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/DataStore/FeatureDataStore.swift:96:81: warning: implicit capture of 'self' requires that 'FeatureDataStore' conforms to 'Sendable'; this is an error in the Swift 6 language mode
                DD.logger.error("[Data Store] Error on clearing all data for `\(self.feature)`", error: error)
                                                                                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DataStore/FeatureDataStore.swift:11:22: note: class 'FeatureDataStore' does not conform to the 'Sendable' protocol
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:535: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:540: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:540: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:540: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:541: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:103: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:167: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:167: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:167: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:189: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:189: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:189: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:347: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:462: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/DatadogCore.swift:474:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            self.subscribe(\.applicationStateHistory, to: applicationStatePublisher)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:474:13: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            self.subscribe(\.applicationStateHistory, to: applicationStatePublisher)
            ^~~~
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

SwiftDriverJobDiscovery normal arm64 Compiling PerformancePreset.swift, BatchMetrics.swift, BenchmarkURLSessionTaskDelegate.swift, Cryptography.swift, Retrying.swift, Versioning.swift (in target 'DatadogCore' from project 'Datadog')
SwiftDriver DatadogObjc normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DatadogObjc -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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/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/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/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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.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/DatadogObjc.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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_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/DatadogObjc.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, ApplicationStatePublisher.swift, ApplicationVersionPublisher.swift, BatteryStatusPublisher.swift, CarrierInfoPublisher.swift, ContextValuePublisher.swift, DatadogContextProvider.swift (in target 'DatadogCore' from project 'Datadog')
SwiftEmitModule normal arm64 Emitting\ module\ for\ DatadogObjc (in target 'DatadogObjc' from project 'Datadog')
EmitSwiftModule normal arm64 (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionDelegate+objc.swift:13:12: warning: non-final class 'DDNSURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
open class DDNSURLSessionDelegate: NSObject, URLSessionTaskDelegate, URLSessionDataDelegate {
           ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: warning: static property 'datadog' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: note: add '@MainActor' to make static property 'datadog' part of global actor 'MainActor'
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: warning: static property 'b3multi' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: note: add '@MainActor' to make static property 'b3multi' part of global actor 'MainActor'
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: warning: static property 'b3' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: note: add '@MainActor' to make static property 'b3' part of global actor 'MainActor'
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: warning: static property 'tracecontext' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: note: add '@MainActor' to make static property 'tracecontext' part of global actor 'MainActor'
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
          nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ TraceSamplingStrategy+objc.swift,\ W3CHTTPHeadersWriter+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/TraceSamplingStrategy+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/W3CHTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/TraceSamplingStrategy+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ Logs+objc.swift,\ LogsDataModels+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Logs/Logs+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Logs/LogsDataModels+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Logs/Logs+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling DataUploadWorker.swift, DataUploader.swift, FeatureUpload.swift, HTTPClient.swift, URLSessionClient.swift, Datadog+Internal.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ DDSpanContext+objc.swift,\ B3HTTPHeadersWriter+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/DDSpanContext+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/B3HTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/DDSpanContext+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling LaunchTimePublisher.swift, LowPowerModePublisher.swift, NetworkConnectionInfoPublisher.swift, ServerOffsetPublisher.swift, TrackingConsentPublisher.swift, UserInfoPublisher.swift, DataStore+TLV.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ Trace+objc.swift,\ Casting.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Trace+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Utils/Casting.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Trace+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling Datadog.swift, CITestIntegration.swift, KronosClock.swift, KronosDNSResolver.swift, KronosData+Bytes.swift, KronosInternetAddress.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ HTTPHeadersWriter+objc.swift,\ TraceContextInjection+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/HTTPHeadersWriter+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/TraceContextInjection+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/HTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling TLVBlock.swift, TLVBlockReader.swift, BackgroundTaskCoordinator.swift, DataUploadConditions.swift, DataUploadDelay.swift, DataUploadStatus.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ Datadog+objc.swift,\ DatadogConfiguration+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Datadog+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Datadog+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: warning: static property 'datadog' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: note: add '@MainActor' to make static property 'datadog' part of global actor 'MainActor'
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: warning: static property 'b3multi' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: note: add '@MainActor' to make static property 'b3multi' part of global actor 'MainActor'
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: warning: static property 'b3' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: note: add '@MainActor' to make static property 'b3' part of global actor 'MainActor'
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: warning: static property 'tracecontext' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: note: add '@MainActor' to make static property 'tracecontext' part of global actor 'MainActor'
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
          nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling KronosNSTimer+ClosureKit.swift, KronosNTPClient.swift, KronosNTPPacket.swift, KronosNTPProtocol.swift, KronosTimeFreeze.swift, KronosTimeStorage.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ OTTracer+objc.swift,\ RUM+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTTracer+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/RUM/RUM+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTTracer+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling TraceSamplingStrategy+objc.swift, W3CHTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ OTSpan+objc.swift,\ OTSpanContext+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTSpan+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTSpanContext+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTSpan+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling DDSpanContext+objc.swift, B3HTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ RUMDataModels+objc.swift,\ DDSpan+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/RUM/RUMDataModels+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/DDSpan+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/RUM/RUMDataModels+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling Directories.swift, EventGenerator.swift, FeatureStorage.swift, Directory.swift, File.swift, FilesOrchestrator.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ DDInternalLogger+objc.swift,\ DDURLSessionDelegate+objc.swift,\ DDURLSessionInstrumentation+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDInternalLogger+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionDelegate+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionInstrumentation+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDInternalLogger+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDInternalLogger+objc.swift:22:25: 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
        DatadogInternal.consolePrint(message, coreLoggerLevel)
                        ^
/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 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionDelegate+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionDelegate+objc.swift:13:12: warning: non-final class 'DDNSURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
open class DDNSURLSessionDelegate: NSObject, URLSessionTaskDelegate, URLSessionDataDelegate {
           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionInstrumentation+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling HTTPHeadersWriter+objc.swift, TraceContextInjection+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling Trace+objc.swift, Casting.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling OTSpan+objc.swift, OTSpanContext+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling DataStoreFileReader.swift, DataStoreFileWriter.swift, FeatureDataStore.swift, DatadogCore.swift, MessageBus.swift, DataEncryption.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
SwiftDriverJobDiscovery normal arm64 Compiling Datadog+objc.swift, DatadogConfiguration+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling RUMCoreContext.swift, RUMDataModels.swift, RUMPayloadMessages.swift, SessionReplayConfiguration.swift, SessionReplayCoreContext.swift, SpanCoreContext.swift, SpanID.swift, TraceID.swift, WebViewMessage.swift, B3HTTPHeaders.swift, B3HTTPHeadersReader.swift (in target 'DatadogInternal' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling Logs+objc.swift, LogsDataModels+objc.swift (in target 'DatadogObjc' from project 'Datadog')
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
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 DDInternalLogger+objc.swift, DDURLSessionDelegate+objc.swift, DDURLSessionInstrumentation+objc.swift (in target 'DatadogObjc' 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-05-31 06:42:15.989 appintentsmetadataprocessor[1250:6376] Starting appintentsmetadataprocessor export
2025-05-31 06:42:16.028 appintentsmetadataprocessor[1250:6376] 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/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/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
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
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
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/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
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
SwiftDriverJobDiscovery normal arm64 Compiling OTTracer+objc.swift, RUM+objc.swift (in target 'DatadogObjc' 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-05-31 06:42:16.122 appintentsmetadataprocessor[1265:6460] Starting appintentsmetadataprocessor export
2025-05-31 06:42:16.168 appintentsmetadataprocessor[1265:6460] 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-05-31 06:42:16.131 appintentsmetadataprocessor[1266:6461] Starting appintentsmetadataprocessor export
2025-05-31 06:42:16.177 appintentsmetadataprocessor[1266:6461] 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-05-31 06:42:16.144 appintentsmetadataprocessor[1267:6471] Starting appintentsmetadataprocessor export
2025-05-31 06:42:16.185 appintentsmetadataprocessor[1267:6471] 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-05-31 06:42:16.146 appintentsmetadataprocessor[1268:6472] Starting appintentsmetadataprocessor export
2025-05-31 06:42:16.186 appintentsmetadataprocessor[1268:6472] Extracted no relevant App Intents symbols, skipping writing output
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-05-31 06:42:16.163 appintentsmetadataprocessor[1269:6477] Starting appintentsmetadataprocessor export
2025-05-31 06:42:16.199 appintentsmetadataprocessor[1269:6477] 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-05-31 06:42:16.177 appintentsmetadataprocessor[1270:6482] Starting appintentsmetadataprocessor export
2025-05-31 06:42:16.216 appintentsmetadataprocessor[1270:6482] Extracted no relevant App Intents symbols, skipping writing output
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-05-31 06:42:16.183 appintentsmetadataprocessor[1271:6483] Starting appintentsmetadataprocessor export
2025-05-31 06:42:16.220 appintentsmetadataprocessor[1271:6483] 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
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/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/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/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
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
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
SwiftDriverJobDiscovery normal arm64 Emitting module for DatadogObjc (in target 'DatadogObjc' from project 'Datadog')
SwiftDriver\ Compilation\ Requirements DatadogObjc normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DatadogObjc -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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/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/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/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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.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/DatadogObjc.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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_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/DatadogObjc.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DatadogObjc-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-Swift.h (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DatadogObjc-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.abi.json (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftdoc (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftmodule (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftsourceinfo (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling RUMDataModels+objc.swift, DDSpan+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriver\ Compilation DatadogObjc normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogObjc' 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 DatadogObjc -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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/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/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/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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.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/DatadogObjc.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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_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/DatadogObjc.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-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/DatadogObjc.o normal (in target 'DatadogObjc' 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/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/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/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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_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/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.o
ExtractAppIntentsMetadata (in target 'DatadogObjc' 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 DatadogObjc --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.DatadogObjc --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/DatadogObjc.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/DatadogObjc.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-iphoneos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-31 06:42:18.837 appintentsmetadataprocessor[1293:6591] Starting appintentsmetadataprocessor export
2025-05-31 06:42:18.878 appintentsmetadataprocessor[1293:6591] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.o (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DatadogObjc.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" : "DatadogObjc",
      "targets" : [
        "DatadogObjc"
      ],
      "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/Decompression.swift",
        "Helpers/Encoding.swift",
        "Helpers/FuzzyHelpers.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/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/DatadogLogs/LoggingFeatureMocks.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/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" : [
        "DatadogObjc",
        "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",
        "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/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/Image+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Image.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",
        "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/AppHangs/AppHangsMonitorTests.swift",
        "Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift",
        "Instrumentation/MemoryWarnings/MemoryWarningMocks.swift",
        "Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift",
        "Instrumentation/RUMInstrumentationTests.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",
        "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/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" : [
        "DatadogObjc",
        "DatadogRUM"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogRUM/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "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/RUMActionsHandler.swift",
        "Sources/Instrumentation/Actions/SwiftUI/SwiftUIActionModifier.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/MemoryWarning.swift",
        "Sources/Instrumentation/MemoryWarnings/MemoryWarningMonitor.swift",
        "Sources/Instrumentation/MemoryWarnings/MemoryWarningReporter.swift",
        "Sources/Instrumentation/RUMCommandSubscriber.swift",
        "Sources/Instrumentation/RUMInstrumentation.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.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.swift",
        "Sources/RUMConfiguration.swift",
        "Sources/RUMContext/RUMContext.swift",
        "Sources/RUMContext/RUMContextProvider.swift",
        "Sources/RUMEvent/RUMConnectivityInfoProvider.swift",
        "Sources/RUMEvent/RUMDeviceInfo.swift",
        "Sources/RUMEvent/RUMEventBuilder.swift",
        "Sources/RUMEvent/RUMEventSanitizer.swift",
        "Sources/RUMEvent/RUMOperatingSystemInfo.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/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",
        "DatadogObjc"
      ],
      "sources" : [
        "ObjcAppLaunchHandler.m",
        "ObjcExceptionHandler.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogObjc",
      "module_type" : "SwiftTarget",
      "name" : "DatadogObjc",
      "path" : "DatadogObjc/Sources",
      "product_memberships" : [
        "DatadogObjc"
      ],
      "sources" : [
        "DDInternalLogger+objc.swift",
        "DDURLSessionDelegate+objc.swift",
        "DDURLSessionInstrumentation+objc.swift",
        "Datadog+objc.swift",
        "DatadogConfiguration+objc.swift",
        "Logs/Logs+objc.swift",
        "Logs/LogsDataModels+objc.swift",
        "OpenTracing/OTSpan+objc.swift",
        "OpenTracing/OTSpanContext+objc.swift",
        "OpenTracing/OTTracer+objc.swift",
        "RUM/RUM+objc.swift",
        "RUM/RUMDataModels+objc.swift",
        "Tracing/DDSpan+objc.swift",
        "Tracing/DDSpanContext+objc.swift",
        "Tracing/Propagation/B3HTTPHeadersWriter+objc.swift",
        "Tracing/Propagation/HTTPHeadersWriter+objc.swift",
        "Tracing/Propagation/TraceContextInjection+objc.swift",
        "Tracing/Propagation/TraceSamplingStrategy+objc.swift",
        "Tracing/Propagation/W3CHTTPHeadersWriter+objc.swift",
        "Tracing/Trace+objc.swift",
        "Tracing/Utils/Casting.swift"
      ],
      "target_dependencies" : [
        "DatadogCore",
        "DatadogLogs",
        "DatadogTrace",
        "DatadogRUM"
      ],
      "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" : [
        "DatadogObjc",
        "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.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/URLSessionDelegateAsSuperclassTests.swift",
        "NetworkInstrumentation/URLSessionInterceptorTests.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",
        "DatadogObjc",
        "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",
        "Context/AppState.swift",
        "Context/ApplicationNotifications.swift",
        "Context/BatteryStatus.swift",
        "Context/BundleType.swift",
        "Context/CarrierInfo.swift",
        "Context/DatadogContext.swift",
        "Context/DatadogSite.swift",
        "Context/DateProvider.swift",
        "Context/DeviceInfo.swift",
        "Context/LaunchTime.swift",
        "Context/NetworkConnectionInfo.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/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.swift",
        "NetworkInstrumentation/URLSession/DatadogURLSessionDelegate.swift",
        "NetworkInstrumentation/URLSession/ImmutableRequest.swift",
        "NetworkInstrumentation/URLSession/NetworkInstrumentationSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionDataDelegateSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionInstrumentation.swift",
        "NetworkInstrumentation/URLSession/URLSessionInterceptor.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/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/CustomDump.swift",
        "Utils/DDError.swift",
        "Utils/DateFormatting.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",
        "DatadogObjc"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogCore/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Sources/Core/Context/ApplicationStatePublisher.swift",
        "Sources/Core/Context/ApplicationVersionPublisher.swift",
        "Sources/Core/Context/BatteryStatusPublisher.swift",
        "Sources/Core/Context/CarrierInfoPublisher.swift",
        "Sources/Core/Context/ContextValuePublisher.swift",
        "Sources/Core/Context/DatadogContextProvider.swift",
        "Sources/Core/Context/LaunchTimePublisher.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.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/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/2.28.1
Repository:               DataDog/dd-sdk-ios
Swift version used:       6.1
Target:                   DatadogInternal
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/2.28.1 --checkout-path /Users/admin/builder/spi-builder-workspace" -scheme DatadogInternal -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/2.28.1 --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.3 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:
  PLCrashReporter: https://github.com/microsoft/plcrashreporter.git @ 1.12.0
  SwiftDocCPlugin: https://github.com/swiftlang/swift-docc-plugin @ 1.4.3
  SymbolKit: https://github.com/swiftlang/swift-docc-symbolkit @ 1.0.0
  opentelemetry-swift: https://github.com/DataDog/opentelemetry-swift-packages.git @ 1.13.1
  Datadog: /Users/admin/builder/spi-builder-workspace
2025-05-31 06:42:48.998 xcodebuild[1408:7139] Writing error result bundle to /var/folders/5k/5yc19ymj0jqd5v0zvgfqz0xw0000gn/T/ResultBundle_2025-31-05_06-42-0048.xcresult
xcodebuild: error: The workspace named "spi-builder-workspace" does not contain a scheme named "DatadogInternal". 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/2.28.1 --checkout-path /Users/admin/builder/spi-builder-workspace" -scheme DatadogInternal -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/2.28.1 --checkout-path /Users/admin/builder/spi-builder-workspace
Resolve Package Graph
Resolved source packages:
  Datadog: /Users/admin/builder/spi-builder-workspace
  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.3
  opentelemetry-swift: https://github.com/DataDog/opentelemetry-swift-packages.git @ 1.13.1
2025-05-31 06:42:59.214 xcodebuild[1763:9030] Writing error result bundle to /var/folders/5k/5yc19ymj0jqd5v0zvgfqz0xw0000gn/T/ResultBundle_2025-31-05_06-42-0059.xcresult
xcodebuild: error: The workspace named "spi-builder-workspace" does not contain a scheme named "DatadogInternal". 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/2.28.1 --checkout-path $PWD -scheme DatadogInternal -destination generic/platform=iOS))
✅  Doc result (failed) reported
Done.