aboutsummaryrefslogtreecommitdiff
path: root/util/abuild
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2004-11-05 23:19:46 +0000
committerStefan Reinauer <stepan@openbios.org>2004-11-05 23:19:46 +0000
commitdc9e6e35c43ccdfa06b1c93879895ef90ccb4ee2 (patch)
tree6438fb2e6cc80d268822284d728c2053d7fe41e5 /util/abuild
parentad00d73998f56147ecf581c841b4bd72e7654651 (diff)
add compiler from crosstool, too
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1766 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/abuild')
-rw-r--r--util/abuild/abuild.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/util/abuild/abuild.sh b/util/abuild/abuild.sh
index 0e00c6616e..1b8cea6eee 100644
--- a/util/abuild/abuild.sh
+++ b/util/abuild/abuild.sh
@@ -229,8 +229,9 @@ function build_target
CC="gcc -m32"
found_crosscompiler=true
fi
- if [ "$found_crosscompiler" == "false" -a "$TARCH" == ppc ] ;then
- for prefix in powerpc-eabi- powerpc-linux- ppc_74xx- ; do
+ if [ "$found_crosscompiler" == "false" -a "$TARCH" == ppc ];then
+ for prefix in powerpc-eabi- powerpc-linux- ppc_74xx- \
+ powerpc-7450-linux-gnu-; do
if ${prefix}gcc --version > /dev/null 2> /dev/null ; then
found_crosscompiler=true
CROSS_COMPILE=$prefix