summaryrefslogtreecommitdiff
path: root/util/xcompile
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2015-02-17 11:11:55 +0100
committerPatrick Georgi <pgeorgi@google.com>2015-02-17 18:11:18 +0100
commitf3d8b9a6630164b707e89f2c3f2c1129f60447f3 (patch)
tree4e1dbe92793744d1d665161ffbdbeb887cdda9ac /util/xcompile
parentd6e40a5942ddd3d04b79a6ecf7b56f4860e41a03 (diff)
downloadcoreboot-f3d8b9a6630164b707e89f2c3f2c1129f60447f3.tar.xz
xcompile: specify arm64 subarches
This tells abuild that it can in fact build arm64 images. Change-Id: I47695372053513ca039e118776aa904ea0afa21d Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: http://review.coreboot.org/8474 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'util/xcompile')
-rwxr-xr-xutil/xcompile/xcompile2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index 47e433878c..ea2eb47f73 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -184,6 +184,7 @@ arch_config_arm64() {
TBFDARCH="littleaarch64"
TCLIST="aarch64"
TWIDTH="64"
+ TSUPP="arm64 armv8_64"
TABI="elf"
}
@@ -207,6 +208,7 @@ test_architecture() {
architecture=$1
GCCPREFIX="invalid"
+ unset TARCH TBFDARCH TCLIST TWIDTH TSUPP TABI
if type arch_config_$architecture > /dev/null; then
arch_config_$architecture
else