Marty E. Plummer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/35083 )
Change subject: arch/ppc64: add -mregnames to assembler directives ......................................................................
arch/ppc64: add -mregnames to assembler directives
I order to avoid spurious errors `Error: unsupported relocation against rN` without a massive asm.h header #define'ing rN to N add these flags.
Change-Id: Ib3bef76c4449a2edc7b5874c6bda7df9007afd37 Signed-off-by: Marty E. Plummer hanetzer@startmail.com --- M src/arch/ppc64/Makefile.inc 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/83/35083/1
diff --git a/src/arch/ppc64/Makefile.inc b/src/arch/ppc64/Makefile.inc index bb9c63dd..e9997f7 100644 --- a/src/arch/ppc64/Makefile.inc +++ b/src/arch/ppc64/Makefile.inc @@ -16,8 +16,8 @@ ## ################################################################################
-ppc64_flags = -I$(src)/arch/ppc64/ -mbig-endian -ppc64_asm_flags = +ppc64_flags = -I$(src)/arch/ppc64/ -mbig-endian -Wa,-mregnames +ppc64_asm_flags = -mregnames
################################################################################ ## Take care of subdirectories