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
# Simply run `autoconf` from the project root directory
AC_INIT
AC_LANG(C++)
# Check for c++17 availability
CXX17=`"${R_HOME}/bin/R" CMD config CXX17`
if test -z "$CXX17"; then
AC_MSG_ERROR([No C++17 compiler is available])
fi
# This seems to be the preferred way to get compiler arguments. Not sure what to do with these.
# c.f. https://cran.r-project.org/doc/manuals/r-devel/R-exts.html#C-standards and https://cran.r-project.org/doc/manuals/r-devel/R-exts.html#Using-C_002b_002b-code