@@ -165,6 +165,7 @@ def llvm_config_impl(rctx):
165
165
link_flags_dict = rctx .attr .link_flags ,
166
166
archive_flags_dict = rctx .attr .archive_flags ,
167
167
link_libs_dict = rctx .attr .link_libs ,
168
+ fastbuild_compile_flags_dict = rctx .attr .fastbuild_compile_flags ,
168
169
opt_compile_flags_dict = rctx .attr .opt_compile_flags ,
169
170
opt_link_flags_dict = rctx .attr .opt_link_flags ,
170
171
dbg_compile_flags_dict = rctx .attr .dbg_compile_flags ,
@@ -396,6 +397,7 @@ cc_toolchain_config(
396
397
"link_flags": {link_flags},
397
398
"archive_flags": {archive_flags},
398
399
"link_libs": {link_libs},
400
+ "fastbuild_compile_flags": {fastbuild_compile_flags},
399
401
"opt_compile_flags": {opt_compile_flags},
400
402
"opt_link_flags": {opt_link_flags},
401
403
"dbg_compile_flags": {dbg_compile_flags},
@@ -570,6 +572,7 @@ cc_toolchain(
570
572
link_flags = _list_to_string (_dict_value (toolchain_info .link_flags_dict , target_pair )),
571
573
archive_flags = _list_to_string (_dict_value (toolchain_info .archive_flags_dict , target_pair )),
572
574
link_libs = _list_to_string (_dict_value (toolchain_info .link_libs_dict , target_pair )),
575
+ fastbuild_compile_flags = _list_to_string (_dict_value (toolchain_info .fastbuild_compile_flags_dict , target_pair )),
573
576
opt_compile_flags = _list_to_string (_dict_value (toolchain_info .opt_compile_flags_dict , target_pair )),
574
577
opt_link_flags = _list_to_string (_dict_value (toolchain_info .opt_link_flags_dict , target_pair )),
575
578
dbg_compile_flags = _list_to_string (_dict_value (toolchain_info .dbg_compile_flags_dict , target_pair )),
0 commit comments