File tree Expand file tree Collapse file tree 3 files changed +6
-13
lines changed
inst/include/RcppArmadillo/config Expand file tree Collapse file tree 3 files changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -612,7 +612,6 @@ ac_subst_vars='LTLIBOBJS
612
612
LIBOBJS
613
613
OPENMP_FLAG
614
614
ARMA_HAVE_OPENMP
615
- ARMA_LAPACK
616
615
CXXCPP
617
616
OBJEXT
618
617
EXEEXT
@@ -3394,14 +3393,14 @@ if test x"${hasRlapack}" = x""; then
3394
3393
# # We are using a full Lapack and can use zgbsv -- so #undef remains
3395
3394
{ printf " %s\n" " $as_me :${as_lineno-$LINENO } : result: system LAPACK found" >&5
3396
3395
printf " %s\n" " system LAPACK found" >&6 ; }
3397
- arma_lapack=" #undef ARMA_CRIPPLED_LAPACK"
3396
+ # # arma_lapack="#undef ARMA_CRIPPLED_LAPACK"
3398
3397
else
3399
3398
# # We are using R's subset of Lapack and CANNOT use zgbsv etc, so we mark it
3400
3399
{ printf " %s\n" " $as_me :${as_lineno-$LINENO } : result: R-supplied partial LAPACK found" >&5
3401
3400
printf " %s\n" " R-supplied partial LAPACK found" >&6 ; }
3402
3401
{ printf " %s\n" " $as_me :${as_lineno-$LINENO } : WARNING: Some complex-valued LAPACK functions may not be available" >&5
3403
3402
printf " %s\n" " $as_me : WARNING: Some complex-valued LAPACK functions may not be available" >&2 ; }
3404
- arma_lapack=" #define ARMA_CRIPPLED_LAPACK 1"
3403
+ # # arma_lapack="#define ARMA_CRIPPLED_LAPACK 1"
3405
3404
fi
3406
3405
3407
3406
# # Default the OpenMP flag to the empty string.
3436
3435
3437
3436
3438
3437
# # now use all these
3439
- ARMA_LAPACK=" ${arma_lapack} "
3440
-
3438
+ # # AC_SUBST([ARMA_LAPACK],["${arma_lapack}"])
3441
3439
ARMA_HAVE_OPENMP=" ${arma_have_openmp} "
3442
3440
3443
3441
OPENMP_FLAG=" ${openmp_flag} "
Original file line number Diff line number Diff line change @@ -167,12 +167,12 @@ hasRlapack=$(echo ${lapack} | grep lRlapack)
167
167
if test x"${hasRlapack}" = x""; then
168
168
# # We are using a full Lapack and can use zgbsv -- so #undef remains
169
169
AC_MSG_RESULT ( [ system LAPACK found] )
170
- arma_lapack="# undef ARMA_CRIPPLED_LAPACK"
170
+ # # arma_lapack="#undef ARMA_CRIPPLED_LAPACK"
171
171
else
172
172
# # We are using R's subset of Lapack and CANNOT use zgbsv etc, so we mark it
173
173
AC_MSG_RESULT ( [ R-supplied partial LAPACK found] )
174
174
AC_MSG_WARN ( [ Some complex-valued LAPACK functions may not be available] )
175
- arma_lapack="# define ARMA_CRIPPLED_LAPACK 1"
175
+ # # arma_lapack="#define ARMA_CRIPPLED_LAPACK 1"
176
176
fi
177
177
178
178
# # Default the OpenMP flag to the empty string.
204
204
205
205
206
206
# # now use all these
207
- AC_SUBST ( [ ARMA_LAPACK] ,[ "${arma_lapack}"] )
207
+ # # AC_SUBST([ARMA_LAPACK],["${arma_lapack}"])
208
208
AC_SUBST ( [ ARMA_HAVE_OPENMP] , [ "${arma_have_openmp}"] )
209
209
AC_SUBST ( [ OPENMP_FLAG] , [ "${openmp_flag}"] )
210
210
AC_CONFIG_FILES ( [ inst/include/RcppArmadillo/config/RcppArmadilloConfigGenerated.h src/Makevars] )
Original file line number Diff line number Diff line change 21
21
#ifndef RcppArmadillo__RcppArmadilloConfigGenerated__h
22
22
#define RcppArmadillo__RcppArmadilloConfigGenerated__h
23
23
24
- #ifndef ARMA_CRIPPLED_LAPACK
25
- // value on next line may be changed between #undef and #define by the configure script
26
- @ARMA_LAPACK @
27
- #endif
28
-
29
24
#ifndef ARMA_USE_OPENMP
30
25
// from configure test for OpenMP based on how R is configured, and whether g++ new enough
31
26
@ARMA_HAVE_OPENMP @
You can’t perform that action at this time.
0 commit comments