From: Matthias Klose Date: Mon, 11 Jan 2021 14:51:35 +0000 (+0000) Subject: Make the serialized link target more verbose X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c09b788a96ddf63b282a8f92c02ad23535c912f;p=gcc.git Make the serialized link target more verbose 2020-12-07 Matthias Klose * Makefile.in (LINK_PROGRESS): Show the link target. --- diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 23e7f6ca9ea..de8af617488 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1793,7 +1793,7 @@ DO_LINK_SERIALIZATION = @DO_LINK_SERIALIZATION@ ifeq ($(DO_LINK_SERIALIZATION),) LINK_PROGRESS = : else -LINK_PROGRESS = msg="Linking |"; cnt=0; if test "$(2)" = start; then \ +LINK_PROGRESS = msg="Linking $@ |"; cnt=0; if test "$(2)" = start; then \ idx=0; cnt2=$(DO_LINK_SERIALIZATION); \ while test $$cnt2 -le $(1); do msg="$${msg}=="; cnt2=`expr $$cnt2 + 1`; idx=`expr $$idx + 1`; done; \ cnt=$$idx; \