libpayload: arm64: fix OUTPUT_ARCH()

There is no bfd "arm64". The correct bfdname is "aarch64". Fix it. With
this change libpayload will build with the AArch64 GCC.

Change-Id: If7a6b14691107c5d4fc67c3cd3990ecc849d4af1
Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43125
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
Michael Walle 2020-07-03 23:26:20 +02:00 committed by Patrick Georgi
parent 3d44c9925f
commit 492d55fa46
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
*/
OUTPUT_FORMAT("elf64-littleaarch64","elf64-littleaarch64", "elf64-littleaarch64")
OUTPUT_ARCH(arm64)
OUTPUT_ARCH(aarch64)
ENTRY(_entry)