diff options
author | Martin Roth <martinroth@google.com> | 2016-01-05 14:21:02 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-01-07 17:08:12 +0100 |
commit | 03f7a49f5a745ee749ee0e3ea9e8b66ec2b0c731 (patch) | |
tree | 1f3644cf6acdd21b2b5d2ef355a2dfbcf4ed12a8 /util/xcompile | |
parent | c2054f321285ee107c5a6abda826274eb3009dd9 (diff) |
xcompile: Add separation for architectures to improve readability
- Add bar at the top of each architecture
- Make the architecture name and the TARCH_SEARCH to two lines
- Add a second line at the bottom of each architecture
- Add a comment about the two blank lines so they don't get
accidentally removed.
Change-Id: Ib4326bd94fe39b979244816ce54b752d083f6b16
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12838
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/xcompile')
-rwxr-xr-x | util/xcompile/xcompile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 82a5885a1e..3535793542 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -225,7 +225,9 @@ STRIP_${TARCH}:=${GCCPREFIX}strip AR_${TARCH}:=${GCCPREFIX}ar CROSS_COMPILE_${TARCH}:=${GCCPREFIX} + EOF +#The two blank lines above are intentional separators } # Architecture definitions @@ -320,7 +322,9 @@ test_architecture() { search="$search $toolchain-linux-gnu-" search="$search $toolchain-" done - echo "# $architecture TARCH_SEARCH=$search" + echo "###########################################################################" + echo "# $architecture" + echo "# TARCH_SEARCH=$search" # Search toolchain by checking assembler capability. for TBFDARCH in $TBFDARCHS; do |