@@ -368,7 +368,7 @@ please file an issue at https://github.com/bazelbuild/apple_support/issues/new
368
368
],
369
369
tools = [
370
370
tool (
371
- tool = ctx .file .cc_wrapper ,
371
+ tool = ctx .file .wrapped_clang ,
372
372
execution_requirements = xcode_execution_requirements ,
373
373
),
374
374
],
@@ -623,7 +623,7 @@ please file an issue at https://github.com/bazelbuild/apple_support/issues/new
623
623
],
624
624
tools = [
625
625
tool (
626
- tool = ctx .file .cc_wrapper ,
626
+ tool = ctx .file .wrapped_clang ,
627
627
execution_requirements = xcode_execution_requirements ,
628
628
),
629
629
],
@@ -690,7 +690,7 @@ please file an issue at https://github.com/bazelbuild/apple_support/issues/new
690
690
],
691
691
tools = [
692
692
tool (
693
- tool = ctx .file .cc_wrapper ,
693
+ tool = ctx .file .wrapped_clang ,
694
694
execution_requirements = xcode_execution_requirements ,
695
695
),
696
696
],
@@ -2780,7 +2780,7 @@ please file an issue at https://github.com/bazelbuild/apple_support/issues/new
2780
2780
"ar" : ctx .file .libtool .path ,
2781
2781
"cpp" : "/usr/bin/cpp" ,
2782
2782
"dwp" : "/usr/bin/dwp" ,
2783
- "gcc" : ctx .file .cc_wrapper .path ,
2783
+ "gcc" : ctx .file .wrapped_clang .path ,
2784
2784
"gcov" : "/usr/bin/gcov" ,
2785
2785
"ld" : "/usr/bin/ld" ,
2786
2786
"nm" : "/usr/bin/nm" ,
@@ -2816,10 +2816,6 @@ cc_toolchain_config = rule(
2816
2816
implementation = _impl ,
2817
2817
attrs = {
2818
2818
"cpu" : attr .string (mandatory = True ),
2819
- "cc_wrapper" : attr .label (
2820
- allow_single_file = True ,
2821
- mandatory = True ,
2822
- ),
2823
2819
"cxx_builtin_include_directories" : attr .string_list (),
2824
2820
"extra_env" : attr .string_dict (),
2825
2821
"libtool" : attr .label (
0 commit comments