# RcppArmadillo delegates dense linear algebra to the BLAS/LAPACK that R
# was built with; they must be linked explicitly (macOS tolerates the
# undefined symbols at link time, Windows does not).
# No CXX_STD is set on purpose: the C++11 features used here (lambdas) are
# the default standard from R 4.0.0 on (see Depends), and declaring a
# standard below C++17 raises an R CMD check NOTE.
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
