Re: [U-Boot] [PATCH 1/1] arm: fix -march for ARM11

2019-11-22 Thread Linus Walleij
On Tue, Nov 19, 2019 at 11:16 PM Heinrich Schuchardt wrote: > -march v5 is invalid for GCC 9.2.1. ARM11 is an armv6 implementation. So > change the architecture flag for the compiler to armv6. > Cf. https://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html > > Suggested-by: Fabio Estevam > Signed-off-

Re: [U-Boot] [PATCH 1/1] arm: fix -march for ARM11

2019-11-20 Thread Linus Walleij
On Tue, Nov 19, 2019 at 11:16 PM Heinrich Schuchardt wrote: > -march v5 is invalid for GCC 9.2.1. ARM11 is an armv6 implementation. So > change the architecture flag for the compiler to armv6. > Cf. https://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html > > Suggested-by: Fabio Estevam > Signed-off-

[U-Boot] [PATCH 1/1] arm: fix -march for ARM11

2019-11-19 Thread Heinrich Schuchardt
-march v5 is invalid for GCC 9.2.1. ARM11 is an armv6 implementation. So change the architecture flag for the compiler to armv6. Cf. https://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html Suggested-by: Fabio Estevam Signed-off-by: Heinrich Schuchardt --- arch/arm/Makefile | 4 ++-- 1 file changed,