search for: r_makevars_us

Displaying 5 results from an estimated 5 matches for "r_makevars_us".

Did you mean: r_makevars_user
2015 May 11
1
LDFLAGS defined in R_MAKEVARS_USER file is ignored for R CMD SHLIB on Windows
Example input and output to reproduce this can be found at https://gist.github.com/jimhester/b7f05f50794c88e44b17. I tested this attempting to compile the [digest]( http://cran.r-project.org/web/packages/digest/index.html) package, `run.sh` and `run.bat` were both run in the package source directory on Ubuntu 14.01 and Windows 7 respectively. In particular while the `CFLAGS` values were properly
2016 Sep 27
4
src/Makevars ignored ?
.../etc${R_ARCH}/Makevars.site"} if test -f "${R_MAKEVARS_SITE}"; then makefiles="${makefiles} -f ${R_MAKEVARS_SITE}" fi fi if test "${personal}" = "yes"; then if test "${R_OSTYPE}" = "windows"; then if test -f "${R_MAKEVARS_USER}"; then makefiles="${makefiles} -f ${R_MAKEVARS_USER}" elif test ${R_ARCH} = "/x64" -a -f "${HOME}/.R/Makevars.win64"; then makefiles="${makefiles} -f ${HOME}/.R/Makevars.win64" elif test -f "${HOME}/.R/Makevars.win";...
2016 Sep 27
0
src/Makevars ignored ?
...ot;} > if test -f "${R_MAKEVARS_SITE}"; then > makefiles="${makefiles} -f ${R_MAKEVARS_SITE}" > fi > fi > if test "${personal}" = "yes"; then > if test "${R_OSTYPE}" = "windows"; then > if test -f "${R_MAKEVARS_USER}"; then > makefiles="${makefiles} -f ${R_MAKEVARS_USER}" > elif test ${R_ARCH} = "/x64" -a -f "${HOME}/.R/Makevars.win64"; then > makefiles="${makefiles} -f ${HOME}/.R/Makevars.win64" > elif test -f "${HOME}/.R/Make...
2016 Sep 27
2
src/Makevars ignored ?
Hello, I'm tring to install a Rpackage that holds some C//C++ code as far as I understood the R library generic compilation mechanism, compilation of C//C++ sources is controled 1) at system level by the ocntentos RHOME/etc/Makeconf 2) at user level by the content of ~/.R/Makevars 3) at package level by the content of src/Makevars Problem I have is that src/Makevars is ignored see
2013 May 16
0
R 3.0.1 is released
...The old behaviour can be obtained with the new options --no-user-files and --no-site-files. PACKAGE INSTALLATION: o Alternatives to the site and user customization files Makevars.site and ~/.R/Makevars can be specified _via_ the environment variables R_MAKEVARS_SITE and R_MAKEVARS_USER respectively. These can be used to suppress the use of the default files by setting an empty value (where possible) or a non-existent path. BUG FIXES: o sys.source() did not report error locations when keep.source = TRUE. o as.POSIXct.numeric was coercing ori...