Add incompatible_use_toolchain_transition = True as per https://github.com/bazelbuild/bazel/issues/11584 (#617)
This commit is contained in:
parent
c734ca8446
commit
b66074cdd2
|
@ -54,4 +54,7 @@ boost_build = rule(
|
|||
"@rules_foreign_cc//foreign_cc/private/shell_toolchain/toolchains:shell_commands",
|
||||
"@bazel_tools//tools/cpp:toolchain_type",
|
||||
],
|
||||
# TODO: Remove once https://github.com/bazelbuild/bazel/issues/11584 is closed and the min supported
|
||||
# version is updated to a release of Bazel containing the new default for this setting.
|
||||
incompatible_use_toolchain_transition = True,
|
||||
)
|
||||
|
|
|
@ -282,4 +282,7 @@ cmake = rule(
|
|||
"@rules_foreign_cc//foreign_cc/private/shell_toolchain/toolchains:shell_commands",
|
||||
"@bazel_tools//tools/cpp:toolchain_type",
|
||||
],
|
||||
# TODO: Remove once https://github.com/bazelbuild/bazel/issues/11584 is closed and the min supported
|
||||
# version is updated to a release of Bazel containing the new default for this setting.
|
||||
incompatible_use_toolchain_transition = True,
|
||||
)
|
||||
|
|
|
@ -214,4 +214,7 @@ configure_make = rule(
|
|||
"@rules_foreign_cc//foreign_cc/private/shell_toolchain/toolchains:shell_commands",
|
||||
"@bazel_tools//tools/cpp:toolchain_type",
|
||||
],
|
||||
# TODO: Remove once https://github.com/bazelbuild/bazel/issues/11584 is closed and the min supported
|
||||
# version is updated to a release of Bazel containing the new default for this setting.
|
||||
incompatible_use_toolchain_transition = True,
|
||||
)
|
||||
|
|
|
@ -99,4 +99,7 @@ make = rule(
|
|||
"@rules_foreign_cc//foreign_cc/private/shell_toolchain/toolchains:shell_commands",
|
||||
"@bazel_tools//tools/cpp:toolchain_type",
|
||||
],
|
||||
# TODO: Remove once https://github.com/bazelbuild/bazel/issues/11584 is closed and the min supported
|
||||
# version is updated to a release of Bazel containing the new default for this setting.
|
||||
incompatible_use_toolchain_transition = True,
|
||||
)
|
||||
|
|
|
@ -116,4 +116,7 @@ ninja = rule(
|
|||
"@rules_foreign_cc//foreign_cc/private/shell_toolchain/toolchains:shell_commands",
|
||||
"@bazel_tools//tools/cpp:toolchain_type",
|
||||
],
|
||||
# TODO: Remove once https://github.com/bazelbuild/bazel/issues/11584 is closed and the min supported
|
||||
# version is updated to a release of Bazel containing the new default for this setting.
|
||||
incompatible_use_toolchain_transition = True,
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue