search for: r_batchsave

Displaying 20 results from an estimated 22 matches for "r_batchsave".

2005 Jul 29
2
R_BATCHSAVE setting in config.site
Hi, I just downloaded and installed last nights version of R-patched and decided that I'd set R_BATCHSAVE=--no-save in config.site, which I haven't done before. Since the comment above R_BATCHSAVE in config.site says: ## The default behavior of R if it encounters EOF in batch mode. ## Set this to one of '--save' or '--no-save' depending whether you ## want automatic saving of...
2016 Feb 05
2
building R Devel --enable-R-shlib
...has been a while since my last R Devel build, and now I'm running into an issue I'm not sure how to isolate. After updating to the latest SVN sources, and using: ---<--------------------cut here---------------start------------------->--- tools/rsync-recommended R_PAPERSIZE=letter \ R_BATCHSAVE="--no-save --no-restore" \ R_BROWSER=xdg-open \ LIBnn=lib \ ./configure \ --enable-R-shlib \ --enable-strict-barrier \ --with-blas \ --with-lapack \ --with-readline \ --with-tcl-config=/usr/lib/tcl8.6/tclConfig.sh \ --with-tk-config=/usr/lib/tk8.6/tkConfig.sh m...
2015 Aug 29
2
Having both R-current and R-devel installed on Ubuntu
...Also > below. > > Hope this helps, Dirk > > > ## --snip here ------------------------------------------------------------------------------ > ## ~/bin/build-R-devel > > #!/bin/sh > > cd ~/svn/r-devel > > # R_PAPERSIZE=letter \ > # R_BATCHSAVE="--no-save --no-restore" \ > # R_BROWSER=xdg-open \ > # PAGER=/usr/bin/pager \ > # PERL=/usr/bin/perl \ > # R_UNZIPCMD=/usr/bin/unzip \ > # R_ZIPCMD=/usr/bin/zip...
2016 Feb 06
1
building R Devel --enable-R-shlib
...I'm running >> into an issue I'm not sure how to isolate. After updating to the >> latest SVN sources, and using: >> >> ---<--------------------cut >> here---------------start------------------->--- >> tools/rsync-recommended R_PAPERSIZE=letter \ R_BATCHSAVE="--no-save >> --no-restore" \ R_BROWSER=xdg-open \ LIBnn=lib \ ./configure \ >> --enable-R-shlib \ --enable-strict-barrier \ > I don't set that but it shouldn't bite ... I removed the --enable-strict-barrier and kept everything else the same and compilation went f...
2012 Aug 08
2
Having both R-current and R-devel installed on Ubuntu
Dear List, Having used R on Windows for years, I have recently installed Ubuntu as a virtual machine. I admit that I am quite new to the linux world. Installing R (current version = 2.15.1) went smoothly, but I would like to have both the current version of R and R-devel installed. I've searched the net for info on doing this but so far without luck. Can anyone help me getting this up and
2015 Aug 29
0
Having both R-current and R-devel installed on Ubuntu
...> Hope this helps, Dirk | > | > | > ## --snip here ------------------------------------------------------------------------------ | > ## ~/bin/build-R-devel | > | > #!/bin/sh | > | > cd ~/svn/r-devel | > | > # R_PAPERSIZE=letter \ | > # R_BATCHSAVE="--no-save --no-restore" \ | > # R_BROWSER=xdg-open \ | > # PAGER=/usr/bin/pager \ | > # PERL=/usr/bin/perl \ | > # R_UNZIPCMD=/usr/bin/unzip \ | > # R_ZIPCMD=/usr/bi...
2016 Nov 11
1
installing R-devel on ubuntu
...rom the build of R-devel and trying over and over again so any insights are REALLY, REALLY appreciated. Thanks a lot. Mark my build-r-devel.sh file #========================================================== ## ~/bin/build-R-devel #!/bin/sh cd ~/research/svn/R-devel-build R_PAPERSIZE=letter R_BATCHSAVE="--no-save --no-restore" R_BROWSER=xdg-open PAGER=/usr/bin/pager PERL=/usr/bin/perl R_UNZIPCMD=/usr/bin/unzip R_ZIPCMD=/usr/bin/zip R_PRINTCMD=/usr/bin/lpr LIBnn=lib AWK=/usr/bin/awk CC="ccache gcc" CFLAGS="-ggdb -pipe -std=gnu99 -Wall -pedantic" CXX="ccache g++&q...
2016 Feb 05
0
building R Devel --enable-R-shlib
...ile since my last R Devel build, and now I'm running | into an issue I'm not sure how to isolate. After updating to the latest | SVN sources, and using: | | ---<--------------------cut here---------------start------------------->--- | tools/rsync-recommended | R_PAPERSIZE=letter \ | R_BATCHSAVE="--no-save --no-restore" \ | R_BROWSER=xdg-open \ | LIBnn=lib \ | ./configure \ | --enable-R-shlib \ | --enable-strict-barrier \ I don't set that but it shouldn't bite ... | --with-blas \ | --with-lapack \ ... and I turn those off. | --with-readline \ |...
2016 Feb 09
1
build fails with --enable-strict-barrier
...thly with this switch (--enable-strict-barrier) on, but now it fails on my Debian system (found the culprit after posting on r-sig-debian). Configuring and building with: ---<--------------------cut here---------------start------------------->--- tools/rsync-recommended R_PAPERSIZE=letter \ R_BATCHSAVE="--no-save --no-restore" \ R_BROWSER=xdg-open \ LIBnn=lib \ ./configure \ --enable-R-shlib \ --enable-strict-barrier \ --with-blas \ --with-lapack \ --with-readline \ --with-tcl-config=/usr/lib/tcl8.6/tclConfig.sh \ --with-tk-config=/usr/lib/tk8.6/tkConfig.sh m...
2017 Apr 19
0
R 3.4 has broken C++11 support
...pic CXX11STD = -std=gnu++11 CXX14 = ccache g++ CXX14FLAGS = -ggdb -pipe -Wall -pedantic CXX14PICFLAGS = -fpic CXX14STD = CXX17 = CXX17FLAGS = CXX17PICFLAGS = CXX17STD = I call configure in build shell script (which has not changed in years) with R_PAPERSIZE=letter \ R_BATCHSAVE="--no-save --no-restore" \ R_BROWSER=xdg-open \ PAGER=/usr/bin/pager \ PERL=/usr/bin/perl \ R_UNZIPCMD=/usr/bin/unzip \ R_ZIPCMD=/usr/bin/zip \ R_PRINTCMD=/usr/bin/lpr \ LIBnn=lib \ AWK=/usr/bin/awk \ CC="ccache gcc...
2014 Apr 24
1
50% performance of custom R build compared to PPA R for a command
...-L/usr/lib/R/lib -lR For R-devel I see: ccache gcc -shared -L/usr/local/lib -o bootstrap.so boott.o -lgfortran -lm -lquadmath -L/usr/local/lib/R-devel/lib/R/lib -lR My install script for the local build is based on Dirk's script [1]. In particular, my configure command is: R_PAPERSIZE=letter R_BATCHSAVE="--no-save --no-restore" R_BROWSER=xdg-open PAGER=/usr/bin/pager PERL=/usr/bin/perl R_UNZIPCMD=/usr/bin/unzip R_ZIPCMD=/usr/bin/zip R_PRINTCMD=/usr/bin/lpr LIBnn=lib AWK=/usr/bin/awk CC="gcc" CFLAGS="-ggdb -pipe -std=gnu99 -Wall -pedantic" CXX="g++" CXXFLAGS=...
2015 Oct 14
0
gcc ubsan alignement test --minimal gcc version?
...xtra texlive-fonts-recommended texlive-generic-recommended texlive-latex-base texlive-latex-extra texlive-latex-recommended tk8.5-dev valgrind x11proto-core-dev xauth xdg-utils xfonts-base xvfb zlib1g-dev cd /tmp svn co http://svn.r-project.org/R/trunk R-devel cd /tmp/R-devel R_PAPERSIZE=letter R_BATCHSAVE="--no-save --no-restore" PAGER=/usr/bin/pager PERL=/usr/bin/perl R_UNZIPCMD=/usr/bin/unzip R_ZIPCMD=/usr/bin/zip R_PRINTCMD=/usr/bin/lpr LIBnn=lib AWK=/usr/bin/awk CFLAGS="-pipe -std=gnu99 -Wall -pedantic -O2" CXXFLAGS="-pipe -Wall -pedantic -O2" CC="gcc...
2015 Oct 13
2
gcc ubsan alignement test --minimal gcc version?
Dear All, I'm trying to implement the section of the manual pertaining to the gcc-ubsan test carried by CRAN on my local computer (ubuntu 14.04): http://www.stats.ox.ac.uk/pub/bdr/memtests/gcc-UBSAN/README.txt I was wondering whether someone could tell what the minimal version of the gcc tool chain needed to run the gcc-ASAN and gcc-UBSAN alignment tests on ones local
2002 Jan 15
0
errors intalling splancs and sgeostat
...; or "letter". # If left blank the system will use "a4". R_PAPERSIZE=letter # The default behavior of R if it encounters EOF in batch mode. # Set this to one of "--save" or "--no-save" depending whether you # want automatic saving of `.RData' or not. # R_BATCHSAVE= # The command which runs the C compiler. # If unspecified, a search is made for gcc and cc (in that order). # To override this choice, specify the name of the command which runs # the compiler here, for example `c89'. CC=cc # Debugging and optimization options for the C compiler. # Use thi...
2017 Apr 19
5
R 3.4 has broken C++11 support
Hi! Well, my linux distribution has very recent versions of everything, so a working C++11 compiler exists: $ gcc --version | head -n1 gcc (GCC) 6.3.1 20170306 Could wrong ./configure options be at fault here? See: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=r-devel#n40 My sessionInfo(): $ R-devel --slave -e 'sessionInfo()' | head -n3 R Under development (unstable)
2010 Jun 08
3
Question on trying to build R 2.11.1 on Tru64(aka OSF1) system
...ession ## Set this to one of '--save' or '--no-save' depending whether you ## want automatic saving of '.RData' or not. ## Note that this applies to interactive and batch use, ## but NOT to the utility R CMD BATCH ## (which defaults to --save irrespective of this setting) ## R_BATCHSAVE= ## The command which runs the C compiler. ## If unspecified, a search is made for gcc and cc (in that order). ## To override this choice, specify the name of the command which runs ## the compiler here, for example 'c89'. ## It is also convenient to set the architecture here, e.g. 'gc...
1999 Feb 09
3
Installing on 64-bit Dec or SGI
Hi all, The systems guys here in the stat dept don't seem to be able to compile R on the Dec Alphas or on the SGIs. Can anyone give them a hand? -Greg ------------------------------------------------------------------------------- Gregory R. Warnes | It is high time that the ideal of success warnes at biostat.washington.edu | be replaced by the ideal of service.
2009 Feb 21
1
Install failure (PR#13545)
...v_MAIN_FFLAGS_set= ac_cv_env_MAIN_FFLAGS_value= ac_cv_env_MAIN_LDFLAGS_set= ac_cv_env_MAIN_LDFLAGS_value= ac_cv_env_MAIN_LD_set= ac_cv_env_MAIN_LD_value= ac_cv_env_MAKE_set= ac_cv_env_MAKE_value= ac_cv_env_OBJCFLAGS_set= ac_cv_env_OBJCFLAGS_value= ac_cv_env_OBJC_set= ac_cv_env_OBJC_value= ac_cv_env_R_BATCHSAVE_set= ac_cv_env_R_BATCHSAVE_value= ac_cv_env_R_BROWSER_set= ac_cv_env_R_BROWSER_value= ac_cv_env_R_PAPERSIZE_set=set ac_cv_env_R_PAPERSIZE_value=letter ac_cv_env_R_PRINTCMD_set= ac_cv_env_R_PRINTCMD_value= ac_cv_env_SAFE_FFLAGS_set= ac_cv_env_SAFE_FFLAGS_value= ac_cv_env_SHLIB_CFLAGS_set= ac_cv_env_...
2001 Jul 25
2
Installation help
...quot; or "letter". # If left blank the system will use "a4". # R_PAPERSIZE=a4 # The default behavior of R if it encounters EOF in batch mode. # Set this to one of "--save" or "--no-save" depending whether you # want automatic saving of `.RData' or not. # R_BATCHSAVE= # The command which runs the C compiler. # If unspecified, a search is made for gcc and cc (in that order). # To override this choice, specify the name of the command which runs # the compiler here, for example `c89'. CC=/Net/local/bin/cc # Debugging and optimization options for the C compil...
1999 May 03
0
compilation of R-0.63.3 on alpha (PR#183)
...quot; or "letter". # If left blank the system will use "a4". R_PAPERSIZE=3Da4 # The default behavior of R if it encounters EOF in batch mode. # Set this to one of "--save" or "--no-save" depending whether you # want automatic saving of `.RData' or not. # R_BATCHSAVE=3D # The command which runs the C compiler. # If unspecified, a search is made for gcc and cc (in that order). # To override this choice, specify the name of the command which runs # the compiler here, for example `c89'. CC=3D"cc" # Debugging and optimization options for the C compi...