aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index d8bf28e..c89fe95 100644
--- a/configure.ac
+++ b/configure.ac
@@ -74,6 +74,7 @@ AC_ARG_ENABLE([tests],
74AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = xyes]) 74AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = xyes])
75 75
76AS_CASE([$host_cpu], 76AS_CASE([$host_cpu],
77 [arm64], [host_cpu=aarch64],
77 [*arm*], [host_cpu=arm], 78 [*arm*], [host_cpu=arm],
78 [*amd64*], [host_cpu=x86_64 HOSTARCH=intel], 79 [*amd64*], [host_cpu=x86_64 HOSTARCH=intel],
79 [i?86], [host_cpu=i386 HOSTARCH=intel], 80 [i?86], [host_cpu=i386 HOSTARCH=intel],
@@ -110,17 +111,13 @@ int main() {return 0;}
110 111
111AC_ARG_ENABLE([asm], 112AC_ARG_ENABLE([asm],
112 AS_HELP_STRING([--disable-asm], [Disable assembly])) 113 AS_HELP_STRING([--disable-asm], [Disable assembly]))
113# Disable below while updating to support upstream assembly changes 114AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno" -o "$host_cpu" = "aarch64"])
114AM_CONDITIONAL([OPENSSL_NO_ASM], [true])
115enable_asm = "no"
116# AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"])
117 115
118# Conditionally enable assembly by default 116# Conditionally enable assembly by default
119AM_CONDITIONAL([HOST_ASM_ELF_ARM], 117AM_CONDITIONAL([HOST_ASM_ELF_ARM],
120 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "arm" -a "x$enable_asm" != "xno"]) 118 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "arm" -a "x$enable_asm" != "xno"])
121AM_CONDITIONAL([HOST_ASM_ELF_X86_64], 119AM_CONDITIONAL([HOST_ASM_ELF_X86_64],
122 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"]) 120 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"])
123
124AM_CONDITIONAL([HOST_ASM_MACOSX_X86_64], 121AM_CONDITIONAL([HOST_ASM_MACOSX_X86_64],
125 [test "x$HOST_ABI" = "xmacosx" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"]) 122 [test "x$HOST_ABI" = "xmacosx" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"])
126AM_CONDITIONAL([HOST_ASM_MASM_X86_64], 123AM_CONDITIONAL([HOST_ASM_MASM_X86_64],