Displaying 5 results from an estimated 5 matches for "r_makevars_sit".
Did you mean:
r_makevars_site
2019 Jan 30
1
R_MAKEVARS_SITE for multiple archs
Dear all,
is there a way to set R_MAKEVARS_SITE (or something else), so that R
finds Makevars.site for multiple archs?
AFAICT the only option is to put the arch directories in R.home(). But
I might be missing something.
My goal is to set different make variables for 32-bit and 64-bit R on
Windows, without modifying R.home().
Thank you,
Gabor
2016 Sep 27
4
src/Makevars ignored ?
...ndadr and consistent given the level
priority is package specific stuff overwrite user configuration that
overwrite system default
mechanism of Makevars is NOT consistent
furthermore diggng in $RHOME/bin/config one can see the following
if test "${site}" = "yes"; then
: ${R_MAKEVARS_SITE="${R_HOME}/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...
2016 Sep 27
0
src/Makevars ignored ?
...ty is package specific stuff overwrite user configuration that
> overwrite system default
>
> mechanism of Makevars is NOT consistent
>
>
> furthermore diggng in $RHOME/bin/config one can see the following
>
>
> if test "${site}" = "yes"; then
> : ${R_MAKEVARS_SITE="${R_HOME}/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}" = "w...
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
...iable HOME set.
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.numer...