The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of glTFSceneKit, reference develop (3a043b), with Swift 6.0 for macOS (Xcode) using Xcode 16.2 on 1 Dec 2024 18:24:10 UTC.

Swift 6 data race errors: 9

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme glTFSceneKit -destination platform=macOS,arch=arm64 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

    static let manager = TextureStorageManager()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:57:7: note: class 'TextureStorageManager' does not conform to the 'Sendable' protocol
class TextureStorageManager {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:59:16: note: annotate 'manager' with '@MainActor' if property should only be accessed from the main actor
    static let manager = TextureStorageManager()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:59:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let manager = TextureStorageManager()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:130:27: warning: capture of 'self' with non-sendable type 'TextureStorageManager' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let tStatus = self.textureAssociator(gltf: gltf, at: index)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:57:7: note: class 'TextureStorageManager' does not conform to the 'Sendable' protocol
class TextureStorageManager {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:130:56: warning: capture of 'gltf' with non-sendable type 'GLTF' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let tStatus = self.textureAssociator(gltf: gltf, at: index)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift:14:12: note: class 'GLTF' does not conform to the 'Sendable' protocol
open class GLTF: NSObject, Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:134:45: warning: capture of 'property' with non-sendable type 'SCNMaterialProperty' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                tStatus.associate(property: property)
                                            ^
SceneKit.SCNMaterialProperty:1:12: note: class 'SCNMaterialProperty' does not conform to the 'Sendable' protocol
open class SCNMaterialProperty : NSObject, SCNAnimatable, NSSecureCoding {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SceneKit'
import SceneKit
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:136:43: warning: capture of 'texture' with non-sendable type 'GLTFTexture' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                gltf.loadSampler(sampler: texture.sampler, property: property)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift:14:12: note: class 'GLTFTexture' does not conform to the 'Sendable' protocol
open class GLTFTexture: NSObject, Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:139:32: warning: capture of 'delegate' with non-sendable type 'any TextureLoaderDelegate' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                let metalOn = (delegate.renderer?.renderingAPI == .metal || device != nil)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:19:10: note: protocol 'TextureLoaderDelegate' does not conform to the 'Sendable' protocol
protocol TextureLoaderDelegate: class {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:146:28: warning: capture of 'gltf' with non-sendable type 'GLTF' in an isolated closure; this is an error in the Swift 6 language mode
                        if gltf.isCancelled {
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift:14:12: note: class 'GLTF' does not conform to the 'Sendable' protocol
open class GLTF: NSObject, Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:153:29: warning: capture of 'self' with non-sendable type 'TextureStorageManager' in an isolated closure; this is an error in the Swift 6 language mode
                            self._loadImageTexture(gltf, delegate, texture, tStatus)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:57:7: note: class 'TextureStorageManager' does not conform to the 'Sendable' protocol
class TextureStorageManager {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:153:58: warning: capture of 'delegate' with non-sendable type 'any TextureLoaderDelegate' in an isolated closure; this is an error in the Swift 6 language mode
                            self._loadImageTexture(gltf, delegate, texture, tStatus)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:19:10: note: protocol 'TextureLoaderDelegate' does not conform to the 'Sendable' protocol
protocol TextureLoaderDelegate: class {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:153:68: warning: capture of 'texture' with non-sendable type 'GLTFTexture' in an isolated closure; this is an error in the Swift 6 language mode
                            self._loadImageTexture(gltf, delegate, texture, tStatus)
                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift:14:12: note: class 'GLTFTexture' does not conform to the 'Sendable' protocol
open class GLTFTexture: NSObject, Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:161:36: warning: capture of 'gltf' with non-sendable type 'GLTF' in an isolated closure; this is an error in the Swift 6 language mode
                                if gltf.isCancelled {
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift:14:12: note: class 'GLTF' does not conform to the 'Sendable' protocol
open class GLTF: NSObject, Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:168:37: warning: capture of 'self' with non-sendable type 'TextureStorageManager' in an isolated closure; this is an error in the Swift 6 language mode
                                    self._loadImageTexture(gltf, delegate, texture, tStatus)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:57:7: note: class 'TextureStorageManager' does not conform to the 'Sendable' protocol
class TextureStorageManager {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:168:66: warning: capture of 'delegate' with non-sendable type 'any TextureLoaderDelegate' in an isolated closure; this is an error in the Swift 6 language mode
                                    self._loadImageTexture(gltf, delegate, texture, tStatus)
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:19:10: note: protocol 'TextureLoaderDelegate' does not conform to the 'Sendable' protocol
protocol TextureLoaderDelegate: class {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:168:76: warning: capture of 'texture' with non-sendable type 'GLTFTexture' in an isolated closure; this is an error in the Swift 6 language mode
                                    self._loadImageTexture(gltf, delegate, texture, tStatus)
                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift:14:12: note: class 'GLTFTexture' does not conform to the 'Sendable' protocol
open class GLTFTexture: NSObject, Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:192:16: warning: capture of 'gltf' with non-sendable type 'GLTF' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            if gltf.isCancelled {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift:14:12: note: class 'GLTF' does not conform to the 'Sendable' protocol
open class GLTF: NSObject, Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:195:25: warning: capture of 'self' with non-sendable type 'TextureStorageManager' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let group = self.group(gltf: gltf, delegate: delegate, true)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:57:7: note: class 'TextureStorageManager' does not conform to the 'Sendable' protocol
class TextureStorageManager {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:195:58: warning: capture of 'delegate' with non-sendable type 'any TextureLoaderDelegate' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let group = self.group(gltf: gltf, delegate: delegate, true)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:19:10: note: protocol 'TextureLoaderDelegate' does not conform to the 'Sendable' protocol
protocol TextureLoaderDelegate: class {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:197:39: warning: capture of 'texture' with non-sendable type 'GLTFTexture' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            if let imageSourceIndex = texture.source {
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift:14:12: note: class 'GLTFTexture' does not conform to the 'Sendable' protocol
open class GLTFTexture: NSObject, Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:202:29: warning: capture of 'tStatus' with non-sendable type 'TextureAssociator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                            tStatus.content = gltf._compress(image: resource.image!)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:24:7: note: class 'TextureAssociator' does not conform to the 'Sendable' protocol
class TextureAssociator {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:202:29: warning: capture of 'tStatus' with non-sendable type 'TextureAssociator' in an isolated closure; this is an error in the Swift 6 language mode
                            tStatus.content = gltf._compress(image: resource.image!)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:24:7: note: class 'TextureAssociator' does not conform to the 'Sendable' protocol
class TextureAssociator {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift:202:47: warning: capture of 'gltf' with non-sendable type 'GLTF' in an isolated closure; this is an error in the Swift 6 language mode
                            tStatus.content = gltf._compress(image: resource.image!)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift:14:12: note: class 'GLTF' does not conform to the 'Sendable' protocol
open class GLTF: NSObject, Codable {
           ^
SwiftCompile normal arm64 Compiling\ GLTFAccessorSparseValues.swift,\ GLTFAnimation.swift,\ GLTFAnimationChannel.swift,\ GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseValues.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannel.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAnimationChannelTarget.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ GLTF.swift,\ GLTFAccessor.swift,\ GLTFAccessorSparse.swift,\ GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessor.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparse.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTFAccessorSparseIndices.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for glTFSceneKit (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftCompile normal arm64 Compiling\ GLTF+Animation.swift,\ GLTF+CompressedTexture.swift,\ GLTF+Draco.swift,\ GLTF+Material.swift,\ GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift:239:16: warning: static property 'device' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var device = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift:239:16: note: convert 'device' to a 'let' constant to make 'Sendable' shared state immutable
    static var device = {
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift:239:16: note: annotate 'device' with '@MainActor' if property should only be accessed from the main actor
    static var device = {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift:239:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var device = {
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Animation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+CompressedTexture.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Material.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTF.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessor.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparse.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseIndices.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAccessorSparseValues.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationChannelTarget.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAnimationSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFAsset.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBuffer.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFBufferView.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCamera.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraOrthographic.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFCameraPerspective.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFImage.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFKHRDracoMeshCompressionExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterial.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialNormalTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialOcclusionTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMaterialPBRMetallicRoughness.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMesh.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFMeshPrimitive.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFNode.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSampler.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFScene.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFSkin.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTexture.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/GLTFTextureInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter+Geometry.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFConverter.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTFResourceLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF_3D4MCompressedTextureExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift /Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/TextureStorageManager.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name glTFSceneKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Animation.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+CompressedTexture.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Draco.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+Material.o -index-unit-output-path /glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/GLTF+SceneKit.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:48:20: warning: static property 'resource_loader' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var resource_loader = "resource_loader"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:48:20: note: convert 'resource_loader' to a 'let' constant to make 'Sendable' shared state immutable
        static var resource_loader = "resource_loader"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:48:20: note: annotate 'resource_loader' with '@MainActor' if property should only be accessed from the main actor
        static var resource_loader = "resource_loader"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:48:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var resource_loader = "resource_loader"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:49:20: warning: static property 'load_canceled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var load_canceled = "load_canceled"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:49:20: note: convert 'load_canceled' to a 'let' constant to make 'Sendable' shared state immutable
        static var load_canceled = "load_canceled"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:49:20: note: annotate 'load_canceled' with '@MainActor' if property should only be accessed from the main actor
        static var load_canceled = "load_canceled"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:49:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var load_canceled = "load_canceled"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:139:16: warning: static property 'data_associate_key' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var data_associate_key = "data_associate_key"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:139:16: note: convert 'data_associate_key' to a 'let' constant to make 'Sendable' shared state immutable
    static var data_associate_key = "data_associate_key"
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:139:16: note: annotate 'data_associate_key' with '@MainActor' if property should only be accessed from the main actor
    static var data_associate_key = "data_associate_key"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:139:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var data_associate_key = "data_associate_key"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:149:16: warning: static property 'image_associate_key' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var image_associate_key = "image_associate_key"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:149:16: note: convert 'image_associate_key' to a 'let' constant to make 'Sendable' shared state immutable
    static var image_associate_key = "image_associate_key"
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:149:16: note: annotate 'image_associate_key' with '@MainActor' if property should only be accessed from the main actor
    static var image_associate_key = "image_associate_key"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:149:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var image_associate_key = "image_associate_key"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:40:25: warning: method 'scene(_:didCreate:)' with Objective-C selector 'scene:didCreate:' conflicts with previous declaration with the same Objective-C selector; this is an error in the Swift 6 language mode
    @objc optional func scene(_ scene: SCNScene?, didCreate node: SCNNode)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:39:25: note: 'scene(_:didCreate:)' previously declared here
    @objc optional func scene(_ scene: SCNScene?, didCreate camera: SCNCamera)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:54:58: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
            var loader_ = objc_getAssociatedObject(self, &Keys.resource_loader) as? GLTFResourceLoader
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:62:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &Keys.resource_loader, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:67:54: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        get { return (objc_getAssociatedObject(self, &Keys.load_canceled) as? Bool) ?? false }
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:68:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &Keys.load_canceled, newValue, .OBJC_ASSOCIATION_ASSIGN) }
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:142:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        get { return objc_getAssociatedObject(self, &GLTFBuffer.data_associate_key) as? Data }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:143:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &GLTFBuffer.data_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:152:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        get { return objc_getAssociatedObject(self, &GLTFImage.image_associate_key) as? OSImage }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:153:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &GLTFImage.image_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
                                             ^
SwiftDriverJobDiscovery normal arm64 Compiling GLTFKHRDracoMeshCompressionExtension.swift, GLTFMaterial.swift, GLTFMaterialNormalTextureInfo.swift, GLTFMaterialOcclusionTextureInfo.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftDriver\ Compilation\ Requirements glTFSceneKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name glTFSceneKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit-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/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.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/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling GLTFAnimationSampler.swift, GLTFAsset.swift, GLTFBuffer.swift, GLTFBufferView.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftDriverJobDiscovery normal arm64 Compiling GLTFMaterialPBRMetallicRoughness.swift, GLTFMesh.swift, GLTFMeshPrimitive.swift, GLTFNode.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/glTFSceneKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit-Swift.h (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/glTFSceneKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.swiftdoc (in target 'glTFSceneKit' from project 'glTFSceneKit')
    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/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.swiftmodule (in target 'glTFSceneKit' from project 'glTFSceneKit')
    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/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.abi.json (in target 'glTFSceneKit' from project 'glTFSceneKit')
    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/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.swiftsourceinfo (in target 'glTFSceneKit' from project 'glTFSceneKit')
    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/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling GLTFAccessorSparseValues.swift, GLTFAnimation.swift, GLTFAnimationChannel.swift, GLTFAnimationChannelTarget.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftDriverJobDiscovery normal arm64 Compiling GLTFSampler.swift, GLTFScene.swift, GLTFSkin.swift, GLTFTexture.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftDriverJobDiscovery normal arm64 Compiling GLTF.swift, GLTFAccessor.swift, GLTFAccessorSparse.swift, GLTFAccessorSparseIndices.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftDriverJobDiscovery normal arm64 Compiling GLTFCamera.swift, GLTFCameraOrthographic.swift, GLTFCameraPerspective.swift, GLTFImage.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftDriverJobDiscovery normal arm64 Compiling GLTFResourceLoader.swift, GLTF_3D4MCompressedTextureExtension.swift, Helper.swift, TextureStorageManager.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftDriverJobDiscovery normal arm64 Compiling GLTF+Animation.swift, GLTF+CompressedTexture.swift, GLTF+Draco.swift, GLTF+Material.swift, GLTF+SceneKit.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftDriverJobDiscovery normal arm64 Compiling GLTFTextureInfo.swift, JSONCodingKeys.swift, GLTFConverter+Geometry.swift, GLTFConverter.swift (in target 'glTFSceneKit' from project 'glTFSceneKit')
SwiftDriver\ Compilation glTFSceneKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name glTFSceneKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit-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/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.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/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit-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/glTFSceneKit.o normal (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/glTFSceneKit.build/Debug/glTFSceneKit.build/Objects-normal/arm64/glTFSceneKit_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.o (in target 'glTFSceneKit' from project 'glTFSceneKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/glTFSceneKit.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "glTFSceneKit",
  "name" : "glTFSceneKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "glTFSceneKit",
      "targets" : [
        "glTFSceneKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "glTFSceneKitTests",
      "module_type" : "SwiftTarget",
      "name" : "glTFSceneKitTests",
      "path" : "Tests/glTFSceneKitTests",
      "sources" : [
        "gltf_scenekitTests.swift"
      ],
      "target_dependencies" : [
        "glTFSceneKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "glTFSceneKit",
      "module_type" : "SwiftTarget",
      "name" : "glTFSceneKit",
      "path" : "Sources/glTFSceneKit",
      "product_memberships" : [
        "glTFSceneKit"
      ],
      "sources" : [
        "GLTF+Animation.swift",
        "GLTF+CompressedTexture.swift",
        "GLTF+Draco.swift",
        "GLTF+Material.swift",
        "GLTF+SceneKit.swift",
        "GLTF/GLTF.swift",
        "GLTF/GLTFAccessor.swift",
        "GLTF/GLTFAccessorSparse.swift",
        "GLTF/GLTFAccessorSparseIndices.swift",
        "GLTF/GLTFAccessorSparseValues.swift",
        "GLTF/GLTFAnimation.swift",
        "GLTF/GLTFAnimationChannel.swift",
        "GLTF/GLTFAnimationChannelTarget.swift",
        "GLTF/GLTFAnimationSampler.swift",
        "GLTF/GLTFAsset.swift",
        "GLTF/GLTFBuffer.swift",
        "GLTF/GLTFBufferView.swift",
        "GLTF/GLTFCamera.swift",
        "GLTF/GLTFCameraOrthographic.swift",
        "GLTF/GLTFCameraPerspective.swift",
        "GLTF/GLTFImage.swift",
        "GLTF/GLTFKHRDracoMeshCompressionExtension.swift",
        "GLTF/GLTFMaterial.swift",
        "GLTF/GLTFMaterialNormalTextureInfo.swift",
        "GLTF/GLTFMaterialOcclusionTextureInfo.swift",
        "GLTF/GLTFMaterialPBRMetallicRoughness.swift",
        "GLTF/GLTFMesh.swift",
        "GLTF/GLTFMeshPrimitive.swift",
        "GLTF/GLTFNode.swift",
        "GLTF/GLTFSampler.swift",
        "GLTF/GLTFScene.swift",
        "GLTF/GLTFSkin.swift",
        "GLTF/GLTFTexture.swift",
        "GLTF/GLTFTextureInfo.swift",
        "GLTF/JSONCodingKeys.swift",
        "GLTFConverter+Geometry.swift",
        "GLTFConverter.swift",
        "GLTFResourceLoader.swift",
        "GLTF_3D4MCompressedTextureExtension.swift",
        "Helper.swift",
        "TextureStorageManager.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.