You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: configure.ac
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10485,6 +10485,23 @@ if test "$ENABLED_SP_MATH_ALL" = "yes" && test "$ENABLED_ASM" != "no"; then
10485
10485
fi
10486
10486
10487
10487
10488
+
if test "$ENABLED_SP_ASM" = "yes" && test "$ENABLED_SP" = "yes"; then
10489
+
case $host_cpu in
10490
+
*x86_64* | *amd64*)
10491
+
case $host_os in
10492
+
*mingw* | *cygwin* | *msys*)
10493
+
if test "$enable_sp_asm" = "yes"; then
10494
+
AC_MSG_ERROR([--enable-sp-asm is not supported for x86_64 Windows hosts (MinGW/Cygwin). Reconfigure without --enable-sp-asm to use the C SP implementation.])
10495
+
else
10496
+
AC_MSG_WARN([x86_64 SP assembly is not supported for Windows hosts (MinGW/Cygwin); disabling SP assembly and using the C implementation.])
10497
+
ENABLED_SP_ASM=no
10498
+
fi
10499
+
;;
10500
+
esac
10501
+
;;
10502
+
esac
10503
+
fi
10504
+
10488
10505
if test "$ENABLED_SP_ASM" = "yes" && test "$ENABLED_SP" = "yes"; then
10489
10506
if test "$ENABLED_SP_NONBLOCK" = "yes"; then
10490
10507
AC_MSG_ERROR([SP non-blocking not supported with sp-asm])
0 commit comments