summaryrefslogtreecommitdiff
path: root/util/xcompile
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2015-12-03 12:38:27 -0700
committerMartin Roth <martinroth@google.com>2015-12-07 20:59:38 +0100
commit359737d89700998048e1b04d8d0ae49b461cbbcb (patch)
treeb106d55f83a871c7c96b1c205940b28134f5df71 /util/xcompile
parent369b561315ca68d0cdedc38208105a513c7139b5 (diff)
downloadcoreboot-359737d89700998048e1b04d8d0ae49b461cbbcb.tar.xz
xcompile: Don't warn on missing power8 compiler
Until there's a reason to, don't print a warning about the missing power8 compiler. Change-Id: I47c60e0a16892f0fa228e1439e0424926bca00a4 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/12634 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Alexander Couzens <lynxis@fe80.eu>
Diffstat (limited to 'util/xcompile')
-rwxr-xr-xutil/xcompile/xcompile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index 7f44df64f2..635bcd6fbe 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -351,7 +351,7 @@ test_architecture() {
CLANG="clang -target ${clang_arch}-${TABI} -ccc-gcc-name ${GCC}"
fi
- if [ -z "$GCC" -a -z "$CLANG" ]; then
+ if [ -z "$GCC" -a -z "$CLANG" -a "power8" != "$architecture" ]; then
echo "Warning: no suitable compiler for $architecture." >&2
return 1
fi