Dennis Wassenberg (dennis.wassenberg@secunet.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7340
-gerrit
commit 7749f0a1fc1476c01527d601d6d7040017dbc805 Author: Dennis Wassenberg dennis.wassenberg@secunet.com Date: Wed Nov 5 14:41:42 2014 +0100
filo: Fix xcompile script to use reference toolchain
Corrected the directory where the xcompile script searches for the reference toolchain.
Signed-off-by: Dennis Wassenberg dennis.wassenberg@secunet.com Change-Id: Ic5d4e3f6c8c8d8669be42586716e9adcddca8e8c --- util/xcompile/xcompile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 7c1adf3..0f17444 100644 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -41,7 +41,7 @@ touch $TMPFILE # This should be a loop over all supported architectures TARCH=i386 TWIDTH=32 -for gccprefixes in `pwd`/../../util/crossgcc/xgcc/bin/${TARCH}-elf- ${TARCH}-elf- ""; do +for gccprefixes in `pwd`/../../../../util/crossgcc/xgcc/bin/${TARCH}-elf- ${TARCH}-elf- ""; do if ! which ${gccprefixes}as 2>/dev/null >/dev/null; then continue fi