aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-09-16 01:45:42 -0500
committerBrent Cook <bcook@openbsd.org>2015-09-16 01:45:42 -0500
commit3ac78a5573fd33a5efc7e590856efd38e9c11b1d (patch)
treefb098ea390ff9cb2459d6926a23e709c0ff851f5
parenteae0e9d3a4217a0eb0adc8a4dfeb164f10a079df (diff)
downloadportable-3ac78a5573fd33a5efc7e590856efd38e9c11b1d.tar.gz
portable-3ac78a5573fd33a5efc7e590856efd38e9c11b1d.tar.bz2
portable-3ac78a5573fd33a5efc7e590856efd38e9c11b1d.zip
normalize amd64 to x86_64
This allows asm to be enabled on platforms that use amd64 in the host tuple.
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
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
84 AS_IF([test "x$BSWAP4" = "xyes"],, 84 AS_IF([test "x$BSWAP4" = "xyes"],,
85 CPPFLAGS="$CPPFLAGS -D__STRICT_ALIGNMENT") 85 CPPFLAGS="$CPPFLAGS -D__STRICT_ALIGNMENT")
86 ;; 86 ;;
87 *amd64*)
88 host_cpu=x86_64
89 ;;
90
87esac 91esac
88 92
89AC_MSG_CHECKING([if .gnu.warning accepts long strings]) 93AC_MSG_CHECKING([if .gnu.warning accepts long strings])