SP: config option to force no asm

Added to configure.ac the option to specify SP to be built with ASM as
x64 defaults to with asm.
This commit is contained in:
Sean Parkinson
2022-09-08 16:20:15 +10:00
parent 4066568315
commit 81321fc10e

View File

@ -6497,6 +6497,10 @@ do
ENABLED_SP_ASM=yes
;;
noasm)
ENABLED_SP_ASM=no
;;
*)
AC_MSG_ERROR([Invalid choice of Single Precision length in bits [256, 384, 521, 1024, 2048, 3072, 4096]: $ENABLED_SP.])
break;;