@@ -775,6 +775,8 @@ LIBR1
775775LIBR0
776776BLAS_SHLIB_FALSE
777777BLAS_SHLIB_TRUE
778+ BUILD_2025BLAS_FALSE
779+ BUILD_2025BLAS_TRUE
778780RMATH_HAVE_WORKING_LOG1P
779781LIBOBJS
780782ALLOCA
@@ -1096,6 +1098,7 @@ enable_lto
10961098enable_java
10971099with_blas
10981100with_lapack
1101+ with_2025blas
10991102with_readline
11001103with_pcre2
11011104with_pcre1
@@ -1907,6 +1910,7 @@ Optional Packages:
19071910                          it [unset]
19081911  --with-lapack           use system LAPACK library (if available), or specify
19091912                          it [unset]
1913+   --with-2025blas         compile 2025 BLAS additions into Rlapack [no]
19101914  --with-readline         use readline library [yes]
19111915  --with-pcre2            use PCRE2 library (if available) [yes]
19121916  --with-pcre1            use PCRE1 library (if available and PCRE2 is not)
@@ -4839,6 +4843,22 @@ esac
48394843fi
48404844
48414845
4846+ 
4847+ # Check whether --with-2025blas was given.
4848+ if test ${with_2025blas+y}
4849+ then :
4850+   withval=$with_2025blas; if test "${withval}" = no; then
4851+   use_2025blas=no
4852+ else
4853+   use_2025blas=yes
4854+ fi
4855+ 
4856+ else case e in #(
4857+   e) use_2025blas=no ;;
4858+ esac
4859+ fi
4860+ 
4861+ 
48424862## Readline.
48434863
48444864# Check whether --with-readline was given.
@@ -27529,7 +27549,7 @@ _ACEOF
2752927549# flags.
2753027550r_save_CFLAGS=$CFLAGS
2753127551CFLAGS="$CFLAGS $r_verb"
27532- (eval echo $as_me:27532 : \"$ac_link\") >&5
27552+ (eval echo $as_me:27552 : \"$ac_link\") >&5
2753327553r_c_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'`
2753427554echo "$r_c_v_output" >&5
2753527555CFLAGS=$r_save_CFLAGS
@@ -27607,7 +27627,7 @@ _ACEOF
2760727627# flags.
2760827628r_save_CFLAGS=$CFLAGS
2760927629CFLAGS="$CFLAGS $r_cv_prog_c_v"
27610- (eval echo $as_me:27610 : \"$ac_link\") >&5
27630+ (eval echo $as_me:27630 : \"$ac_link\") >&5
2761127631r_c_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'`
2761227632echo "$r_c_v_output" >&5
2761327633CFLAGS=$r_save_CFLAGS
@@ -51532,6 +51552,20 @@ if test "${acx_blas_ok}" != "yes"; then
5153251552  esac
5153351553fi
5153451554
51555+ if test "${use_2025blas}" = yes; then
51556+    if test "${acx_lapack_ok}" = "yes"; then
51557+      as_fn_error $? "--with-2025blas cannot be used with --with-lapack" "$LINENO" 5
51558+   fi
51559+ fi
51560+  if test "${use_2025blas}" = yes; then
51561+   BUILD_2025BLAS_TRUE=
51562+   BUILD_2025BLAS_FALSE='#'
51563+ else
51564+   BUILD_2025BLAS_TRUE='#'
51565+   BUILD_2025BLAS_FALSE=
51566+ fi
51567+ 
51568+ 
5153551569 if test "x${use_blas_shlib}" = xyes; then
5153651570  BLAS_SHLIB_TRUE=
5153751571  BLAS_SHLIB_FALSE='#'
@@ -64097,6 +64131,10 @@ if test -z "${USE_EXPORTFILES_TRUE}" && test -z "${USE_EXPORTFILES_FALSE}"; then
6409764131  as_fn_error $? "conditional \"USE_EXPORTFILES\" was never defined.
6409864132Usually this means the macro was only invoked conditionally." "$LINENO" 5
6409964133fi
64134+ if test -z "${BUILD_2025BLAS_TRUE}" && test -z "${BUILD_2025BLAS_FALSE}"; then
64135+   as_fn_error $? "conditional \"BUILD_2025BLAS\" was never defined.
64136+ Usually this means the macro was only invoked conditionally." "$LINENO" 5
64137+ fi
6410064138if test -z "${BLAS_SHLIB_TRUE}" && test -z "${BLAS_SHLIB_FALSE}"; then
6410164139  as_fn_error $? "conditional \"BLAS_SHLIB\" was never defined.
6410264140Usually this means the macro was only invoked conditionally." "$LINENO" 5
0 commit comments