Set progress message when building targets (#697) (#697)

This commit is contained in:
jheaff1 2021-06-23 16:32:21 +01:00 committed by GitHub
parent 8c20dfa264
commit 99ea7e75c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -452,6 +452,10 @@ def cc_external_rule_impl(ctx, attrs):
use_default_shell_env = "win" in os_name(ctx),
# this is ignored if use_default_shell_env = True
env = env,
progress_message = "Foreign Cc - {configure_name}: Building {target_name}".format(
configure_name = attrs.configure_name,
target_name = ctx.attr.name,
),
)
# Gather runfiles transitively as per the documentation in: