Bug#931795: sbcl: FTBFS with gcc-9, uses deprecated armv5 target on armhf
> 
> Bug reports should be sent to Launchpad: 
> https://bugs.launchpad.net/sbcl/
> 
thanks, I don't think I'll try to contact upstream, I don't find even an email...
Looks like the patch I provided was not working, armv7 should be probably changed to armv7-a
(while armv4 didn't work because of too restricted assembly language)
Description: Default on armv7 for Ubuntu, since gcc-9 deprecates armv5
Author: Gianfranco Costamagna <locutusofborg@debian.org>
Last-Update: 2019-07-10
--- sbcl-1.5.4.orig/src/runtime/Config.arm-linux
+++ sbcl-1.5.4/src/runtime/Config.arm-linux
@@ -9,7 +9,7 @@
 # provided with absolutely no warranty. See the COPYING and CREDITS
 # files for more information.
 
-CFLAGS += -marm -march=armv5
+CFLAGS += -marm -march=armv7-a
 NM = ./linux-nm
 
 ASSEM_SRC = arm-assem.S ldso-stubs.S
G.
Reply to: