Build Information
Failed to build Syntax, reference 2.0.0 (602cfa
), with Swift 6.2 (beta) for visionOS using Xcode 26.0 on 19 Jun 2025 14:00:08 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Syntax -destination generic/platform=xrOS
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/nerdsupremacist/Syntax.git
Reference: 2.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/nerdsupremacist/Syntax
* tag 2.0.0 -> FETCH_HEAD
HEAD is now at 602cfa4 Adding release date to new version
Cloned https://github.com/nerdsupremacist/Syntax.git
Revision (git rev-parse @):
602cfa42c99239d399afaea1793950f12d5c3224
SUCCESS checkout https://github.com/nerdsupremacist/Syntax.git at 2.0.0
========================================
Build
========================================
Selected platform: visionOS
Swift version: 6.2
Building package at path: $PWD
https://github.com/nerdsupremacist/Syntax.git
Command line invocation:
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Fetching from https://github.com/nerdsupremacist/SyntaxTree.git
Creating working copy of package ‘SyntaxTree’
Checking out 0.1.0 of package ‘SyntaxTree’
Resolve Package Graph
Resolve Package Graph
Resolved source packages:
Syntax: /Users/admin/builder/spi-builder-workspace
SyntaxTree: https://github.com/nerdsupremacist/SyntaxTree.git @ 0.1.0
resolved source packages: Syntax, SyntaxTree
{
"dependencies" : [
{
"identity" : "syntaxtree",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/nerdsupremacist/SyntaxTree.git"
}
],
"manifest_display_name" : "Syntax",
"name" : "Syntax",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Syntax",
"targets" : [
"Syntax"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SyntaxTests",
"module_type" : "SwiftTarget",
"name" : "SyntaxTests",
"path" : "Tests/SyntaxTests",
"sources" : [
"Expression/Expression+Operator.swift",
"Expression/Expression.swift",
"Expression/ExpressionParser.swift",
"ExpressionSyntaxTests.swift",
"HTML/HTMLNode.swift",
"HTML/HTMLNodeParser.swift",
"HTMLSyntaxTests.swift",
"JSON/JSON.swift",
"JSON/JSONParser.swift",
"JSONSyntaxTests.swift"
],
"target_dependencies" : [
"Syntax"
],
"type" : "test"
},
{
"c99name" : "Syntax",
"module_type" : "SwiftTarget",
"name" : "Syntax",
"path" : "Sources/Syntax",
"product_dependencies" : [
"SyntaxTree"
],
"product_memberships" : [
"Syntax"
],
"sources" : [
"AnnotatedString.swift",
"Cache/Cache.swift",
"Cache/OrderedSet.swift",
"Errors/AnnotatedError.swift",
"Errors/DiagnosticError.swift",
"Errors/ParserError.swift",
"Errors/ScannerError.swift",
"Errors/ScannerErrorHandler.swift",
"Errors/WhiteSpaceConsumer.swift",
"ExpressionMatch.swift",
"FunctionBuilder/EitherParserBuilder.swift",
"FunctionBuilder/ParserBuilder.swift",
"FunctionBuilder/PartialEmptyParserResult.swift",
"FunctionBuilder/PartialParserResult.swift",
"FunctionBuilder/PartialResult.swift",
"Implementations/AnyParser.swift",
"Implementations/Common/BinaryOperation/Associativity.swift",
"Implementations/Common/BinaryOperation/BinaryOperation.swift",
"Implementations/Common/BinaryOperation/BinaryOperationParser.swift",
"Implementations/Common/BinaryOperation/BinaryOperationParserError.swift",
"Implementations/Common/BinaryOperation/BinaryOperator.swift",
"Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift",
"Implementations/Common/BooleanLiteral.swift",
"Implementations/Common/DoubleLiteral.swift",
"Implementations/Common/IntLiteral.swift",
"Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift",
"Implementations/Common/StringLiterals/StringEscapeStrategy.swift",
"Implementations/Common/StringLiterals/StringLiteral.swift",
"Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift",
"Implementations/Modifications/Maybe.swift",
"Implementations/Modifications/Parser+annotate.swift",
"Implementations/Modifications/Parser+ignoreOutput.swift",
"Implementations/Modifications/Parser+kind.swift",
"Implementations/Modifications/Parser+map+location.swift",
"Implementations/Modifications/Parser+map.swift",
"Implementations/Modifications/Parser+optimize.swift",
"Implementations/Modifications/Parser+preventRecursion.swift",
"Implementations/Modifications/Parser+repeatUntil.swift",
"Implementations/Modifications/Parser+separated.swift",
"Implementations/Modifications/Repeat.swift",
"Implementations/Structure/Annotated.swift",
"Implementations/Structure/AnnotatedUntil.swift",
"Implementations/Structure/Either.swift",
"Implementations/Structure/Group.swift",
"Implementations/Structure/Leaf.swift",
"Implementations/Structure/Recursive.swift",
"Implementations/Structure/TupleParser.swift",
"Implementations/Tokens/EmptyParser.swift",
"Implementations/Tokens/RegexBuilder+support.swift",
"Implementations/Tokens/RegularExpression.swift",
"Implementations/Tokens/String+Parser.swift",
"Implementations/Tokens/Token.swift",
"Implementations/Tokens/Word.swift",
"Implementations/neverBody.swift",
"Internals/InternalParser.swift",
"Internals/MemoizationKey.swift",
"Internals/MemoizationStorage.swift",
"Internals/Memoized.swift",
"Internals/Node.swift",
"Internals/Parser+internalParser.swift",
"Internals/Scanner.swift",
"Internals/ScannerState.swift",
"Internals/Stack.swift",
"Internals/StandardScanner.swift",
"Internals/String+casing.swift",
"Located.swift",
"Parser.swift",
"ParserOption.swift"
],
"type" : "library"
}
],
"tools_version" : "5.4"
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"Syntax"
]
}
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Syntax -destination generic/platform=xrOS
Command line invocation:
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme Syntax -destination generic/platform=xrOS
Resolve Package Graph
Resolve Package Graph
Resolved source packages:
SyntaxTree: https://github.com/nerdsupremacist/SyntaxTree.git @ 0.1.0
Syntax: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (4 targets)
Target 'Syntax' in project 'Syntax'
➜ Explicit dependency on target 'Syntax' in project 'Syntax'
➜ Explicit dependency on target 'SyntaxTree' in project 'SyntaxTree'
Target 'Syntax' in project 'Syntax'
➜ Explicit dependency on target 'SyntaxTree' in project 'SyntaxTree'
Target 'SyntaxTree' in project 'SyntaxTree'
➜ Explicit dependency on target 'SyntaxTree' in project 'SyntaxTree'
Target 'SyntaxTree' in project 'SyntaxTree' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: 4d8b6f624106f0af95f6c836cdbf2a86
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/4d8b6f624106f0af95f6c836cdbf2a86.xcbuilddata
ClangStatCache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.modulemap (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.modulemap
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.DependencyStaticMetadataFileList (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftConstValuesFileList (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftConstValuesFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.DependencyMetadataFileList (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.DependencyMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Syntax.modulemap (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Syntax.modulemap
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.LinkFileList (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Syntax.DependencyStaticMetadataFileList (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Syntax.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Syntax.DependencyMetadataFileList (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Syntax.DependencyMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/SyntaxTree.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.modulemap (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.SwiftConstValuesFileList (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.SwiftConstValuesFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.LinkFileList (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax-OutputFileMap.json (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax-OutputFileMap.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/Syntax.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Syntax.modulemap (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Syntax.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros
SwiftDriver SyntaxTree normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SyntaxTree -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -DXcode -plugin-path /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -explicit-module-build -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -clang-scanner-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -sdk-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.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/SyntaxTree.build/Debug-xros/SyntaxTree.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.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/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_stddef-21H3N9DH1KLS9X4PIJZT9JFO8.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/ptrcheck-E7LE7DV0CNK9MJMHLAZCYDQGG.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_SwiftConcurrencyShims-63O7P0417CITDU5TAPFWA16RK.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_float-1YQCTN0O73AHNHZOS6SY3HD3E.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/ptrauth-3H3LLJBXUZYXL2X8I9QOFQSE2.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/SwiftShims-F46X5FXY7I1HWEOCOQVSQWDNN.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_stdarg-AGIMNIU03RBGDKDFQRREAQMB0.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_AvailabilityInternal-C2AB6M1NNYPFLWYMKDOFRYH8X.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_stdbool-7G57MOE58GZVJMWN1GCZ599TP.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_DarwinFoundation1-EFETDZLNX0FEPQZ2E3PZFKYNR.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_DarwinFoundation2-E60OGYQQCI50TU38JKHOXIOVC.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_limits-DKV1BYCIVIYMBC5V04ISHLS5A.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_stdint-DN40O2QXVAPS5PX3RRQK2CDTB.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_DarwinFoundation3-2J7H31OFACG6OUGQJF3Z2HH2P.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_inttypes-7IAHOD1D4EZJRBSJ4YXQCX8QK.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Darwin-ANJZ93KTRF4ZV05C6NV5Q0SRR.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/ObjectiveC-1UIC5AG2ZCLFQ1S2SJZ5E9I8I.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/os_object-14HP1DXB4AHZLLZ2VG0XM57OP.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/os_workgroup-1TVSUO7YH3KW9W6KS32GSRDVI.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Dispatch-AA5V45I59GR8Q18J0KTZFB92T.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/CoreFoundation-C55Z6VZ589KY8LHRRM3J869RS.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/CFNetwork-9EX4JLL2HOHSIU45ZL7AEA88A.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Security-8BP09VQ2TO94G5OK8X98USG8N.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Foundation-9ABIQSLNMD9AJ6942NNHN34Z2.pcm
SwiftEmitModule normal arm64 Emitting\ module\ for\ SyntaxTree (in target 'SyntaxTree' from project 'SyntaxTree')
EmitSwiftModule normal arm64 (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SyntaxTree.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/SyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/SyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Location.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Location.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Location.swift (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Kind.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SyntaxTreeFactory.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/SyntaxTreeFactory.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/SyntaxTreeFactory.swift (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ LineColumnIndex.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/LineColumnIndex.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/LineColumnIndex.swift (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ MutableSyntaxTree.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/MutableSyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/MutableSyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for SyntaxTree (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftDriver\ Compilation\ Requirements SyntaxTree normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SyntaxTree -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -DXcode -plugin-path /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -explicit-module-build -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -clang-scanner-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -sdk-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.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/SyntaxTree.build/Debug-xros/SyntaxTree.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.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/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/SyntaxTree-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/SyntaxTree-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftmodule (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
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/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.abi.json (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
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/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftdoc (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
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/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftsourceinfo (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
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/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftDriver Syntax normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Syntax -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -DXcode -plugin-path /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -explicit-module-build -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -clang-scanner-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -sdk-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.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/Syntax.build/Debug-xros/Syntax.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.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/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ Syntax (in target 'Syntax' from project 'Syntax')
EmitSwiftModule normal arm64 (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ AnnotatedString.swift,\ Cache.swift,\ OrderedSet.swift,\ AnnotatedError.swift,\ DiagnosticError.swift,\ ParserError.swift,\ ScannerError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/AnnotatedString.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/OrderedSet.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/DiagnosticError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/AnnotatedString.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/Cache.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/OrderedSet.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/DiagnosticError.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ParserError.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ RegularExpression.swift,\ String+Parser.swift,\ Token.swift,\ Word.swift,\ neverBody.swift,\ InternalParser.swift,\ MemoizationKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/neverBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/InternalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationKey.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/neverBody.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/InternalParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationKey.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ MemberOfBinaryOperation.swift,\ BooleanLiteral.swift,\ DoubleLiteral.swift,\ IntLiteral.swift,\ JavaScriptEscapeStrategy.swift,\ StringEscapeStrategy.swift,\ StringLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift (in target 'Syntax' from project 'Syntax')
Failed frontend command:
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Syntax/AnnotatedString.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/OrderedSet.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/DiagnosticError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerErrorHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/WhiteSpaceConsumer.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ExpressionMatch.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/EitherParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/ParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialEmptyParserResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialParserResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/AnyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/Associativity.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Maybe.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+annotate.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+ignoreOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+kind.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map+location.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+optimize.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+preventRecursion.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+repeatUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+separated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Repeat.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Annotated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/AnnotatedUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Either.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Group.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Leaf.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Recursive.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/TupleParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/EmptyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegexBuilder+support.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/neverBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/InternalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Memoized.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Node.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Parser+internalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Scanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Stack.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardScanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/String+casing.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Located.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-xros1.0 -module-can-import-version RegexBuilder 6.2.0.9 0 -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins/libFoundationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server\#FoundationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins/libObservationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server\#ObservationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins/libSwiftMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server\#SwiftMacros -disable-implicit-swift-modules -Xcc -fno-implicit-modules -Xcc -fno-implicit-module-maps -explicit-swift-module-map-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax-dependencies-1.json -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk/Developer/Library/Frameworks -no-color-diagnostics -Xcc -fno-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D SWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -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 -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -no-auto-bridging-header-chaining -module-name Syntax -frontend-parseable-output -disable-clang-spi -target-sdk-version 26.0 -target-sdk-name xros26.0 -clang-target arm64-apple-xros26.0 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/MemberOfBinaryOperation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/BooleanLiteral.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/DoubleLiteral.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/IntLiteral.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/JavaScriptEscapeStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/StringEscapeStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/StringLiteral.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/MemberOfBinaryOperation.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/BooleanLiteral.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/DoubleLiteral.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/IntLiteral.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/JavaScriptEscapeStrategy.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/StringEscapeStrategy.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/StringLiteral.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/Syntax/Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:23:30: error: contextual closure type '(Substring, String) throws -> Substring' expects 2 arguments, but 1 was used in closure body
annotated.string { $0 }
^
SwiftCompile normal arm64 Compiling\ MemoizationStorage.swift,\ Memoized.swift,\ Node.swift,\ Parser+internalParser.swift,\ Scanner.swift,\ ScannerState.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Memoized.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Node.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Parser+internalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Scanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationStorage.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Memoized.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Node.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Parser+internalParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Scanner.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling SyntaxTreeFactory.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 Compiling\ Either.swift,\ Group.swift,\ Leaf.swift,\ Recursive.swift,\ TupleParser.swift,\ EmptyParser.swift,\ RegexBuilder+support.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Either.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Group.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Leaf.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Recursive.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/TupleParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/EmptyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegexBuilder+support.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Either.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Group.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Leaf.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Recursive.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/TupleParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/EmptyParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegexBuilder+support.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling AnnotatedString.swift, Cache.swift, OrderedSet.swift, AnnotatedError.swift, DiagnosticError.swift, ParserError.swift, ScannerError.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ Parser+optimize.swift,\ Parser+preventRecursion.swift,\ Parser+repeatUntil.swift,\ Parser+separated.swift,\ Repeat.swift,\ Annotated.swift,\ AnnotatedUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+optimize.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+preventRecursion.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+repeatUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+separated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Repeat.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Annotated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/AnnotatedUntil.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+optimize.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+preventRecursion.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+repeatUntil.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+separated.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Repeat.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Annotated.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/AnnotatedUntil.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SwiftEscapeStrategy.swift,\ Maybe.swift,\ Parser+annotate.swift,\ Parser+ignoreOutput.swift,\ Parser+kind.swift,\ Parser+map+location.swift,\ Parser+map.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Maybe.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+annotate.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+ignoreOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+kind.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map+location.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Maybe.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+annotate.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+ignoreOutput.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+kind.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map+location.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Kind.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftDriverJobDiscovery normal arm64 Compiling RegularExpression.swift, String+Parser.swift, Token.swift, Word.swift, neverBody.swift, InternalParser.swift, MemoizationKey.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ Stack.swift,\ StandardScanner.swift,\ String+casing.swift,\ Located.swift,\ Parser.swift,\ ParserOption.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Stack.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardScanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/String+casing.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Located.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Stack.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardScanner.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/String+casing.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Located.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ PartialResult.swift,\ AnyParser.swift,\ Associativity.swift,\ BinaryOperation.swift,\ BinaryOperationParser.swift,\ BinaryOperationParserError.swift,\ BinaryOperator.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/AnyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/Associativity.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperator.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialResult.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/AnyParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/Associativity.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperation.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperator.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling LineColumnIndex.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftDriverJobDiscovery normal arm64 Compiling Location.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 Compiling\ ScannerErrorHandler.swift,\ WhiteSpaceConsumer.swift,\ ExpressionMatch.swift,\ EitherParserBuilder.swift,\ ParserBuilder.swift,\ PartialEmptyParserResult.swift,\ PartialParserResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerErrorHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/WhiteSpaceConsumer.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ExpressionMatch.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/EitherParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/ParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialEmptyParserResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialParserResult.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerErrorHandler.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/WhiteSpaceConsumer.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ExpressionMatch.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/EitherParserBuilder.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/ParserBuilder.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialEmptyParserResult.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialParserResult.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling MutableSyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftDriverJobDiscovery normal arm64 Compiling SyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftDriver\ Compilation SyntaxTree normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SyntaxTree -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -DXcode -plugin-path /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -explicit-module-build -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -clang-scanner-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -sdk-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.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/SyntaxTree.build/Debug-xros/SyntaxTree.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.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/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.o normal (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftmodule @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-linker-args.resp -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.o
ExtractAppIntentsMetadata (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SyntaxTree --sdk-root /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk --xcode-version 17A5241e --platform-family xrOS --deployment-target 1.0 --bundle-identifier syntaxtree.SyntaxTree --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/SyntaxTree.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-xros/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-19 07:00:03.858 appintentsmetadataprocessor[697:3995] Starting appintentsmetadataprocessor export
2025-06-19 07:00:03.932 appintentsmetadataprocessor[697:3995] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.o (in target 'SyntaxTree' from project 'SyntaxTree')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SyntaxTree.o
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64 Compiling\ MemberOfBinaryOperation.swift,\ BooleanLiteral.swift,\ DoubleLiteral.swift,\ IntLiteral.swift,\ JavaScriptEscapeStrategy.swift,\ StringEscapeStrategy.swift,\ StringLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift (in target 'Syntax' from project 'Syntax')
Building workspace spi-builder-workspace with scheme Syntax
(3 failures)
Command line invocation:
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
SyntaxTree: https://github.com/nerdsupremacist/SyntaxTree.git @ 0.1.0
Syntax: /Users/admin/builder/spi-builder-workspace
resolved source packages: SyntaxTree, Syntax
{
"dependencies" : [
{
"identity" : "syntaxtree",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/nerdsupremacist/SyntaxTree.git"
}
],
"manifest_display_name" : "Syntax",
"name" : "Syntax",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Syntax",
"targets" : [
"Syntax"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SyntaxTests",
"module_type" : "SwiftTarget",
"name" : "SyntaxTests",
"path" : "Tests/SyntaxTests",
"sources" : [
"Expression/Expression+Operator.swift",
"Expression/Expression.swift",
"Expression/ExpressionParser.swift",
"ExpressionSyntaxTests.swift",
"HTML/HTMLNode.swift",
"HTML/HTMLNodeParser.swift",
"HTMLSyntaxTests.swift",
"JSON/JSON.swift",
"JSON/JSONParser.swift",
"JSONSyntaxTests.swift"
],
"target_dependencies" : [
"Syntax"
],
"type" : "test"
},
{
"c99name" : "Syntax",
"module_type" : "SwiftTarget",
"name" : "Syntax",
"path" : "Sources/Syntax",
"product_dependencies" : [
"SyntaxTree"
],
"product_memberships" : [
"Syntax"
],
"sources" : [
"AnnotatedString.swift",
"Cache/Cache.swift",
"Cache/OrderedSet.swift",
"Errors/AnnotatedError.swift",
"Errors/DiagnosticError.swift",
"Errors/ParserError.swift",
"Errors/ScannerError.swift",
"Errors/ScannerErrorHandler.swift",
"Errors/WhiteSpaceConsumer.swift",
"ExpressionMatch.swift",
"FunctionBuilder/EitherParserBuilder.swift",
"FunctionBuilder/ParserBuilder.swift",
"FunctionBuilder/PartialEmptyParserResult.swift",
"FunctionBuilder/PartialParserResult.swift",
"FunctionBuilder/PartialResult.swift",
"Implementations/AnyParser.swift",
"Implementations/Common/BinaryOperation/Associativity.swift",
"Implementations/Common/BinaryOperation/BinaryOperation.swift",
"Implementations/Common/BinaryOperation/BinaryOperationParser.swift",
"Implementations/Common/BinaryOperation/BinaryOperationParserError.swift",
"Implementations/Common/BinaryOperation/BinaryOperator.swift",
"Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift",
"Implementations/Common/BooleanLiteral.swift",
"Implementations/Common/DoubleLiteral.swift",
"Implementations/Common/IntLiteral.swift",
"Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift",
"Implementations/Common/StringLiterals/StringEscapeStrategy.swift",
"Implementations/Common/StringLiterals/StringLiteral.swift",
"Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift",
"Implementations/Modifications/Maybe.swift",
"Implementations/Modifications/Parser+annotate.swift",
"Implementations/Modifications/Parser+ignoreOutput.swift",
"Implementations/Modifications/Parser+kind.swift",
"Implementations/Modifications/Parser+map+location.swift",
"Implementations/Modifications/Parser+map.swift",
"Implementations/Modifications/Parser+optimize.swift",
"Implementations/Modifications/Parser+preventRecursion.swift",
"Implementations/Modifications/Parser+repeatUntil.swift",
"Implementations/Modifications/Parser+separated.swift",
"Implementations/Modifications/Repeat.swift",
"Implementations/Structure/Annotated.swift",
"Implementations/Structure/AnnotatedUntil.swift",
"Implementations/Structure/Either.swift",
"Implementations/Structure/Group.swift",
"Implementations/Structure/Leaf.swift",
"Implementations/Structure/Recursive.swift",
"Implementations/Structure/TupleParser.swift",
"Implementations/Tokens/EmptyParser.swift",
"Implementations/Tokens/RegexBuilder+support.swift",
"Implementations/Tokens/RegularExpression.swift",
"Implementations/Tokens/String+Parser.swift",
"Implementations/Tokens/Token.swift",
"Implementations/Tokens/Word.swift",
"Implementations/neverBody.swift",
"Internals/InternalParser.swift",
"Internals/MemoizationKey.swift",
"Internals/MemoizationStorage.swift",
"Internals/Memoized.swift",
"Internals/Node.swift",
"Internals/Parser+internalParser.swift",
"Internals/Scanner.swift",
"Internals/ScannerState.swift",
"Internals/Stack.swift",
"Internals/StandardScanner.swift",
"Internals/String+casing.swift",
"Located.swift",
"Parser.swift",
"ParserOption.swift"
],
"type" : "library"
}
],
"tools_version" : "5.4"
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"Syntax"
]
}
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Syntax -destination generic/platform=xrOS
Command line invocation:
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme Syntax -destination generic/platform=xrOS
Resolve Package Graph
Resolved source packages:
Syntax: /Users/admin/builder/spi-builder-workspace
SyntaxTree: https://github.com/nerdsupremacist/SyntaxTree.git @ 0.1.0
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (4 targets)
Target 'Syntax' in project 'Syntax'
➜ Explicit dependency on target 'Syntax' in project 'Syntax'
➜ Explicit dependency on target 'SyntaxTree' in project 'SyntaxTree'
Target 'Syntax' in project 'Syntax'
➜ Explicit dependency on target 'SyntaxTree' in project 'SyntaxTree'
Target 'SyntaxTree' in project 'SyntaxTree'
➜ Explicit dependency on target 'SyntaxTree' in project 'SyntaxTree'
Target 'SyntaxTree' in project 'SyntaxTree' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ClangStatCache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache
SwiftDriver Syntax normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Syntax -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -DXcode -plugin-path /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -explicit-module-build -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -clang-scanner-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -sdk-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax.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/Syntax.build/Debug-xros/Syntax.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.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/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ ScannerErrorHandler.swift,\ WhiteSpaceConsumer.swift,\ ExpressionMatch.swift,\ EitherParserBuilder.swift,\ ParserBuilder.swift,\ PartialEmptyParserResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerErrorHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/WhiteSpaceConsumer.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ExpressionMatch.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/EitherParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/ParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialEmptyParserResult.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerErrorHandler.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/WhiteSpaceConsumer.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ExpressionMatch.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/EitherParserBuilder.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/ParserBuilder.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialEmptyParserResult.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ AnnotatedUntil.swift,\ Either.swift,\ Group.swift,\ Leaf.swift,\ Recursive.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/AnnotatedUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Either.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Group.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Leaf.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Recursive.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/AnnotatedUntil.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Either.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Group.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Leaf.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Recursive.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Parser+preventRecursion.swift,\ Parser+repeatUntil.swift,\ Parser+separated.swift,\ Repeat.swift,\ Annotated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+preventRecursion.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+repeatUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+separated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Repeat.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Annotated.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+preventRecursion.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+repeatUntil.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+separated.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Repeat.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Annotated.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ JavaScriptEscapeStrategy.swift,\ StringEscapeStrategy.swift,\ StringLiteral.swift,\ SwiftEscapeStrategy.swift,\ Maybe.swift,\ Parser+annotate.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Maybe.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+annotate.swift (in target 'Syntax' from project 'Syntax')
Failed frontend command:
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Syntax/AnnotatedString.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/OrderedSet.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/DiagnosticError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerErrorHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/WhiteSpaceConsumer.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ExpressionMatch.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/EitherParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/ParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialEmptyParserResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialParserResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/AnyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/Associativity.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperator.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Maybe.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+annotate.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+ignoreOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+kind.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map+location.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+optimize.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+preventRecursion.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+repeatUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+separated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Repeat.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Annotated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/AnnotatedUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Either.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Group.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Leaf.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Recursive.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/TupleParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/EmptyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegexBuilder+support.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/neverBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/InternalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Memoized.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Node.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Parser+internalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Scanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Stack.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardScanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/String+casing.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Located.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-xros1.0 -module-can-import-version RegexBuilder 6.2.0.9 0 -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins/libFoundationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server\#FoundationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins/libObservationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server\#ObservationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins/libSwiftMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server\#SwiftMacros -disable-implicit-swift-modules -Xcc -fno-implicit-modules -Xcc -fno-implicit-module-maps -explicit-swift-module-map-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax-dependencies-1.json -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS26.0.sdk/Developer/Library/Frameworks -no-color-diagnostics -Xcc -fno-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D SWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -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 -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros26.0-23M5263k-63777232b7fc5220f33897c1cc69dbf5.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -no-auto-bridging-header-chaining -module-name Syntax -frontend-parseable-output -disable-clang-spi -target-sdk-version 26.0 -target-sdk-name xros26.0 -clang-target arm64-apple-xros26.0 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/JavaScriptEscapeStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/StringEscapeStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/StringLiteral.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/SwiftEscapeStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Maybe.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Parser+annotate.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/JavaScriptEscapeStrategy.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/StringEscapeStrategy.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/StringLiteral.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/SwiftEscapeStrategy.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Maybe.o -index-unit-output-path /Syntax.build/Debug-xros/Syntax.build/Objects-normal/arm64/Parser+annotate.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/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:23:30: error: contextual closure type '(Substring, String) throws -> Substring' expects 2 arguments, but 1 was used in closure body
annotated.string { $0 }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Maybe.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+annotate.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Parser+ignoreOutput.swift,\ Parser+kind.swift,\ Parser+map+location.swift,\ Parser+map.swift,\ Parser+optimize.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+ignoreOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+kind.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map+location.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+optimize.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+ignoreOutput.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+kind.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map+location.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+optimize.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ PartialParserResult.swift,\ PartialResult.swift,\ AnyParser.swift,\ Associativity.swift,\ BinaryOperation.swift,\ BinaryOperationParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialParserResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/AnyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/Associativity.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialParserResult.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/PartialResult.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/AnyParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/Associativity.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperation.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ BinaryOperationParserError.swift,\ BinaryOperator.swift,\ MemberOfBinaryOperation.swift,\ BooleanLiteral.swift,\ DoubleLiteral.swift,\ IntLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperator.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperator.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ StandardScanner.swift,\ String+casing.swift,\ Located.swift,\ Parser.swift,\ ParserOption.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardScanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/String+casing.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Located.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardScanner.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/String+casing.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Located.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ Syntax (in target 'Syntax' from project 'Syntax')
EmitSwiftModule normal arm64 (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Node.swift,\ Parser+internalParser.swift,\ Scanner.swift,\ ScannerState.swift,\ Stack.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Node.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Parser+internalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Scanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Stack.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Node.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Parser+internalParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Scanner.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:442:16: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func store<T>(value: T) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:402:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:450:14: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func pop<T>(of type: T.Type) throws -> T? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:402:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:600:16: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func store<T>(value: T) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:568:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:608:14: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func pop<T>(of type: T.Type) throws -> T? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:568:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Stack.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ TupleParser.swift,\ EmptyParser.swift,\ RegexBuilder+support.swift,\ MemoizationStorage.swift,\ Memoized.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/TupleParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/EmptyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegexBuilder+support.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Memoized.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/TupleParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/EmptyParser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegexBuilder+support.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationStorage.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Memoized.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Parser+ignoreOutput.swift, Parser+kind.swift, Parser+map+location.swift, Parser+map.swift, Parser+optimize.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ Token.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling PartialParserResult.swift, PartialResult.swift, AnyParser.swift, Associativity.swift, BinaryOperation.swift, BinaryOperationParser.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ AnnotatedError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Token.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ String+Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling AnnotatedError.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ neverBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/neverBody.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/neverBody.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Node.swift, Parser+internalParser.swift, Scanner.swift, ScannerState.swift, Stack.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ OrderedSet.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/OrderedSet.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/OrderedSet.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling TupleParser.swift, EmptyParser.swift, RegexBuilder+support.swift, MemoizationStorage.swift, Memoized.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ MemoizationKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationKey.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationKey.swift (in target 'Syntax' from project 'Syntax')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling neverBody.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ ScannerError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift (in target 'Syntax' from project 'Syntax')
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64 Compiling\ JavaScriptEscapeStrategy.swift,\ StringEscapeStrategy.swift,\ StringLiteral.swift,\ SwiftEscapeStrategy.swift,\ Maybe.swift,\ Parser+annotate.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Maybe.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+annotate.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift (in target 'Syntax' from project 'Syntax')
Building workspace spi-builder-workspace with scheme Syntax
(3 failures)
BUILD FAILURE 6.2 visionOS