@@ -165,6 +165,7 @@ def llvm_config_impl(rctx):
165165 link_flags_dict = rctx .attr .link_flags ,
166166 archive_flags_dict = rctx .attr .archive_flags ,
167167 link_libs_dict = rctx .attr .link_libs ,
168+ fastbuild_compile_flags_dict = rctx .attr .fastbuild_compile_flags ,
168169 opt_compile_flags_dict = rctx .attr .opt_compile_flags ,
169170 opt_link_flags_dict = rctx .attr .opt_link_flags ,
170171 dbg_compile_flags_dict = rctx .attr .dbg_compile_flags ,
@@ -396,6 +397,7 @@ cc_toolchain_config(
396397 "link_flags": {link_flags},
397398 "archive_flags": {archive_flags},
398399 "link_libs": {link_libs},
400+ "fastbuild_compile_flags": {fastbuild_compile_flags},
399401 "opt_compile_flags": {opt_compile_flags},
400402 "opt_link_flags": {opt_link_flags},
401403 "dbg_compile_flags": {dbg_compile_flags},
@@ -570,6 +572,7 @@ cc_toolchain(
570572 link_flags = _list_to_string (_dict_value (toolchain_info .link_flags_dict , target_pair )),
571573 archive_flags = _list_to_string (_dict_value (toolchain_info .archive_flags_dict , target_pair )),
572574 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 )),
573576 opt_compile_flags = _list_to_string (_dict_value (toolchain_info .opt_compile_flags_dict , target_pair )),
574577 opt_link_flags = _list_to_string (_dict_value (toolchain_info .opt_link_flags_dict , target_pair )),
575578 dbg_compile_flags = _list_to_string (_dict_value (toolchain_info .dbg_compile_flags_dict , target_pair )),
0 commit comments