From 81321fc10e64b9f29c2c8c92b2cc57d42a8c8a05 Mon Sep 17 00:00:00 2001 From: Sean Parkinson Date: Thu, 8 Sep 2022 16:20:15 +1000 Subject: [PATCH] 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. --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 4642ef434..8a84f4695 100644 --- a/configure.ac +++ b/configure.ac @@ -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;;