Add support for AMD64 processors and Microsoft Windows.
[catacomb] / configure.ac
index b76c561..8a58d78 100644 (file)
@@ -55,7 +55,10 @@ dnl The table of CPU families and ABIs which we might support.  Support is
 dnl not uniform: each dispatched function might or might not have an
 dnl implementation for any particular CPU/ABI combination.
 AC_DEFUN([catacomb_CPU_FAMILIES],
-  [$1([i[[3-6]]86,*], [x86], [sysv])])
+  [$1([i[[3-6]]86,cygwin], [x86], [win])
+   $1([i[[3-6]]86,*], [x86], [sysv])
+   $1([x86_64,cygwin], [amd64], [win])
+   $1([x86_64,*], [amd64], [sysv])])
 
 dnl A utility to clear the `seen' flags, used so as to process each CPU or
 dnl ABI once.