Makevars.win 597 B

1234567891011121314
  1. ## With R 3.1.0 or later, you can uncomment the following line to tell R to
  2. ## enable compilation with C++11 (where available)
  3. ##
  4. ## Also, OpenMP support in Armadillo prefers C++11 support. However, for wider
  5. ## availability of the package we do not yet enforce this here. It is however
  6. ## recommended for client packages to set it.
  7. ##
  8. ## And with R 3.4.0, and RcppArmadillo 0.7.960.*, we turn C++11 on as OpenMP
  9. ## support within Armadillo prefers / requires it
  10. CXX_STD = CXX11
  11. PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS)
  12. PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)