From 3ac78a5573fd33a5efc7e590856efd38e9c11b1d Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Wed, 16 Sep 2015 01:45:42 -0500 Subject: [PATCH] normalize amd64 to x86_64 This allows asm to be enabled on platforms that use amd64 in the host tuple. --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 9f3d636..f5dcb77 100644 --- a/configure.ac +++ b/configure.ac @@ -84,6 +84,10 @@ case $host_cpu in AS_IF([test "x$BSWAP4" = "xyes"],, CPPFLAGS="$CPPFLAGS -D__STRICT_ALIGNMENT") ;; + *amd64*) + host_cpu=x86_64 + ;; + esac AC_MSG_CHECKING([if .gnu.warning accepts long strings])