[coreboot] New patch to review for coreboot: 1041a87 Update xcompile to search for x86_64 toolchain.

Marc Jones (marcj303@gmail.com) gerrit at coreboot.org
Wed Feb 22 21:07:56 CET 2012


Marc Jones (marcj303 at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/673

-gerrit

commit 1041a87f618b4772f6ec9796c3224258888d3645
Author: Marc Jones <marc.jones at se-eng.com>
Date:   Wed Feb 22 11:46:17 2012 -0700

    Update xcompile to search for x86_64 toolchain.
    
    This adds detection of x86_64 gcc toolchain (which buildgcc can build
    if provided the option).
    
    Change-Id: I8b12f3e705157741279c7347f4847fb50ccc2b0e
    Signed-off-by: Marc Jones <marc.jones at se-eng.com>
---
 util/xcompile/xcompile |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index 4926394..f8a69bb 100644
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -36,14 +36,19 @@ done
 
 GCCPREFIX=invalid
 XGCCPATH=${1:-"`pwd`/util/crossgcc/xgcc/bin/"}
-echo '#XGCCPATH='${XGCCPATH}
+echo '# XGCCPATH='${XGCCPATH}
 TMPFILE=`mktemp /tmp/temp.XXXX 2>/dev/null || echo /tmp/temp.78gOIUGz`
 touch $TMPFILE
 
-# This should be a loop over all supported architectures
-TARCH=i386
+# This loops over all supported architectures in TARCH
+TARCH=('i386' 'x86_64')
 TWIDTH=32
-for gccprefixes in ${XGCCPATH}${TARCH}-elf- ${TARCH}-elf- ""; do
+for search_for in "${TARCH[@]}"; do
+	TARCH_SEARCH=("${TARCH_SEARCH[@]}" ${XGCCPATH}${search_for}-elf- ${search_for}-elf-)
+done
+echo '# TARCH_SEARCH='${TARCH_SEARCH[@]}
+
+for gccprefixes in "${TARCH_SEARCH[@]}" ""; do
 	if ! which ${gccprefixes}as 2>/dev/null >/dev/null; then
 		continue
 	fi




More information about the coreboot mailing list