summaryrefslogtreecommitdiff
path: root/util/xcompile
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2016-01-25 18:16:14 +0100
committerPatrick Georgi <pgeorgi@google.com>2016-01-26 18:10:34 +0100
commitd6577e1cb89ba3b04eab2804627343bbad175a72 (patch)
tree2fc953b55c23c81f4dd78d765c561da4e0b39997 /util/xcompile
parenta1a6f7535b004de71e894946321b9c1b1d34e57d (diff)
downloadcoreboot-d6577e1cb89ba3b04eab2804627343bbad175a72.tar.xz
xcompile: fill in power8 64bit LE
Change-Id: Id0316042f665ec9c095887cf6a37a7949ed8e861 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/13421 Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'util/xcompile')
-rwxr-xr-xutil/xcompile/xcompile10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index c9c91b9bc0..b0199ebeb9 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -341,13 +341,13 @@ arch_config_mipsel() {
}
arch_config_power8() {
- TARCH="powerpc"
- TBFDARCHS="powerpc"
- TCLIST="powerpc"
+ TARCH="power8"
+ TBFDARCHS="powerpcle"
+ TCLIST="powerpc64 powerpc64le"
TWIDTH="64"
TSUPP="power8"
- TABI="elf"
- CC_RT_EXTRA_GCC="-mcpu=power8"
+ TABI="linux" # there is no generic ABI on ppc64
+ CC_RT_EXTRA_GCC="-mcpu=power8 -mlittle-endian"
}
test_architecture() {