Ronald G. Minnich (rminnich@gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12624
-gerrit
commit 375d75d2015224d44cc756b7163c2360dbc27850 Author: Ronald G. Minnich rminnich@gmail.com Date: Wed Dec 2 20:24:15 2015 +0000
add support for power8 to xcompile script
power8 is set up by ibm as a powerpc subset, so we follow that rule here: we call it a powerpc but require -mcpu=power8
Change-Id: Ib5212be22db9584b0dc0eeed5c06ec1924347067 Signed-off-by: Ronald G. Minnich rminnich@gmail.com --- util/xcompile/xcompile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 76c3698..af4e3f3 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -231,7 +231,7 @@ EOF }
# Architecture definitions -SUPPORTED_ARCHITECTURES="arm arm64 mipsel riscv x64 x86" +SUPPORTED_ARCHITECTURES="arm arm64 mipsel riscv x64 x86 power8"
arch_config_arm() { TARCH="arm" @@ -286,6 +286,16 @@ arch_config_mipsel() { TENDIAN="EL" }
+arch_config_power8() { + TARCH="powerpc" + TBFDARCHS="powerpc" + TCLIST="powerpc" + TWIDTH="64" + TSUPP="power8" + TABI="elf" + CC_RT_EXTRA_GCC="-mcpu=power8" +} + test_architecture() { local architecture=$1 local endian gccprefix search