Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12634
-gerrit
commit 0829ddda60b3d5bfb7bd1df21485e17f051a6b7d Author: Martin Roth martinroth@google.com Date: Thu Dec 3 12:38:27 2015 -0700
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 --- util/xcompile/xcompile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 7f44df6..635bcd6 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