From 769c959341e5bf39472b41d1f09643dc369dcd6a Mon Sep 17 00:00:00 2001 From: Brentley Jones Date: Tue, 19 Mar 2024 15:27:09 -0500 Subject: [PATCH] Add `gcc_quoting_for_param_files` feature Mirrors https://github.com/bazelbuild/bazel/commit/bd2da6e977172398bb6612c3a45e91fd1192961a. Signed-off-by: Brentley Jones --- crosstool/cc_toolchain_config.bzl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crosstool/cc_toolchain_config.bzl b/crosstool/cc_toolchain_config.bzl index d66a956..3353145 100644 --- a/crosstool/cc_toolchain_config.bzl +++ b/crosstool/cc_toolchain_config.bzl @@ -1042,6 +1042,11 @@ please file an issue at https://github.com/bazelbuild/apple_support/issues/new requires = [feature_set(features = ["coverage"])], ) + gcc_quoting_for_param_files_feature = feature( + name = "gcc_quoting_for_param_files", + enabled = True, + ) + default_link_flags_feature = feature( name = "default_link_flags", enabled = True, @@ -2578,6 +2583,7 @@ please file an issue at https://github.com/bazelbuild/apple_support/issues/new no_objc_arc_feature, apple_env_feature, relative_ast_path_feature, + gcc_quoting_for_param_files_feature, user_link_flags_feature, default_link_flags_feature, no_deduplicate_feature,