disable asm by default

This commit is contained in:
Brent Cook 2023-02-11 06:32:04 -06:00
parent 97124d6742
commit 5427234a78

View File

@ -94,8 +94,9 @@ int main() {return 0;}
])
AC_ARG_ENABLE([asm],
AS_HELP_STRING([--disable-asm], [Disable assembly]))
AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"])
AS_HELP_STRING([--enable-asm], [Enable assembly]))
# Disable below while updating to support upstream assembly changes
AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = xyes])
# Conditionally enable assembly by default
AM_CONDITIONAL([HOST_ASM_ELF_ARM],