From 474a89c9f7acdcba8302b2faecf758e00278ce2d Mon Sep 17 00:00:00 2001 From: Bruno Henrique da Rocha e Silva Date: Wed, 14 Jan 2026 11:14:07 +0100 Subject: [PATCH] Fix build_tests failing to parse SDK info --- Example/HelloWorld/BUILD | 8 +- .../BazelTargetQuerierParser.swift | 53 ++- ...azelTargetCompilerArgsExtractorTests.swift | 2 +- .../BazelTargetQuerierParserImplTests.swift | 20 +- .../BazelTargetQuerierTests.swift | 6 +- .../Resources/aquery.pb | 401 +++++++++--------- .../Resources/cquery.pb | Bin 137733 -> 136244 bytes 7 files changed, 265 insertions(+), 225 deletions(-) diff --git a/Example/HelloWorld/BUILD b/Example/HelloWorld/BUILD index c55543aa..171da3cc 100644 --- a/Example/HelloWorld/BUILD +++ b/Example/HelloWorld/BUILD @@ -1,5 +1,5 @@ load("@aspect_bazel_lib//lib:expand_template.bzl", "expand_template_rule") -load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application", "ios_unit_test") +load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application", "ios_unit_test", "ios_build_test") load("@build_bazel_rules_apple//apple:macos.bzl", "macos_application", "macos_command_line_application", "macos_unit_test") load("@build_bazel_rules_apple//apple:watchos.bzl", "watchos_application", "watchos_extension", "watchos_unit_test") load("@build_bazel_rules_swift//swift:swift.bzl", "swift_interop_hint", "swift_library") @@ -242,6 +242,12 @@ macos_command_line_application( deps = [":MacCLIAppLib"], ) +ios_build_test( + name = "HelloWorldLibBuildTest", + minimum_os_version = IOS_MINIMUM_OS_VERSION, + targets = [":HelloWorldLib"], +) + # Project setup setup_sourcekit_bsp( diff --git a/Sources/SourceKitBazelBSP/RequestHandlers/BuildTargets/BazelTargetQuerierParser.swift b/Sources/SourceKitBazelBSP/RequestHandlers/BuildTargets/BazelTargetQuerierParser.swift index 96c83d00..588b6530 100644 --- a/Sources/SourceKitBazelBSP/RequestHandlers/BuildTargets/BazelTargetQuerierParser.swift +++ b/Sources/SourceKitBazelBSP/RequestHandlers/BuildTargets/BazelTargetQuerierParser.swift @@ -51,8 +51,8 @@ enum BazelTargetQuerierParserError: Error, LocalizedError { "Multiple parent actions found for \(parent) in the aquery output. This means your project is building multiple variants of the same top-level target, which the BSP cannot handle today." case .configurationNotFound(let id): return "Configuration \(id) not found in the aquery output." - case .sdkNameNotFound(let label): - return "SDK info not found for \(label) in the aquery output." + case .sdkNameNotFound(let cpuAndArch): + return "SDK info could not be inferred for \(cpuAndArch)." case .indexOutOfBounds(let index, let line): return "Index \(index) is out of bounds for array at line \(line)" case .unexpectedLanguageRule(let target, let ruleClass): @@ -573,18 +573,16 @@ extension BazelTargetQuerierParserImpl { guard let fullConfig = aqueryConfigurations[configId]?.mnemonic else { throw BazelTargetQuerierParserError.configurationNotFound(configId) } - guard let sdkName = parentAction.environmentVariables.first(where: { $0.key == "APPLE_SDK_PLATFORM" })?.value - else { - throw BazelTargetQuerierParserError.sdkNameNotFound(effectiveParentLabel) - } let configComponents = fullConfig.components(separatedBy: "-") // min15.0 -> 15.0 let minTargetArg = String(try configComponents.getIndexThrowing(4).dropFirst(3)) // The first component contains the platform and arch info. // e.g darwin_arm64 -> (darwin, arm64) - let cpuComponents = try configComponents.getIndexThrowing(0).split(separator: "_", maxSplits: 1) - let platform = try cpuComponents.getIndexThrowing(0) - let cpuArch = try cpuComponents.getIndexThrowing(1) + let cpuAndArch = try configComponents.getIndexThrowing(0) + let sdkName = try inferSdkName(from: cpuAndArch) + let cpuComponents = cpuAndArch.split(separator: "_", maxSplits: 1) + let platform = String(try cpuComponents.getIndexThrowing(0)) + let cpuArch = String(try cpuComponents.getIndexThrowing(1)) // To support compiling libraries directly, we need to additionally strip out // the transition and distinguisher parts of the configuration name, as those will not @@ -600,11 +598,44 @@ extension BazelTargetQuerierParserImpl { configurationName: fullConfig, effectiveConfigurationName: effectiveConfigurationName, minimumOsVersion: minTargetArg, - platform: String(platform), - cpuArch: String(cpuArch), + platform: platform, + cpuArch: cpuArch, sdkName: sdkName.lowercased() ) } + + private func inferSdkName(from cpuAndArch: String) throws -> String { + // Source: https://github.com/bazelbuild/apple_support/blob/main/crosstool/cc_toolchain_config.bzl + // We can't rely on APPLE_SDK_PLATFORM in all cases because build_test rules won't have it at the top-level. + if cpuAndArch.hasPrefix("darwin") { + return "macosx" + } else if cpuAndArch.hasPrefix("ios") { + switch cpuAndArch { + case "ios_arm64", "ios_arm64e": return "iphoneos" + case "ios_sim_arm64", "ios_x86_64": return "iphonesimulator" + default: break + } + } else if cpuAndArch.hasPrefix("tvos") { + switch cpuAndArch { + case "tvos_arm64": return "appletvos" + case "tvos_sim_arm64", "tvos_x86_64": return "appletvsimulator" + default: break + } + } else if cpuAndArch.hasPrefix("watchos") { + switch cpuAndArch { + case "watchos_arm64_32", "watchos_armv7k", "watchos_device_arm64", "watchos_device_arm64e": return "watchos" + case "watchos_arm64", "watchos_x86_64": return "watchsimulator" + default: break + } + } else if cpuAndArch.hasPrefix("visionos") { + switch cpuAndArch { + case "visionos_arm64": return "xros" + case "visionos_sim_arm64": return "xrsimulator" + default: break + } + } + throw BazelTargetQuerierParserError.sdkNameNotFound(cpuAndArch) + } } // MARK: - Bazel label parsing helpers diff --git a/Tests/SourceKitBazelBSPTests/BazelTargetCompilerArgsExtractorTests.swift b/Tests/SourceKitBazelBSPTests/BazelTargetCompilerArgsExtractorTests.swift index f9ec0259..fddbe8b6 100644 --- a/Tests/SourceKitBazelBSPTests/BazelTargetCompilerArgsExtractorTests.swift +++ b/Tests/SourceKitBazelBSPTests/BazelTargetCompilerArgsExtractorTests.swift @@ -258,7 +258,7 @@ struct BazelTargetCompilerArgsExtractorTests { == expectedSwiftResult.map { $0.replacingOccurrences( of: "ios_sim_arm64-dbg-ios-sim_arm64-min17.0", - with: "ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f" + with: "ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300" ) } ) diff --git a/Tests/SourceKitBazelBSPTests/BazelTargetQuerierParserImplTests.swift b/Tests/SourceKitBazelBSPTests/BazelTargetQuerierParserImplTests.swift index 81c508bc..62f61241 100644 --- a/Tests/SourceKitBazelBSPTests/BazelTargetQuerierParserImplTests.swift +++ b/Tests/SourceKitBazelBSPTests/BazelTargetQuerierParserImplTests.swift @@ -154,14 +154,14 @@ struct BazelTargetQuerierParserImplTests { // Top level targets - verify label and rule type (config IDs are assigned during parsing) let expectedTopLevelTargets: [(String, TopLevelRuleType)] = [ - ("//HelloWorld:HelloWorldMacTests", .macosUnitTest), - ("//HelloWorld:HelloWorldTests", .iosUnitTest), - ("//HelloWorld:HelloWorld", .iosApplication), - ("//HelloWorld:HelloWorldWatchExtension", .watchosExtension), ("//HelloWorld:HelloWorldWatchTests", .watchosUnitTest), - ("//HelloWorld:HelloWorldMacCLIApp", .macosCommandLineApplication), + ("//HelloWorld:HelloWorld", .iosApplication), ("//HelloWorld:HelloWorldMacApp", .macosApplication), + ("//HelloWorld:HelloWorldTests", .iosUnitTest), + ("//HelloWorld:HelloWorldMacTests", .macosUnitTest), ("//HelloWorld:HelloWorldWatchApp", .watchosApplication), + ("//HelloWorld:HelloWorldWatchExtension", .watchosExtension), + ("//HelloWorld:HelloWorldMacCLIApp", .macosCommandLineApplication), ] #expect(result.topLevelTargets.count == expectedTopLevelTargets.count) for (index, expected) in expectedTopLevelTargets.enumerated() { @@ -320,7 +320,7 @@ struct BazelTargetQuerierParserImplTests { #expect( result.topLevelConfigIdToInfoMap[1] == BazelTargetConfigurationInfo( - configurationName: "ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f", + configurationName: "ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300", effectiveConfigurationName: "ios_sim_arm64-dbg-ios-sim_arm64-min17.0", minimumOsVersion: "17.0", platform: "ios", @@ -333,7 +333,7 @@ struct BazelTargetQuerierParserImplTests { #expect( result.topLevelConfigIdToInfoMap[2] == BazelTargetConfigurationInfo( - configurationName: "darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6", + configurationName: "darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6", effectiveConfigurationName: "darwin_arm64-dbg-macos-arm64-min15.0", minimumOsVersion: "15.0", platform: "darwin", @@ -346,11 +346,11 @@ struct BazelTargetQuerierParserImplTests { #expect( result.topLevelConfigIdToInfoMap[3] == BazelTargetConfigurationInfo( - configurationName: "watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d", - effectiveConfigurationName: "watchos_x86_64-dbg-watchos-x86_64-min7.0", + configurationName: "watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed", + effectiveConfigurationName: "watchos_arm64-dbg-watchos-arm64-min7.0", minimumOsVersion: "7.0", platform: "watchos", - cpuArch: "x86_64", + cpuArch: "arm64", sdkName: "watchsimulator" ) ) diff --git a/Tests/SourceKitBazelBSPTests/BazelTargetQuerierTests.swift b/Tests/SourceKitBazelBSPTests/BazelTargetQuerierTests.swift index fe17bc5d..910007ca 100644 --- a/Tests/SourceKitBazelBSPTests/BazelTargetQuerierTests.swift +++ b/Tests/SourceKitBazelBSPTests/BazelTargetQuerierTests.swift @@ -369,7 +369,7 @@ struct BazelTargetQuerierTests { } /// Example aquery output for the example app shipped with this repo. -/// bazelisk aquery "mnemonic('CppCompile|ObjcCompile|SwiftCompile|BundleTreeApp|SignBinary|TestRunner', deps(//HelloWorld:HelloWorldMacTests) union deps(//HelloWorld:HelloWorldTests) union deps(//HelloWorld:HelloWorld) union deps(//HelloWorld:HelloWorldWatchExtension) union deps(//HelloWorld:HelloWorldWatchTests) union deps(//HelloWorld:HelloWorldMacCLIApp) union deps(//HelloWorld:HelloWorldMacApp) union deps(//HelloWorld:HelloWorldWatchApp))" --noinclude_artifacts --noinclude_aspects --features=-compiler_param_file --output proto --config=index_build > aquery.pb +/// bazelisk aquery "mnemonic('CppCompile|ObjcCompile|SwiftCompile|BundleTreeApp|SignBinary|TestRunner', deps(//HelloWorld:HelloWorldMacTests) union deps(//HelloWorld:HelloWorldTests) union deps(//HelloWorld:HelloWorldLibBuildTest) union deps(//HelloWorld:HelloWorld) union deps(//HelloWorld:HelloWorldWatchExtension) union deps(//HelloWorld:HelloWorldWatchTests) union deps(//HelloWorld:HelloWorldMacCLIApp) union deps(//HelloWorld:HelloWorldMacApp) union deps(//HelloWorld:HelloWorldWatchApp))" --noinclude_artifacts --noinclude_aspects --features=-compiler_param_file --output proto --config=index_build > aquery.pb let exampleAqueryOutput: Data = { guard let url = Bundle.module.url(forResource: "aquery", withExtension: "pb"), let data = try? Data.init(contentsOf: url) @@ -377,8 +377,8 @@ let exampleAqueryOutput: Data = { return data }() -// Example cquery output for the example app shipped with this repo. -/// bazelisk cquery 'let topLevelTargets = kind("ios_application|ios_unit_test|macos_application|macos_command_line_application|macos_unit_test|watchos_application|watchos_extension|watchos_unit_test", deps(//HelloWorld:HelloWorld) union deps(//HelloWorld:HelloWorldMacApp) union deps(//HelloWorld:HelloWorldMacCLIApp) union deps(//HelloWorld:HelloWorldMacTests) union deps(//HelloWorld:HelloWorldTests) union deps(//HelloWorld:HelloWorldWatchApp) union deps(//HelloWorld:HelloWorldWatchExtension) union deps(//HelloWorld:HelloWorldWatchTests)) in $topLevelTargets union (kind("swift_library|objc_library|cc_library|alias|source file|_ios_internal_unit_test_bundle|_ios_internal_ui_test_bundle|_watchos_internal_unit_test_bundle|_watchos_internal_ui_test_bundle|_macos_internal_unit_test_bundle|_macos_internal_ui_test_bundle|_tvos_internal_unit_test_bundle|_tvos_internal_ui_test_bundle|_visionos_internal_unit_test_bundle|_visionos_internal_ui_test_bundle", deps($topLevelTargets)))' --noinclude_aspects --notool_deps --noimplicit_deps --output proto --config=index_build > cquery.pb +/// Example cquery output for the example app shipped with this repo. +/// bazelisk cquery 'let topLevelTargets = kind("ios_application|ios_unit_test|macos_application|macos_command_line_application|macos_unit_test|watchos_application|watchos_extension|watchos_unit_test", deps(//HelloWorld/...)) in $topLevelTargets union (kind("swift_library|objc_library|cc_library|alias|source file|_ios_internal_unit_test_bundle|_ios_internal_ui_test_bundle|_watchos_internal_unit_test_bundle|_watchos_internal_ui_test_bundle|_macos_internal_unit_test_bundle|_macos_internal_ui_test_bundle|_tvos_internal_unit_test_bundle|_tvos_internal_ui_test_bundle|_visionos_internal_unit_test_bundle|_visionos_internal_ui_test_bundle", deps($topLevelTargets)))' --noinclude_aspects --notool_deps --noimplicit_deps --output proto --config=index_build > cquery.pb let exampleCqueryOutput: Data = { guard let url = Bundle.module.url(forResource: "cquery", withExtension: "pb"), let data = try? Data.init(contentsOf: url) diff --git a/Tests/SourceKitBazelBSPTests/Resources/aquery.pb b/Tests/SourceKitBazelBSPTests/Resources/aquery.pb index 106bd5ff..0c496d15 100644 --- a/Tests/SourceKitBazelBSPTests/Resources/aquery.pb +++ b/Tests/SourceKitBazelBSPTests/Resources/aquery.pb @@ -1,62 +1,70 @@ -:macos_unit_test%//HelloWorld:HelloWorldMacTests: swift_library!//HelloWorld:MacAppTestsLib: objc_libraryB<@@apple_support+//lib:swizzle_absolute_xcttestsourcelocation//HelloWorld:MacAppLib*ddarwin_arm64-dbg darwin_arm64"@3bda34cdd2e668bcac0f48098d2d4264cb50cafe15f6f65e29bcc449a9c3956a:  cc_binary60@@bazel_tools//src/tools/launcher:launcher_maker@7b0fa2f5f5281dece03101911f9e8c1767cc826c6fc7702a48c93b264fe4a482" +:macos_unit_test%//HelloWorld:HelloWorldMacTests:$ _macos_internal_unit_test_bundle@://HelloWorld:HelloWorldMacTests.__internal__.__test_bundle*ddarwin_arm64-dbg darwin_arm64"@b474a13c6dc98009df3fdfcdcd537914d691fa32be132f48d367bcc15271630a@7b0fa2f5f5281dece03101911f9e8c1767cc826c6fc7702a48c93b264fe4a482" TestRunner(2-external/bazel_tools/tools/test/test-setup.sh2HelloWorld/HelloWorldMacTestsZ -requires-darwinr@@platforms//host:host//HelloWorld:TodoModels:$ _macos_internal_unit_test_bundle@://HelloWorld:HelloWorldMacTests.__internal__.__test_bundle*{%darwin_arm64-opt-exec-ST-d57f47055a04 darwin_arm64"@f98c39b5486117ecf822cda781b5b3416382005b164a5e1823f0b2d1187536ec( @223c0ee7c56659ba24a7fd11b26f535736284219ce14cbdfa0b1b8106fda2fc6" -CppCompile(2fbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang_pp2-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g02-O22-DNDEBUG2-DNS_BLOCK_ASSERTIONS=12--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-iquote2external/bazel_tools2-iquote2Hbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/bazel_tools2-MD2-MF2bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.d2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2V-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/MacOSX.platform/Developer/Library/Frameworks2-no-canonical-prefixes2-target2arm64-apple-macosx26.12 --std=c++172-g02-g02-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c29external/bazel_tools/src/tools/launcher/launcher_maker.cc2-o2bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.o:' +requires-darwinr@@platforms//host:host*4darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6 darwin_arm64"@e82cc70c288f80852360009cb9e73108d19085934aa23d230eaa28369b761419@e5a18b0250f4a457e3a3ff2c5319847d32c75100c3585954b62a80f9db9a48c1" BundleTreeApp(2rbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_apple+/tools/bundletool/bundletool_experimental2bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/HelloWorldMacTests.__internal__.__test_bundle-intermediates/bundletool_control.json:' +XCODE_VERSION_OVERRIDE 26.1.1.17B100: +APPLE_SDK_PLATFORMMacOSX:" +APPLE_SDK_VERSION_OVERRIDE26.1Z + +no-sandbox1Z +requires-darwinZ! +supports-xcode-requirements-setr@@platforms//host:host: swift_library!//HelloWorld:MacAppTestsLib: objc_libraryB<@@apple_support+//lib:swizzle_absolute_xcttestsourcelocation//HelloWorld:MacAppLib//HelloWorld:TodoModels:  cc_binary60@@bazel_tools//src/tools/launcher:launcher_maker@d192ff49785fd9c228648fca03ba4dc099d0fa6f9d6e254a7c456afa578647c3" ObjcCompile(2cbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang2-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g2--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-Werror=incompatible-sysroot2-Wshorten-64-to-322-Wbool-conversion2-Wconstant-conversion2-Wduplicate-method-match2 -Wempty-body2-Wenum-conversion2-Wint-conversion2-Wunreachable-code2-Wmismatched-return-types2-Wundeclared-selector2-Wuninitialized2-Wunused-function2-Wunused-variable2-iquote2external/apple_support+2-iquote2Zbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/external/apple_support+2-MD2-MF2bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/external/apple_support+/lib/_objs/swizzle_absolute_xcttestsourcelocation/arc/swizzle_absolute_xcttestsourcelocation.d2 -DOS_MACOSX2 -fno-autolink2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2V-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/MacOSX.platform/Developer/Library/Frameworks2 +-fobjc-arc2-no-canonical-prefixes2-target2arm64-apple-macosx15.02-O02 -DDEBUG=12-fstack-protector2-fstack-protector-all2-g2-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c2Dexternal/apple_support+/lib/swizzle_absolute_xcttestsourcelocation.m2-o2bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/external/apple_support+/lib/_objs/swizzle_absolute_xcttestsourcelocation/arc/swizzle_absolute_xcttestsourcelocation.o:' XCODE_VERSION_OVERRIDE 26.1.1.17B100:" APPLE_SDK_VERSION_OVERRIDE26.1: APPLE_SDK_PLATFORMMacOSX: ZERO_AR_DATE1PZ requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host*Cdarwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6 darwin_arm64"@a27b247c0575b64caf58a60a63795eaa9ac4a34b1f2a7aab23818826398a21d3@a0006fa28d05d3e54359327cb2a4a6efdeab9b8946b5b89cea3b8063baff2f71" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2arm64-apple-macos15.02-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2A-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:MacAppTestsLib2 -emit-object2-output-file-map2bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacAppTestsLib.output_file_map.json2 --Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2wbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacAppTestsLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2|bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacAppTestsLib.swiftconstvalues2 +supports-xcode-requirements-setr@@platforms//host:host)#@@rules_swift+//tools/worker:worker: +cc_library9 3@@rules_swift+//tools/worker:compile_without_worker@4f2868091160fd2e2df8e4df1fef71a4e3cd10a503d12e3959a6b006e0553339" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2arm64-apple-macos15.02-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2=-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:TodoModels2 -emit-object2-output-file-map2mbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/TodoModels.output_file_map.json2 +-Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2dbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/TodoModels.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2ibazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/TodoModels.swiftconstvalues2 -Xfrontend2-const-gather-protocols-file2 -Xfrontend2Lexternal/rules_swift+/swift/toolchains/config/const_protocols_to_gather.json2-DDEBUG2-Onone2-whole-module-optimization2 -Xfrontend2-internalize-at-link2 --Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2V-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/MacOSX.platform/Developer/Library/Frameworks2K-I__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/MacOSX.platform/Developer/usr/lib2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2ebazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/_swift_module_cache2^-Ibazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacAppTestsLib.macro-expansions2 -plugin-path2d__BAZEL_XCODE_DEVELOPER_DIR__/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing2-Xcc2-iquote.2-Xcc2X-iquotebazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin2 --Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2MacAppTestsLib2-index-store-path2vbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacAppTestsLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 +-Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2Vbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/_swift_module_cache2-Xwrapped-swift=-macro-expansion-dir=bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/TodoModels.macro-expansions2-Xcc2-iquote.2-Xcc2I-iquotebazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin2 +-Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2 +TodoModels2-index-store-path2cbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/TodoModels.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 -Xfrontend2-disable-clang-spi2-enable-experimental-feature2AccessLevelOnImport2-parse-as-library2-static2-Xcc2-O02-Xcc2 -DDEBUG=12-Xcc2-fstack-protector2-Xcc2-fstack-protector-all2-whole-module-optimization2 --Xfrontend2-checked-async-objc-bridging=on24HelloWorld/MacApp/MacAppTests/TodoItemMacTests.swift:' +-Xfrontend2-checked-async-objc-bridging=on2,HelloWorld/TodoModels/Sources/TodoItem.swift23HelloWorld/TodoModels/Sources/TodoListManager.swift:' XCODE_VERSION_OVERRIDE 26.1.1.17B100: APPLE_SDK_PLATFORMMacOSX:" APPLE_SDK_VERSION_OVERRIDE26.1Z requires-darwinZ requires-worker-protocoljsonZ supports-workers1Z! -supports-xcode-requirements-setr@@platforms//host:host: -cc_library93@@rules_swift+//tools/worker:compile_without_worker) #@@rules_swift+//tools/worker:worker@a6e27bb930217c1e69b38e4b8b1e53a648104b29a0c9f49e1cd5104805896336" BundleTreeApp(2rbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_apple+/tools/bundletool/bundletool_experimental2bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/HelloWorldMacTests.__internal__.__test_bundle-intermediates/bundletool_control.json:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100: -APPLE_SDK_PLATFORMMacOSX:" -APPLE_SDK_VERSION_OVERRIDE26.1Z - -no-sandbox1Z -requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host@38e8c492a631ecdcb5c24e04119d68386981044455cf384a40ce55391c99f043" -CppCompile(2fbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang_pp2-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g02-O22-DNDEBUG2-DNS_BLOCK_ASSERTIONS=12--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-iquote2external/rules_swift+2-iquote2Ibazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+2-iquote2external/nlohmann_json+2-iquote2Kbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/nlohmann_json+2-isystem2external/nlohmann_json+/include2-isystem2Sbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/nlohmann_json+/include2-MD2-MF2bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/_objs/compile_without_worker/compile_without_worker.d2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2V-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/MacOSX.platform/Developer/Library/Frameworks2-no-canonical-prefixes2-target2arm64-apple-macosx26.12 --std=c++172-g02-g02 --std=c++172-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c2-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:WatchAppLib2 -emit-object2-output-file-map2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppLib.output_file_map.json2 --Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2zbazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppLib.swiftconstvalues2 +supports-xcode-requirements-setr@@platforms//host:host#//HelloWorld:WatchAppTestsLib@499d98084f260247f65b4a16753691a026da58832bee87ab3e022eb6437b5712" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2 arm64-apple-watchos7.0-simulator2-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2C-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:WatchAppTestsLib2 -emit-object2-output-file-map2ubazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppTestsLib.output_file_map.json2 +-Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2lbazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppTestsLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2qbazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppTestsLib.swiftconstvalues2 -Xfrontend2-const-gather-protocols-file2 -Xfrontend2Lexternal/rules_swift+/swift/toolchains/config/const_protocols_to_gather.json2-DDEBUG2-Onone2-whole-module-optimization2 -Xfrontend2-internalize-at-link2 --Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2kbazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/_swift_module_cache2d-Ibazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppLib.macro-expansions2-Xcc2-iquote.2-Xcc2^-iquotebazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin2 --Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2 WatchAppLib2-index-store-path2ybazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 +-Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2^-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/WatchSimulator.platform/Developer/Library/Frameworks26-F__BAZEL_XCODE_SDKROOT__/Developer/Library/Frameworks2S-I__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/WatchSimulator.platform/Developer/usr/lib2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2Xbazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/_swift_module_cache2Q-Ibazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppTestsLib.macro-expansions2 -plugin-path2A__BAZEL_SWIFT_TOOLCHAIN_PATH__/usr/lib/swift/host/plugins/testing2-Xcc2-iquote.2-Xcc2K-iquotebazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin2 +-Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2WatchAppTestsLib2-index-store-path2kbazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppTestsLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 -Xfrontend2-disable-clang-spi2-enable-experimental-feature2AccessLevelOnImport2-parse-as-library2-static2-Xcc2-O02-Xcc2 -DDEBUG=12-Xcc2-fstack-protector2-Xcc2-fstack-protector-all2-whole-module-optimization2 --Xfrontend2-checked-async-objc-bridging=on26HelloWorld/WatchApp/WatchAppLib/Sources/WatchApp.swift:' +-Xfrontend2-checked-async-objc-bridging=on2:HelloWorld/WatchApp/WatchAppTests/TodoItemWatchTests.swift:' XCODE_VERSION_OVERRIDE 26.1.1.17B100:$ APPLE_SDK_PLATFORMWatchSimulator:" APPLE_SDK_VERSION_OVERRIDE26.1Z requires-darwinZ requires-worker-protocoljsonZ supports-workers1Z! -supports-xcode-requirements-setr@@platforms//host:host@4adcbd0f8fb9ed568358f8a00a911e4abf478872a1a04316ab13297009b115e2" BundleTreeApp(2rbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_apple+/tools/bundletool/bundletool_experimental2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/HelloWorldWatchTests.__internal__.__test_bundle-intermediates/bundletool_control.json:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100:$ -APPLE_SDK_PLATFORMWatchSimulator:" -APPLE_SDK_VERSION_OVERRIDE26.1Z - -no-sandbox1Z -requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host#//HelloWorld:WatchAppTestsLib @10e15c0971f1100ac0824b7ecfbd24596391fa93936c9dbe20f7ac00dbda395d" -CppCompile(2cbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang2-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g2--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-iquote2.2-iquote2Rbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin2-MD2-MF2{bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/_objs/TodoCSupport/SKCUtils.d2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2_-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks2-no-canonical-prefixes2-target2arm64-apple-ios17.0-simulator2-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c2&HelloWorld/TodoCSupport/src/SKCUtils.c2-o2{bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/_objs/TodoCSupport/SKCUtils.o:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100:" -APPLE_SDK_VERSION_OVERRIDE26.1:% -APPLE_SDK_PLATFORMiPhoneSimulator: - ZERO_AR_DATE1PZ -requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host@a385217fef5f5a72407d6e5d03f0e2d072943dd22256e8530fdd6b4186846787" ObjcCompile(2cbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang2-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g2--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-Werror=incompatible-sysroot2-Wshorten-64-to-322-Wbool-conversion2-Wconstant-conversion2-Wduplicate-method-match2 -Wempty-body2-Wenum-conversion2-Wint-conversion2-Wunreachable-code2-Wmismatched-return-types2-Wundeclared-selector2-Wuninitialized2-Wunused-function2-Wunused-variable2-iquote2external/apple_support+2-iquote2obazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/external/apple_support+2-MD2-MF2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/external/apple_support+/lib/_objs/swizzle_absolute_xcttestsourcelocation/arc/swizzle_absolute_xcttestsourcelocation.d2-DOS_IOS2 -fno-autolink2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2^-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/WatchSimulator.platform/Developer/Library/Frameworks2 --fobjc-arc2-no-canonical-prefixes2-target2!x86_64-apple-watchos7.0-simulator2 -fexceptions2 -fasm-blocks2-fobjc-abi-version=22-fobjc-legacy-dispatch2-O02 -DDEBUG=12-fstack-protector2-fstack-protector-all2-g2-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c2Dexternal/apple_support+/lib/swizzle_absolute_xcttestsourcelocation.m2-o2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/external/apple_support+/lib/_objs/swizzle_absolute_xcttestsourcelocation/arc/swizzle_absolute_xcttestsourcelocation.o:' +supports-xcode-requirements-setr@@platforms//host:host@e03fa95547e88787449c4be1deec39c509fda7e417f4cb80bebddf5e53507900" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2arm64-apple-ios17.0-simulator2-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2A-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:GeneratedDummy2 -emit-object2-output-file-map2tbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/GeneratedDummy.output_file_map.json2 +-Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2kbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/GeneratedDummy.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2pbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/GeneratedDummy.swiftconstvalues2 +-Xfrontend2-const-gather-protocols-file2 +-Xfrontend2Lexternal/rules_swift+/swift/toolchains/config/const_protocols_to_gather.json2-DDEBUG2-Onone2-whole-module-optimization2 +-Xfrontend2-internalize-at-link2 +-Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2Ybazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/_swift_module_cache2-Xwrapped-swift=-macro-expansion-dir=bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/GeneratedDummy.macro-expansions2-Xcc2-iquote.2-Xcc2L-iquotebazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin2 +-Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2GeneratedDummy2-index-store-path2jbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/GeneratedDummy.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 +-Xfrontend2-disable-clang-spi2-enable-experimental-feature2AccessLevelOnImport2-parse-as-library2-static2-Xcc2-O02-Xcc2 -DDEBUG=12-Xcc2-fstack-protector2-Xcc2-fstack-protector-all2-whole-module-optimization2 +-Xfrontend2-checked-async-objc-bridging=on2ebazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/GeneratedDummy.swift:' +XCODE_VERSION_OVERRIDE 26.1.1.17B100:% +APPLE_SDK_PLATFORMiPhoneSimulator:" +APPLE_SDK_VERSION_OVERRIDE26.1Z +requires-darwinZ +requires-worker-protocoljsonZ +supports-workers1Z! +supports-xcode-requirements-setr@@platforms//host:host@b60abe09119a8a8b56686a30c78ab608a34c84477b8239c7de4d83f3bd30c40e" ObjcCompile(2cbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang2-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g2--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-Werror=incompatible-sysroot2-Wshorten-64-to-322-Wbool-conversion2-Wconstant-conversion2-Wduplicate-method-match2 -Wempty-body2-Wenum-conversion2-Wint-conversion2-Wunreachable-code2-Wmismatched-return-types2-Wundeclared-selector2-Wuninitialized2-Wunused-function2-Wunused-variable2-iquote2external/apple_support+2-iquote2\bazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/external/apple_support+2-MD2-MF2bazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/external/apple_support+/lib/_objs/swizzle_absolute_xcttestsourcelocation/arc/swizzle_absolute_xcttestsourcelocation.d2-DOS_IOS2 -fno-autolink2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2^-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/WatchSimulator.platform/Developer/Library/Frameworks2 +-fobjc-arc2-no-canonical-prefixes2-target2 arm64-apple-watchos7.0-simulator2 -fexceptions2 -fasm-blocks2-fobjc-abi-version=22-fobjc-legacy-dispatch2-O02 -DDEBUG=12-fstack-protector2-fstack-protector-all2-g2-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c2Dexternal/apple_support+/lib/swizzle_absolute_xcttestsourcelocation.m2-o2bazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/external/apple_support+/lib/_objs/swizzle_absolute_xcttestsourcelocation/arc/swizzle_absolute_xcttestsourcelocation.o:' XCODE_VERSION_OVERRIDE 26.1.1.17B100:" APPLE_SDK_VERSION_OVERRIDE26.1:$ APPLE_SDK_PLATFORMWatchSimulator: ZERO_AR_DATE1PZ requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host:" macos_command_line_application& //HelloWorld:HelloWorldMacCLIApp  @1d4243ff0cc3d92b8f8534b689e79ea4f30ca542b6b148c3a6e0478c04ce24d5" -CppCompile(2fbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang_pp2-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g2--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-iquote2.2-iquote2Rbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin2-MD2-MF2}bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/_objs/TodoCSupport/SKCppUtils.d2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2_-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks2-no-canonical-prefixes2-target2arm64-apple-ios17.0-simulator2 --std=c++172-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c2*HelloWorld/TodoCSupport/src/SKCppUtils.cpp2-o2}bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/_objs/TodoCSupport/SKCppUtils.o:' +supports-xcode-requirements-setr@@platforms//host:host@7813605a25065d625a0c77a5b9fb53401712ae4b001415b15e3db84ffa54b156" ObjcCompile(2cbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang2-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g2--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-Werror=incompatible-sysroot2-Wshorten-64-to-322-Wbool-conversion2-Wconstant-conversion2-Wduplicate-method-match2 -Wempty-body2-Wenum-conversion2-Wint-conversion2-Wunreachable-code2-Wmismatched-return-types2-Wundeclared-selector2-Wuninitialized2-Wunused-function2-Wunused-variable2-iquote2external/apple_support+2-iquote2]bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/external/apple_support+2-MD2-MF2bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/external/apple_support+/lib/_objs/swizzle_absolute_xcttestsourcelocation/arc/swizzle_absolute_xcttestsourcelocation.d2-DOS_IOS2 -fno-autolink2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2_-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks2 +-fobjc-arc2-no-canonical-prefixes2-target2arm64-apple-ios17.0-simulator2 -fexceptions2 -fasm-blocks2-fobjc-abi-version=22-fobjc-legacy-dispatch2-O02 -DDEBUG=12-fstack-protector2-fstack-protector-all2-g2-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c2Dexternal/apple_support+/lib/swizzle_absolute_xcttestsourcelocation.m2-o2bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/external/apple_support+/lib/_objs/swizzle_absolute_xcttestsourcelocation/arc/swizzle_absolute_xcttestsourcelocation.o:' XCODE_VERSION_OVERRIDE 26.1.1.17B100:" APPLE_SDK_VERSION_OVERRIDE26.1:% APPLE_SDK_PLATFORMiPhoneSimulator: ZERO_AR_DATE1PZ requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host//HelloWorld:MacCLIAppLib@0e25683bb517f92db9284c4908898cb600b25b2e9eb1307e21a95541d8c469d0" -SignBinary(2 /bin/bash2-c2cp bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/HelloWorldMacCLIApp_lipobin bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/HelloWorldMacCLIApp -bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_apple+/tools/codesigningtool/codesigningtool --codesign /usr/bin/codesign --identity '-' --force --target_to_sign "bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/HelloWorldMacCLIApp" --:' +supports-xcode-requirements-setr@@platforms//host:host //HelloWorld:MacCLIAppLib:"macos_command_line_application&! //HelloWorld:HelloWorldMacCLIApp:macos_application#"//HelloWorld:HelloWorldMacApp"@539ea060a1d2ac4b7fc5c78a3d68d2ec1a96947edaf833fa72cadd85417f6f01" BundleTreeApp(2rbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_apple+/tools/bundletool/bundletool_experimental2bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/HelloWorldMacApp-intermediates/bundletool_control.json:' +XCODE_VERSION_OVERRIDE 26.1.1.17B100: +APPLE_SDK_PLATFORMMacOSX:" +APPLE_SDK_VERSION_OVERRIDE26.1Z + +no-sandbox1Z +requires-darwinZ! +supports-xcode-requirements-setr@@platforms//host:host!@d77e0006ce6c2b628504a418a7eb37a6b1f2d94f7b2bcd86b83c7e62e1d45e14" +SignBinary(2 /bin/bash2-c2cp bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/HelloWorldMacCLIApp_lipobin bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/HelloWorldMacCLIApp +bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_apple+/tools/codesigningtool/codesigningtool --codesign /usr/bin/codesign --identity '-' --force --target_to_sign "bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/HelloWorldMacCLIApp" --:' XCODE_VERSION_OVERRIDE 26.1.1.17B100: APPLE_SDK_PLATFORMMacOSX:" APPLE_SDK_VERSION_OVERRIDE26.1Z no-sandbox1Z requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host:macos_application# //HelloWorld:HelloWorldMacApp@a495ddf479f410ca6626c2572b1d64906bd427b2593bf30b5bf553ecc290c001" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2!x86_64-apple-watchos7.0-simulator2-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2C-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:WatchAppTestsLib2 -emit-object2-output-file-map2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppTestsLib.output_file_map.json2 --Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppTestsLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppTestsLib.swiftconstvalues2 +supports-xcode-requirements-setr@@platforms//host:host@3bb8d320a4d6ee65cbdb238242af32d9edd194218022da0054b54533caeb45f1" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2arm64-apple-ios17.0-simulator2-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2E-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:HelloWorldTestsLib2 -emit-object2-output-file-map2xbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldTestsLib.output_file_map.json2 +-Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2obazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldTestsLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2tbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldTestsLib.swiftconstvalues2 -Xfrontend2-const-gather-protocols-file2 -Xfrontend2Lexternal/rules_swift+/swift/toolchains/config/const_protocols_to_gather.json2-DDEBUG2-Onone2-whole-module-optimization2 -Xfrontend2-internalize-at-link2 --Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2^-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/WatchSimulator.platform/Developer/Library/Frameworks26-F__BAZEL_XCODE_SDKROOT__/Developer/Library/Frameworks2S-I__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/WatchSimulator.platform/Developer/usr/lib2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2kbazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/_swift_module_cache2d-Ibazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppTestsLib.macro-expansions2 -plugin-path2d__BAZEL_XCODE_DEVELOPER_DIR__/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing2-Xcc2-iquote.2-Xcc2^-iquotebazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin2 --Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2WatchAppTestsLib2-index-store-path2~bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/WatchAppTestsLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 +-Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2_-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks26-F__BAZEL_XCODE_SDKROOT__/Developer/Library/Frameworks2T-I__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/iPhoneSimulator.platform/Developer/usr/lib2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2Ybazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/_swift_module_cache2R-Ibazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldTestsLib.macro-expansions2 -plugin-path2A__BAZEL_SWIFT_TOOLCHAIN_PATH__/usr/lib/swift/host/plugins/testing2-Xcc2-iquote.2-Xcc2L-iquotebazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin2-Xcc2E-fmodule-map-file=HelloWorld/TodoObjCSupport/Sources/module.modulemap2 +-Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2HelloWorldTestsLib2-index-store-path2nbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldTestsLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 -Xfrontend2-disable-clang-spi2-enable-experimental-feature2AccessLevelOnImport2-parse-as-library2-static2-Xcc2-O02-Xcc2 -DDEBUG=12-Xcc2-fstack-protector2-Xcc2-fstack-protector-all2-whole-module-optimization2 --Xfrontend2-checked-async-objc-bridging=on2:HelloWorld/WatchApp/WatchAppTests/TodoItemWatchTests.swift:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100:$ -APPLE_SDK_PLATFORMWatchSimulator:" +-Xfrontend2-checked-async-objc-bridging=on2.HelloWorld/HelloWorldTests/TodoItemTests.swift25HelloWorld/HelloWorldTests/TodoListManagerTests.swift22HelloWorld/HelloWorldTests/TodoListViewTests.swift:' +XCODE_VERSION_OVERRIDE 26.1.1.17B100:% +APPLE_SDK_PLATFORMiPhoneSimulator:" APPLE_SDK_VERSION_OVERRIDE26.1Z requires-darwinZ requires-worker-protocoljsonZ supports-workers1Z! -supports-xcode-requirements-setr@@platforms//host:host @33f11cb089704304e90a3be8bb788a9ecc44fad576bda4ab497b3d7ac9811def" BundleTreeApp(2rbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_apple+/tools/bundletool/bundletool_experimental2bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/HelloWorldMacApp-intermediates/bundletool_control.json:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100: -APPLE_SDK_PLATFORMMacOSX:" -APPLE_SDK_VERSION_OVERRIDE26.1Z - -no-sandbox1Z -requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host: -watchos_application%//HelloWorld:HelloWorldWatchApp -@e69c2525e4cc01a8a6a40d86879eebdf809d36b90f99d3d9d2ce21ef5375cb97" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2arm64-apple-macos15.02-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2?-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:MacCLIAppLib2 -emit-object2-output-file-map2~bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacCLIAppLib.output_file_map.json2 --Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2ubazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacCLIAppLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2zbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacCLIAppLib.swiftconstvalues2 +supports-xcode-requirements-setr@@platforms//host:host @f649e4c19083e9b6c31e0813f8f3926ed6e88a1b007cdedb9bbc719a651cbcd8" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2arm64-apple-macos15.02-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2?-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:MacCLIAppLib2 -emit-object2-output-file-map2obazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/MacCLIAppLib.output_file_map.json2 +-Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2fbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/MacCLIAppLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2kbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/MacCLIAppLib.swiftconstvalues2 -Xfrontend2-const-gather-protocols-file2 -Xfrontend2Lexternal/rules_swift+/swift/toolchains/config/const_protocols_to_gather.json2-DDEBUG2-Onone2-whole-module-optimization2 -Xfrontend2-internalize-at-link2 --Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2ebazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/_swift_module_cache2^-Ibazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacCLIAppLib.macro-expansions2-Xcc2-iquote.2-Xcc2X-iquotebazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin2 --Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2 MacCLIAppLib2-index-store-path2tbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-applebin_macos-ST-d1334902beb6/bin/HelloWorld/MacCLIAppLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 +-Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2Vbazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/_swift_module_cache2O-Ibazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/MacCLIAppLib.macro-expansions2-Xcc2-iquote.2-Xcc2I-iquotebazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin2 +-Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2 MacCLIAppLib2-index-store-path2ebazel-out/darwin_arm64-dbg-macos-arm64-min15.0-ST-3b9f41d61db6/bin/HelloWorld/MacCLIAppLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 -Xfrontend2-disable-clang-spi2-enable-experimental-feature2AccessLevelOnImport2-static2-Xcc2-O02-Xcc2 -DDEBUG=12-Xcc2-fstack-protector2-Xcc2-fstack-protector-all2-whole-module-optimization2 -Xfrontend2-checked-async-objc-bridging=on24HelloWorld/MacCLIApp/MacCLIAppLib/Sources/main.swift:' XCODE_VERSION_OVERRIDE 26.1.1.17B100: @@ -327,52 +358,40 @@ no-sandbox1Z requires-darwinZ requires-worker-protocoljsonZ supports-workers1Z! -supports-xcode-requirements-setr@@platforms//host:host:watchos_unit_test'!!//HelloWorld:HelloWorldWatchTests@f9193e943aa3b1d0af01ba32c711a6f9f3dbf541d7c3edefb83ba0e278644247" BundleTreeApp(2rbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_apple+/tools/bundletool/bundletool_experimental2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/HelloWorldWatchApp-intermediates/bundletool_control.json:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100:$ -APPLE_SDK_PLATFORMWatchSimulator:" -APPLE_SDK_VERSION_OVERRIDE26.1Z - -no-sandbox1Z -requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host!@6eb9735fa5852ea2ddd2cf3d90ac320e9cbd8ce1edae47ecb5422898ffcc97f2" +supports-xcode-requirements-setr@@platforms//host:host: ios_build_test)#//HelloWorld:HelloWorldLibBuildTest  //HelloWorld:HelloWorldLib*7ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300 ios_sim_arm64"@16ad29bddb005fb14822ca965af011017fb43d865dba0b5ff61bca2444eb60aa@53c19d214034bafd7de9b10460f051be8c6f4f223c3f55b48b53147fc7152b09" +TestRunner(2-external/bazel_tools/tools/test/test-setup.sh2!HelloWorld/HelloWorldLibBuildTestr@@platforms//host:host: +ios_application//HelloWorld:HelloWorld +@6eb9735fa5852ea2ddd2cf3d90ac320e9cbd8ce1edae47ecb5422898ffcc97f2" TestRunner(2-external/bazel_tools/tools/test/test-setup.sh2HelloWorld/HelloWorldWatchTestsZ -requires-darwinr@@platforms//host:host"//HelloWorld:TodoObjCSupport@5be3358a1f3d3a6e0cea993a1d92684ae35bd47a2ff629b85aeb05ca77a4c3a7" ObjcCompile(2cbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang2-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g2--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-Werror=incompatible-sysroot2-Wshorten-64-to-322-Wbool-conversion2-Wconstant-conversion2-Wduplicate-method-match2 -Wempty-body2-Wenum-conversion2-Wint-conversion2-Wunreachable-code2-Wmismatched-return-types2-Wundeclared-selector2-Wuninitialized2-Wunused-function2-Wunused-variable2-iquote2.2-iquote2Rbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin2-MD2-MF2bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/_objs/TodoObjCSupport/arc/SKObjCUtils.d2-DOS_IOS2 -fno-autolink2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2_-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks2 --fobjc-arc2-no-canonical-prefixes2-target2arm64-apple-ios17.0-simulator2 -fexceptions2 -fasm-blocks2-fobjc-abi-version=22-fobjc-legacy-dispatch2-O02 -DDEBUG=12-fstack-protector2-fstack-protector-all2-g2-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c20HelloWorld/TodoObjCSupport/Sources/SKObjCUtils.m2-o2bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/_objs/TodoObjCSupport/arc/SKObjCUtils.o:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100:" -APPLE_SDK_VERSION_OVERRIDE26.1:% -APPLE_SDK_PLATFORMiPhoneSimulator: - ZERO_AR_DATE1PZ -requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host@1271858127149241baae5c2c1f2bf0b2cdb2a742f2dba6fa88f0b6204a63d22d" ObjcCompile(2fbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/apple_support+/crosstool/wrapped_clang_pp2-stdlib=libc++2 -std=gnu++172-D_FORTIFY_SOURCE=12-fstack-protector2-fcolor-diagnostics2-Wall2-Wthread-safety2 -Wself-assign2-fno-omit-frame-pointer2-g2--fdebug-prefix-map=__BAZEL_EXECUTION_ROOT__=.2K-fdebug-prefix-map=__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2-Werror=incompatible-sysroot2-Wshorten-64-to-322-Wbool-conversion2-Wconstant-conversion2-Wduplicate-method-match2 -Wempty-body2-Wenum-conversion2-Wint-conversion2-Wunreachable-code2-Wmismatched-return-types2-Wundeclared-selector2-Wuninitialized2-Wunused-function2-Wunused-variable2-iquote2.2-iquote2Rbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin2-MD2-MF2bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/_objs/TodoObjCSupport/arc/SKObjCppUtils.d2-DOS_IOS2 -fno-autolink2 -isysroot2__BAZEL_XCODE_SDKROOT__23-F__BAZEL_XCODE_SDKROOT__/System/Library/Frameworks2_-F__BAZEL_XCODE_DEVELOPER_DIR__/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks2 --fobjc-arc2-no-canonical-prefixes2-target2arm64-apple-ios17.0-simulator2 -fexceptions2 -fasm-blocks2-fobjc-abi-version=22-fobjc-legacy-dispatch2-O02 -DDEBUG=12-fstack-protector2-fstack-protector-all2-g2-Wno-builtin-macro-redefined2-D__DATE__="redacted"2-D__TIMESTAMP__="redacted"2-D__TIME__="redacted"2-c23HelloWorld/TodoObjCSupport/Sources/SKObjCppUtils.mm2-o2bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/_objs/TodoObjCSupport/arc/SKObjCppUtils.o:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100:" -APPLE_SDK_VERSION_OVERRIDE26.1:% -APPLE_SDK_PLATFORMiPhoneSimulator: - ZERO_AR_DATE1PZ -requires-darwinZ! -supports-xcode-requirements-setr@@platforms//host:host@b25dcadfca34362fd88c01ca27dcc5fa2e539f279c4efc6c5acb69beec62d400" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2arm64-apple-ios17.0-simulator2-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2=-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:TodoModels2 -emit-object2-output-file-map2}bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/TodoModels.output_file_map.json2 --Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2tbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/TodoModels.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2ybazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/TodoModels.swiftconstvalues2 +requires-darwinr@@platforms//host:host@54db4cc9c3e7122aa0fb5016214b0d765fb8f93075d4f64a530f2a4ebe43455e" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2 arm64-apple-watchos7.0-simulator2-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2>-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:WatchAppLib2 -emit-object2-output-file-map2pbazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppLib.output_file_map.json2 +-Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2gbazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2lbazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppLib.swiftconstvalues2 -Xfrontend2-const-gather-protocols-file2 -Xfrontend2Lexternal/rules_swift+/swift/toolchains/config/const_protocols_to_gather.json2-DDEBUG2-Onone2-whole-module-optimization2 -Xfrontend2-internalize-at-link2 --Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2fbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/_swift_module_cache2-Xwrapped-swift=-macro-expansion-dir=bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/TodoModels.macro-expansions2-Xcc2-iquote.2-Xcc2Y-iquotebazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin2 --Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2 -TodoModels2-index-store-path2sbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/TodoModels.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 +-Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2Xbazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/_swift_module_cache2Q-Ibazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppLib.macro-expansions2-Xcc2-iquote.2-Xcc2K-iquotebazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin2 +-Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2 WatchAppLib2-index-store-path2fbazel-out/watchos_arm64-dbg-watchos-arm64-min7.0-ST-f4f2bb7e56ed/bin/HelloWorld/WatchAppLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 -Xfrontend2-disable-clang-spi2-enable-experimental-feature2AccessLevelOnImport2-parse-as-library2-static2-Xcc2-O02-Xcc2 -DDEBUG=12-Xcc2-fstack-protector2-Xcc2-fstack-protector-all2-whole-module-optimization2 --Xfrontend2-checked-async-objc-bridging=on2,HelloWorld/TodoModels/Sources/TodoItem.swift23HelloWorld/TodoModels/Sources/TodoListManager.swift:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100:% -APPLE_SDK_PLATFORMiPhoneSimulator:" +-Xfrontend2-checked-async-objc-bridging=on26HelloWorld/WatchApp/WatchAppLib/Sources/WatchApp.swift:' +XCODE_VERSION_OVERRIDE 26.1.1.17B100:$ +APPLE_SDK_PLATFORMWatchSimulator:" APPLE_SDK_VERSION_OVERRIDE26.1Z requires-darwinZ requires-worker-protocoljsonZ supports-workers1Z! -supports-xcode-requirements-setr@@platforms//host:host@38feb55e78605a6ac4d2259d05767f8e02f99b06c9a3999676d852fa4b31a645" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2arm64-apple-ios17.0-simulator2-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2@-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:HelloWorldLib2 -emit-object2-output-file-map2bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/HelloWorldLib.output_file_map.json2 --Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2wbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/HelloWorldLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2|bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/HelloWorldLib.swiftconstvalues2 +supports-xcode-requirements-setr@@platforms//host:host@7d487fd14b8607e31d24fa84a4199b18e4c974a679fa58618dd612d495facc61" BundleTreeApp(2rbazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_apple+/tools/bundletool/bundletool_experimental2bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorld-intermediates/bundletool_control.json:' +XCODE_VERSION_OVERRIDE 26.1.1.17B100:% +APPLE_SDK_PLATFORMiPhoneSimulator:" +APPLE_SDK_VERSION_OVERRIDE26.1Z + +no-sandbox1Z +requires-darwinZ! +supports-xcode-requirements-setr@@platforms//host:host@8b94b8ddf017a2a1c6639e47e704aa5b31f559cafd0afb704bd72019a40e5a37" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2arm64-apple-ios17.0-simulator2-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2@-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:HelloWorldLib2 -emit-object2-output-file-map2sbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldLib.output_file_map.json2 +-Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2jbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldLib.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2obazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldLib.swiftconstvalues2 -Xfrontend2-const-gather-protocols-file2 -Xfrontend2Lexternal/rules_swift+/swift/toolchains/config/const_protocols_to_gather.json2-DDEBUG2-Onone2-whole-module-optimization2 -Xfrontend2-internalize-at-link2 --Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2fbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/_swift_module_cache2_-Ibazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/HelloWorldLib.macro-expansions2-Xcc2-iquote.2-Xcc2Y-iquotebazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin2-Xcc2E-fmodule-map-file=HelloWorld/TodoObjCSupport/Sources/module.modulemap2 --Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2 HelloWorldLib2-index-store-path2vbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-applebin_ios-ST-faa571ec622f/bin/HelloWorld/HelloWorldLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 +-Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2Ybazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/_swift_module_cache2R-Ibazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld2-Xwrapped-swift=-macro-expansion-dir=bazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldLib.macro-expansions2-Xcc2-iquote.2-Xcc2L-iquotebazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin2-Xcc2E-fmodule-map-file=HelloWorld/TodoObjCSupport/Sources/module.modulemap2 +-Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2 HelloWorldLib2-index-store-path2ibazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0-ST-2842469f5300/bin/HelloWorld/HelloWorldLib.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 -Xfrontend2-disable-clang-spi2-enable-experimental-feature2AccessLevelOnImport2-parse-as-library2-static2-Xcc2-O02-Xcc2 -DDEBUG=12-Xcc2-fstack-protector2-Xcc2-fstack-protector-all2-whole-module-optimization2 -Xfrontend2-checked-async-objc-bridging=on22HelloWorld/HelloWorldLib/Sources/AddTodoView.swift24HelloWorld/HelloWorldLib/Sources/HelloWorldApp.swift22HelloWorld/HelloWorldLib/Sources/TodoItemRow.swift23HelloWorld/HelloWorldLib/Sources/TodoListView.swift:' XCODE_VERSION_OVERRIDE 26.1.1.17B100:% @@ -381,20 +400,4 @@ TodoModels2-index-store-path2sbazel-out/ios_sim_arm64-dbg-ios-sim_arm64-min17.0 requires-darwinZ requires-worker-protocoljsonZ supports-workers1Z! -supports-xcode-requirements-setr@@platforms//host:host@d17e8d5adf08817022f37934d654a7b4922b6f556f013c5d675ee2ed5b04a296" SwiftCompile(2]bazel-out/darwin_arm64-opt-exec-ST-d57f47055a04/bin/external/rules_swift+/tools/worker/worker2swiftc2-target2!x86_64-apple-watchos7.0-simulator2-sdk2__BAZEL_XCODE_SDKROOT__2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2=-Xwrapped-swift=-bazel-target-label=@@//HelloWorld:TodoModels2 -emit-object2-output-file-map2bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/TodoModels.output_file_map.json2 --Xfrontend2-no-clang-module-breadcrumbs2-emit-module-path2ybazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/TodoModels.swiftmodule2-enforce-exclusivity=checked2-emit-const-values-path2~bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/TodoModels.swiftconstvalues2 --Xfrontend2-const-gather-protocols-file2 --Xfrontend2Lexternal/rules_swift+/swift/toolchains/config/const_protocols_to_gather.json2-DDEBUG2-Onone2-whole-module-optimization2 --Xfrontend2-internalize-at-link2 --Xfrontend2-no-serialize-debugging-options2-enable-testing2-disable-sandbox2-g2'-Xwrapped-swift=-file-prefix-pwd-is-dot2-file-prefix-map28__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR2%-Xwrapped-swift=-emit-swiftsourceinfo2-file-compilation-dir2.2-module-cache-path2kbazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/_swift_module_cache2-Xwrapped-swift=-macro-expansion-dir=bazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/TodoModels.macro-expansions2-Xcc2-iquote.2-Xcc2^-iquotebazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin2 --Xfrontend2-color-diagnostics2 -num-threads2122 -module-name2 -TodoModels2-index-store-path2xbazel-out/watchos_x86_64-dbg-watchos-x86_64-min7.0-applebin_watchos-ST-74f4ed91ef5d/bin/HelloWorld/TodoModels.indexstore2-index-ignore-system-modules2M-Xwrapped-swift=-global-index-store-import-path=bazel-out/_global_index_store2-enable-bare-slash-regex2 --Xfrontend2-disable-clang-spi2-enable-experimental-feature2AccessLevelOnImport2-parse-as-library2-static2-Xcc2-O02-Xcc2 -DDEBUG=12-Xcc2-fstack-protector2-Xcc2-fstack-protector-all2-whole-module-optimization2 --Xfrontend2-checked-async-objc-bridging=on2,HelloWorld/TodoModels/Sources/TodoItem.swift23HelloWorld/TodoModels/Sources/TodoListManager.swift:' -XCODE_VERSION_OVERRIDE 26.1.1.17B100:$ -APPLE_SDK_PLATFORMWatchSimulator:" -APPLE_SDK_VERSION_OVERRIDE26.1Z -requires-darwinZ -requires-worker-protocoljsonZ -supports-workers1Z! supports-xcode-requirements-setr@@platforms//host:host \ No newline at end of file diff --git a/Tests/SourceKitBazelBSPTests/Resources/cquery.pb b/Tests/SourceKitBazelBSPTests/Resources/cquery.pb index 21313c2f8ab9b85f3e97dada3d2e6da91374e559..f28a67d4a91d5c663120e1998b5bacc77531c76e 100644 GIT binary patch delta 7272 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