configure.ac: Don't be so picky about identifying ARM variants.
authorMark Wooding <mdw@distorted.org.uk>
Fri, 22 Jun 2018 09:21:10 +0000 (10:21 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 23 Jun 2018 10:23:41 +0000 (11:23 +0100)
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.

configure.ac

index af08371..1643ad0 100644 (file)
@@ -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.