We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3e5445 commit 4e7d2a2Copy full SHA for 4e7d2a2
src/main/java/com/google/devtools/build/lib/skyframe/SingleToolchainResolutionFunction.java
@@ -181,6 +181,14 @@ private static SingleToolchainResolutionValue resolveConstraints(
181
for (ConfiguredTargetKey executionPlatformKey : availableExecutionPlatformKeys) {
182
// Only check the toolchains if this is a new platform.
183
if (platformKeysSeen.contains(executionPlatformKey)) {
184
+ debugMessage(
185
+ eventHandler,
186
+ " Type %s: target platform %s: execution platform %s: Skipping toolchain %s;"
187
+ + " execution platform already has selected toolchain",
188
+ toolchainType.toolchainType(),
189
+ targetPlatform.label(),
190
+ executionPlatformKey.getLabel(),
191
+ toolchain.toolchainLabel());
192
continue;
193
}
194
0 commit comments