search for: r_unzipcmd

Displaying 18 results from an estimated 18 matches for "r_unzipcmd".

2015 Aug 29
2
Having both R-current and R-devel installed on Ubuntu
...el > > # 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"...
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
...t; # 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...
2016 Nov 11
1
installing R-devel on ubuntu
...hanks 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++" CXXFLAGS="-ggdb -pipe -Wall -pedantic" FC="ccache gfortran" F77="ccache gfo...
2017 Apr 06
3
failure of make check-all
...ot; < [61] "R_PLATFORM" "R_PRINTCMD" < [63] "R_PROFILE" "R_PROFILE_USER" < [65] "R_RD4PDF" "R_SESSION_TMPDIR" < [67] "R_SHARE_DIR" "R_SYSTEM_ABI" < [69] "R_TEXI2DVICMD" "R_UNZIPCMD" < [71] "R_VERSION" "R_ZIPCMD" < [73] "SED" "SESSION" < [77] "SHELL" "SHLVL" < [79] "SSH_AGENT_PID" "SSH_AUTH_SOCK" < [81] "TAR" "TERM" < [83] "TEX...
2017 Apr 06
0
failure of make check-all
...[61] "R_PLATFORM" "R_PRINTCMD" > < [63] "R_PROFILE" "R_PROFILE_USER" > < [65] "R_RD4PDF" "R_SESSION_TMPDIR" > < [67] "R_SHARE_DIR" "R_SYSTEM_ABI" > < [69] "R_TEXI2DVICMD" "R_UNZIPCMD" > < [71] "R_VERSION" "R_ZIPCMD" > < [73] "SED" "SESSION" > < [77] "SHELL" "SHLVL" > < [79] "SSH_AGENT_PID" "SSH_AUTH_SOCK" > < [81] "TAR" "TERM" > &l...
2017 Apr 19
0
R 3.4 has broken C++11 support
...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" \ CFLAGS="-ggdb -pipe -std=gnu99 -Wall -pedantic" \ CXX="ccache g++" \ CXXFLAGS="-ggdb -...
2014 Apr 24
1
50% performance of custom R build compared to PPA R for a command
...rtran -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="-ggdb -pipe -Wall -pedantic" FC="gfortran" F77="gfortran" MAKE="make...
2015 Oct 14
0
gcc ubsan alignement test --minimal gcc version?
...tex-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 -fsanitize=address,undefined" CXX="g++ -fsanitize=address,undefined"...
2024 Jan 10
1
Sys.which() caching path to `which`
Hello R-devel, Currently on Unix-like systems, Sys.which incorporates the absolute path to the `which` executable, obtained at the configure stage: > ## hopefully configure found [/usr]/bin/which > which <- "@WHICH@" > if (!nzchar(which)) { > warning("'which' was not found on this platform") This poses a problem for the Spack package
2015 Oct 19
1
R 3.2.2 - make check and install package hang
...FORM x86_64-unknown-linux-gnu R_PRINTCMD lpr R_RD4PDF times,hyper R_SESSION_TMPDIR /tmp/Rtmphn5m15 R_SHARE_DIR /cm/shared/apps/R/3.2.1/lib64/R/share R_SYSTEM_ABI linux,gcc,gxx,gfortran,? R_TEXI2DVICMD /usr/bin/texi2dvi R_UNZIPCMD /usr/bin/unzip R_ZIPCMD /usr/bin/zip SED /bin/sed SGE_ROOT /cm/shared/apps/uge/8.2.1 SHELL /bin/bash SHLVL 1 SSH_ASKPASS /usr/libexec/openssh/gnome-ssh-askpass TAR /bin...
2017 Sep 16
1
R_LIBS_USER not in libPaths
I have not intentionally set R_LIBS_USER. I looked for an Renviron.site file but did not see it in R/etc or my home directory. The strange part is that if I print Sud.getenv I see a value for R_LIBS_USER. However, this directory is not showing under libPaths. I though .libPaths should contain R_LIBS_USER. I also noticed that R related variables are not in the system or user variables because I
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
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)
2015 Oct 17
3
R 3.2.2 - make check and install package hang
Hello Everyone, After trying several ways to compile R 3.2.2 without luck, I?m reaching out for help. The ?make check? does not hanges for some reason and when trying to install a package it cannot list the download sites (see below). What could be the problem? ./configure --enable-R-shlib --enable-BLAS-shlib hostname = test uname -m = x86_64 uname -r = 2.6.32-573.7.1.el6.x86_64 uname -s =
2009 Feb 21
1
Install failure (PR#13545)
..._EGREP='//bin/grep -E' ac_cv_path_GETWD=//bin/pwd ac_cv_path_GREP=//bin/grep ac_cv_path_PAGER=/usr/bin/less ac_cv_path_PERL=/usr/bin/perl ac_cv_path_PKGCONF=/usr/bin/pkg-config ac_cv_path_R_BROWSER=/usr/bin/open ac_cv_path_R_GZIPCMD=//bin/gzip ac_cv_path_R_PDFVIEWER=/usr/bin/open ac_cv_path_R_UNZIPCMD=/usr/bin/unzip ac_cv_path_R_ZIPCMD=/usr/bin/zip ac_cv_path_SED=//bin/sed ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AR=ar ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_CXXCPP=/lib/cpp ac_cv_prog_F77=gfortran ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_cc_c89= ac_cv_prog_cc_...
2005 Feb 05
2
Problems compiling (configure) R on Ubuntu linux (debian)
...ine_rl_callback_read_char=no ac_cv_lib_termcap_main=no ac_cv_lib_termlib_main=no ac_cv_objext=o ac_cv_path_GETWD=/bin/pwd ac_cv_path_PAGER=/usr/bin/less ac_cv_path_PERL=/usr/bin/perl ac_cv_path_R_BROWSER=/usr/bin/mozilla ac_cv_path_R_GZIPCMD=/bin/gzip ac_cv_path_R_PDFVIEWER=/usr/bin/xpdf ac_cv_path_R_UNZIPCMD=/usr/bin/unzip ac_cv_path_R_ZIPCMD=/usr/bin/zip ac_cv_path_SED=/bin/sed ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AR=ar ac_cv_prog_AWK=mawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_CXXCPP='g++ -E' ac_cv_prog_F77=fc ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_p...
2003 Mar 29
1
compling errors for sun unix (PR#2702)
...KEINDEX=/usr/local/IT/bin/makeindex ac_cv_path_MAKEINFO_CMD=/usr/local/IT/bin/makeinfo ac_cv_path_PAGER=/usr/bin/less ac_cv_path_PDFLATEX=/usr/local/IT/bin/pdflatex ac_cv_path_PDFTEX=/usr/local/IT/bin/pdftex ac_cv_path_PERL=/usr/local/bin/perl ac_cv_path_R_BROWSER=/usr/local/bin/netscape ac_cv_path_R_UNZIPCMD=/usr/bin/unzip ac_cv_path_R_ZIPCMD=/usr/bin/zip ac_cv_path_TEX=/usr/local/IT/bin/tex ac_cv_path_install='/apps/ipw-1.1/etc/install -c' ac_cv_prog_AR=ar ac_cv_prog_AWK=nawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_CXXCPP='g++ -E' ac_cv_prog_F77=g77 ac_cv_prog_YACC='bison -y'...