From: Mark Wooding Date: Fri, 22 Jun 2018 09:21:10 +0000 (+0100) Subject: configure.ac: Don't be so picky about identifying ARM variants. X-Git-Tag: 2.4.3~18 X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/commitdiff_plain/f12328720976ccd09afe73420ff07e6c72478b4c configure.ac: Don't be so picky about identifying ARM variants. They're all pretty much the same, really. If I had some good way to identify big-endian ARM targets, I'd try that, but I don't know how to do that right now. --- diff --git a/configure.ac b/configure.ac index af083714..1643ad00 100644 --- a/configure.ac +++ b/configure.ac @@ -78,9 +78,7 @@ AC_DEFUN([catacomb_CPU_FAMILIES], $1([i[[3-6]]86,*], [x86], [sysv]) $1([x86_64,cygwin], [amd64], [win]) $1([x86_64,*], [amd64], [sysv]) - $1([arm,*-gnueabi | arm,*-gnueabihf | dnl - armv*,*-gnueabi | armv*,*-gnueabihf | dnl - arm,*-androideabi], [armel], [gnueabi])]) + $1([arm,* | armv*,*], [armel], [std])]) dnl A utility to clear the `seen' flags, used so as to process each CPU or dnl ABI once.