diff options
author | Marc Jones <marc.jones@se-eng.com> | 2015-01-16 13:19:04 -0700 |
---|---|---|
committer | Marc Jones <marc.jones@se-eng.com> | 2015-01-26 11:40:37 +0100 |
commit | c4dbdaf50a8fa67e0d17e237eb0dcb6309240dd6 (patch) | |
tree | 90ddae7fedadba68eab9c5fc63e2340d85665960 | |
parent | d1f840be86a8af750c7b7a44907e842d7a28a061 (diff) |
xcompile: Rename aarch64 to arm64
coreboot toolchain.inc uses the ARCH_SUPPORTED variable set
by xcompile. This change allows for consistent naming in the
toolchain.inc generated variables.
Change-Id: Iafed06cf2d19a533f99e10b76aca82adc3e09fa8
Signed-off-by: Marc Jones <marc.jones@se-eng.com>
Reviewed-on: http://review.coreboot.org/8235
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
-rwxr-xr-x | util/xcompile/xcompile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 45dae8c1e8..47e433878c 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -168,7 +168,7 @@ EOF } # Architecture definition -SUPPORTED_ARCHITECTURE="x86 arm aarch64 riscv" +SUPPORTED_ARCHITECTURE="x86 arm arm64 riscv" arch_config_arm() { TARCH="arm" @@ -179,8 +179,8 @@ arch_config_arm() { TABI="eabi" } -arch_config_aarch64() { - TARCH="aarch64" +arch_config_arm64() { + TARCH="arm64" TBFDARCH="littleaarch64" TCLIST="aarch64" TWIDTH="64" |