Michael Walle has uploaded this change for review.

View Change

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>
---
M payloads/libpayload/arch/arm64/libpayload.ldscript
1 file changed, 1 insertion(+), 1 deletion(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/25/43125/1
diff --git a/payloads/libpayload/arch/arm64/libpayload.ldscript b/payloads/libpayload/arch/arm64/libpayload.ldscript
index 8ebafce..f9fb771 100644
--- a/payloads/libpayload/arch/arm64/libpayload.ldscript
+++ b/payloads/libpayload/arch/arm64/libpayload.ldscript
@@ -28,7 +28,7 @@
*/

OUTPUT_FORMAT("elf64-littleaarch64","elf64-littleaarch64", "elf64-littleaarch64")
-OUTPUT_ARCH(arm64)
+OUTPUT_ARCH(aarch64)

ENTRY(_entry)


To view, visit change 43125. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: If7a6b14691107c5d4fc67c3cd3990ecc849d4af1
Gerrit-Change-Number: 43125
Gerrit-PatchSet: 1
Gerrit-Owner: Michael Walle <michael@walle.cc>
Gerrit-MessageType: newchange