mirror of https://github.com/bazelbuild/rules_cc
Disable exec_transition_for_inputs in rule-based toolchains
BEGIN_PUBLIC Doing a transition to the exec platform in rule-based toolchains was causing unusual behaviors when attempting to restrict compatibility. This changes most of the toolchain rules to be evaluated from the target platform configuration, only transitioning to the exec configuration when explicitly requested. END_PUBLIC PiperOrigin-RevId: 634411095 Change-Id: I8716b9a517d9f3be306cdf96dafb98a868a3f83b
This commit is contained in:
parent
71d9e52bdb
commit
1acf5213b6
|
@ -139,5 +139,7 @@ def cc_toolchain(
|
||||||
static_runtime_lib = static_runtime_lib,
|
static_runtime_lib = static_runtime_lib,
|
||||||
supports_header_parsing = supports_header_parsing,
|
supports_header_parsing = supports_header_parsing,
|
||||||
supports_param_files = supports_param_files,
|
supports_param_files = supports_param_files,
|
||||||
|
# This is required for Bazel versions <= 7.x.x. It is ignored in later versions.
|
||||||
|
exec_transition_for_inputs = False,
|
||||||
**(all_kwargs | legacy_file_groups)
|
**(all_kwargs | legacy_file_groups)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue