I ran into a problem compiling R-Studio Server on a Raspberry Pi2 (Raspbian/Debian Wheezy). I ran the required scripts to install all dependencies which gave me no error. I than ran cmake
with:
cmake .. -DRSTUDIO_TARGET=Server -DCMAKE_BUILD_TYPE=Release
which returned:
-- Boost version: 1.50.0
-- Found R: /usr/lib/R
-- Configuring done
-- Generating done
-- Build files have been written to: /home/ME/rstudio/build
running sudo make
as stated in the README returns:
Buildfile: /home/ME/rstudio/src/gwt/build.xml
ext:
and than hangs. The top
command gives me 100% CPU load for java on one of the cores until I interrupt the process(CTRL+C).This returns:
src/gwt/CMakeFiles/gwt_build.dir/build.make:52: recipe for target 'gwt_build' failed
make[2]: *** [gwt_build] Interrupt
CMakeFiles/Makefile2:93: recipe for target 'src/gwt/CMakeFiles/gwt_build.dir/all' failed
make[1]: *** [src/gwt/CMakeFiles/gwt_build.dir/all] Interrupt
Makefile:133: recipe for target 'all' failed
make: *** [all] Interrupt
Any idea on how to complete the installation?
I am running R 3.1.2 which works without problem. The system should be up to date as well. Before someone asks about why am I installing an R-Server on a Pi2 I want to say that this is more a learning exercise for me about how to administer such a system. I have to admit that all this is pretty new to me any help is appreciated.