diff mbox

[3/6] toolchain/crosstool-ng: sprinkle with some calls to MESSAGE

Message ID f69a7b3d3f92b370d81f7f99e03771eebdb7c134.1358379198.git.yann.morin.1998@free.fr
State Changes Requested
Headers show

Commit Message

Yann E. MORIN Jan. 16, 2013, 11:41 p.m. UTC
Thus, the failing step can be easily extracted by autobuilders,
to ease with post-mortem analysis.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 toolchain/toolchain-crosstool-ng/crosstool-ng.mk |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

Comments

Arnout Vandecappelle Jan. 20, 2013, 1:56 p.m. UTC | #1
On 01/17/13 00:41, Yann E. MORIN wrote:
> Thus, the failing step can be easily extracted by autobuilders,
> to ease with post-mortem analysis.
>
> Signed-off-by: "Yann E. MORIN"<yann.morin.1998@free.fr>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>


> ---
>   toolchain/toolchain-crosstool-ng/crosstool-ng.mk |    3 ++-
>   1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
> index c09f732..be14e08 100644
> --- a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
> +++ b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
> @@ -68,9 +68,9 @@ $(STAMP_DIR)/ct-ng-toolchain-installed: $(STAMP_DIR)/ct-ng-toolchain-built
>   	$(Q)mkdir -p $(TARGET_DIR)/lib
>   	$(Q)CTNG_TUPLE="$$( $(call ctng,show-tuple 2>&1) )";                \
>   	    CTNG_SYSROOT="$(HOST_DIR)/usr/$${CTNG_TUPLE}/sysroot";          \
> +	    $(call MESSAGE,"Copy external toolchain libraries to target..."); \

  You could correct this to "Copying".

>   	    echo "CTNG_TUPLE='$${CTNG_TUPLE}'";                             \
>   	    echo "CTNG_SYSROOT='$${CTNG_SYSROOT}'";                         \

  What are these two echoes doing there? git blame points to you, Yann...

> -	    echo "Copy external toolchain libraries to target...";          \
>   	    for libs in $(CTNG_LIBS_LIB); do                                \
>   	        $(call copy_toolchain_lib_root,$${CTNG_SYSROOT},,lib,$$libs,/lib); \
>   	    done;                                                           \
> @@ -85,6 +85,7 @@ $(STAMP_DIR)/ct-ng-toolchain-installed: $(STAMP_DIR)/ct-ng-toolchain-built
>   #       depending on the selected C library. Those deps are added later
>
>   $(STAMP_DIR)/ct-ng-toolchain-built: $(CTNG_DIR)/.config
> +	$(Q)$(call MESSAGE,"Building the toolchain")

  Just to make things crystal clear when it appears in autobuilder results:

"Building the crosstool-ng toolchain"


  Regards,
  Arnout

>   	$(Q)$(call ctng,build.$(PARALLEL_JOBS))
>   	$(Q)printf "\n"
>   	$(Q)touch $@
Yann E. MORIN Jan. 20, 2013, 2:27 p.m. UTC | #2
Arnout, All,

On Sunday 20 January 2013 Arnout Vandecappelle wrote:
> >   	    echo "CTNG_TUPLE='$${CTNG_TUPLE}'";                             \
> >   	    echo "CTNG_SYSROOT='$${CTNG_SYSROOT}'";                         \
> 
>   What are these two echoes doing there? git blame points to you, Yann...

They've been there from the beginning. IIRC, I used those during the
initial ct-ng backend integration, as a debug thingy.

I guess they can now be removed, of course.

Regards,
Yann E. MORIN.
diff mbox

Patch

diff --git a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
index c09f732..be14e08 100644
--- a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
+++ b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
@@ -68,9 +68,9 @@  $(STAMP_DIR)/ct-ng-toolchain-installed: $(STAMP_DIR)/ct-ng-toolchain-built
 	$(Q)mkdir -p $(TARGET_DIR)/lib
 	$(Q)CTNG_TUPLE="$$( $(call ctng,show-tuple 2>&1) )";                \
 	    CTNG_SYSROOT="$(HOST_DIR)/usr/$${CTNG_TUPLE}/sysroot";          \
+	    $(call MESSAGE,"Copy external toolchain libraries to target..."); \
 	    echo "CTNG_TUPLE='$${CTNG_TUPLE}'";                             \
 	    echo "CTNG_SYSROOT='$${CTNG_SYSROOT}'";                         \
-	    echo "Copy external toolchain libraries to target...";          \
 	    for libs in $(CTNG_LIBS_LIB); do                                \
 	        $(call copy_toolchain_lib_root,$${CTNG_SYSROOT},,lib,$$libs,/lib); \
 	    done;                                                           \
@@ -85,6 +85,7 @@  $(STAMP_DIR)/ct-ng-toolchain-installed: $(STAMP_DIR)/ct-ng-toolchain-built
 #       depending on the selected C library. Those deps are added later
 
 $(STAMP_DIR)/ct-ng-toolchain-built: $(CTNG_DIR)/.config
+	$(Q)$(call MESSAGE,"Building the toolchain")
 	$(Q)$(call ctng,build.$(PARALLEL_JOBS))
 	$(Q)printf "\n"
 	$(Q)touch $@