Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Building R Packages using Alternate GCC

Tags:

The systems I work with have GCC 4.5 (experimental) in /usr/local/bin/gcc which has proven to be problematic for some R packages. I would like to instead use system GCC in /usr/bin/gcc.

I have tried setting CC and CXX in the Bash configuration files (.bashrc, .bash_profile etc.) as well as on the command line, but although Bash recognizes the change, R does not.

How can I get R to use the version of GCC in /usr/bin instead of the one in /usr/local/bin/?

like image 628
Ryan R. Rosario Avatar asked Oct 24 '09 04:10

Ryan R. Rosario


2 Answers

This is not that well documented (e.g. I failed to locate it in either 'R Extension' or 'R Admin' right now) but Brian Ripley mentioned it a few times on the lists.

Basically, at R compile time, settings are registered and the stored in $R_HOME/etc/Makeconf. One possibility is to edit that file directly, but you may not have root privileges or may not want to affect all other users. So the better may be to create

~/.R/Makevars 

with entries

CC=gcc-4.4 CXX=g++-4.4 

plus whichever optmisation flags etc you want to set. That will the affect all subsequent uses of R CMD INSTALL or R CMD check or ... that you run.

Other files in $R_HOME/etc/ can similarly be overridden locally from ~/.R/.

like image 161
Dirk Eddelbuettel Avatar answered Oct 06 '22 07:10

Dirk Eddelbuettel


I had a very similar problem.

What worked for me was to define a project directory (rstudio can do that for you), and then add a .Renviron file that modifies the PATH and LD_LIBRARY_PATH, to include the directory with the new gcc. In your case, for example, the .Renviron will look something like:

LD_LIBRARY_PATH=/usr/local/bin/gcc/lib:/usr/local/bin/gcc/lib64:/usr/local/bin/gcc/libexec:other paths

PATH=/usr/local/bin/gcc/bin:/usr/local/bin:other paths

like image 20
Gil Hornung Avatar answered Oct 06 '22 07:10

Gil Hornung