Hi,
I am trying to install R 1.4.1 on and SGI using 64 bit. When I configure
I get...
R is now configured for mips-sgi-irix6.5
Source directory: .
Installation directory: /usr/local
C compiler: cc -64 -OPT:IEEE_NaN_inf=ON -g
C++ compiler: CC -OPT:IEEE_NaN_inf=ON -g
FORTRAN compiler: f77 -OPT:IEEE_NaN_inf=ON -g
X11 support: yes
Gnome support: no
Tcl/Tk support: no
R profiling support: yes
R as a shared library: no
When I use gmake after a 'few' WARNINGS like .....
cc-1185 cc: WARNING File = g_alab_her.c, Line = 247
An enumerated type is mixed with another type.
GConvert(&currX, &currY, g_unit, INCHES, dd);
^
It errors with...
building package `base'
../../../library/base/R/base is unchanged
Cannot create
../../../library/base/../../../src/library/base/DESCRIPTION - No such
file or directory
../../../library/base/../../../src/library/base/DESCRIPTION - No such
file or directory
../../../library/base/../../../src/library/base/DESCRIPTION - No such
file or directory
Cannot access
./../../library/base/../../../src/library/base/DESCRIPTION: No such
file or directory
gmake[3]: *** [all] Error 1
gmake[3]: Leaving directory
`/u2/people/neuhausi/build/R/R-1.4.1/src/library/base'
gmake[2]: *** [R] Error 1
gmake[2]: Leaving directory
`/u2/people/neuhausi/build/R/R-1.4.1/src/library'
gmake[1]: *** [R] Error 1
gmake[1]: Leaving directory `/u2/people/neuhausi/build/R/R-1.4.1/src'
gmake: *** [R] Error 1
Help is greatly appreciated.
Isaac
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
R in IRIX 64-bit
3 messages · Isaac Neuhaus, Luke Tierney
It looks like you are using 32-bit Fortran. I used env CC="cc -64" ./configure --with-f77="f77 -64" --with-tcltk=no from tcsh to confiugre a 64-bit build on IRIX 6.5, if that helps. luke
On Mon, Feb 04, 2002 at 11:41:53AM -0500, Isaac Neuhaus wrote:
Hi,
I am trying to install R 1.4.1 on and SGI using 64 bit. When I configure
I get...
R is now configured for mips-sgi-irix6.5
Source directory: .
Installation directory: /usr/local
C compiler: cc -64 -OPT:IEEE_NaN_inf=ON -g
C++ compiler: CC -OPT:IEEE_NaN_inf=ON -g
FORTRAN compiler: f77 -OPT:IEEE_NaN_inf=ON -g
X11 support: yes
Gnome support: no
Tcl/Tk support: no
R profiling support: yes
R as a shared library: no
When I use gmake after a 'few' WARNINGS like .....
cc-1185 cc: WARNING File = g_alab_her.c, Line = 247
An enumerated type is mixed with another type.
GConvert(&currX, &currY, g_unit, INCHES, dd);
^
It errors with...
building package `base'
../../../library/base/R/base is unchanged
Cannot create
../../../library/base/../../../src/library/base/DESCRIPTION - No such
file or directory
../../../library/base/../../../src/library/base/DESCRIPTION - No such
file or directory
../../../library/base/../../../src/library/base/DESCRIPTION - No such
file or directory
Cannot access
./../../library/base/../../../src/library/base/DESCRIPTION: No such
file or directory
gmake[3]: *** [all] Error 1
gmake[3]: Leaving directory
`/u2/people/neuhausi/build/R/R-1.4.1/src/library/base'
gmake[2]: *** [R] Error 1
gmake[2]: Leaving directory
`/u2/people/neuhausi/build/R/R-1.4.1/src/library'
gmake[1]: *** [R] Error 1
gmake[1]: Leaving directory `/u2/people/neuhausi/build/R/R-1.4.1/src'
gmake: *** [R] Error 1
Help is greatly appreciated.
Isaac
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Luke Tierney University of Minnesota Phone: 612-625-7843 School of Statistics Fax: 612-624-8868 313 Ford Hall, 224 Church St. S.E. email: luke at stat.umn.edu Minneapolis, MN 55455 USA WWW: http://www.stat.umn.edu -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Thanks. We finnallly got it to work. We run the configure as you indicate and we also found that the installation is very sensitive to the install program. We (Bob Bruccoleri (bruc at bms.com)) used the following script to build it: #!/bin/ksh -x export MAKE=/usr/local/bin/gmake gmake clean rm -f config.cache config.status rm -f modules/*.so find . \( -name "*.o" -o -name "*.a" -o -name "*.so" \) -print CC="cc -64" \ CXX="CC -64" \ PERL="/usr/local64/bin/perl" \ ./configure --with-f77="f77 -64" --with-readline --with-x --without-tcltk --prefix=/usr/local64 --verbose gmake gmake check gmake install Isaac
Luke Tierney wrote:
It looks like you are using 32-bit Fortran. I used env CC="cc -64" ./configure --with-f77="f77 -64" --with-tcltk=no from tcsh to confiugre a 64-bit build on IRIX 6.5, if that helps. luke On Mon, Feb 04, 2002 at 11:41:53AM -0500, Isaac Neuhaus wrote:
Hi,
I am trying to install R 1.4.1 on and SGI using 64 bit. When I configure
I get...
R is now configured for mips-sgi-irix6.5
Source directory: .
Installation directory: /usr/local
C compiler: cc -64 -OPT:IEEE_NaN_inf=ON -g
C++ compiler: CC -OPT:IEEE_NaN_inf=ON -g
FORTRAN compiler: f77 -OPT:IEEE_NaN_inf=ON -g
X11 support: yes
Gnome support: no
Tcl/Tk support: no
R profiling support: yes
R as a shared library: no
When I use gmake after a 'few' WARNINGS like .....
cc-1185 cc: WARNING File = g_alab_her.c, Line = 247
An enumerated type is mixed with another type.
GConvert(&currX, &currY, g_unit, INCHES, dd);
^
It errors with...
building package `base'
../../../library/base/R/base is unchanged
Cannot create
../../../library/base/../../../src/library/base/DESCRIPTION - No such
file or directory
../../../library/base/../../../src/library/base/DESCRIPTION - No such
file or directory
../../../library/base/../../../src/library/base/DESCRIPTION - No such
file or directory
Cannot access
./../../library/base/../../../src/library/base/DESCRIPTION: No such
file or directory
gmake[3]: *** [all] Error 1
gmake[3]: Leaving directory
`/u2/people/neuhausi/build/R/R-1.4.1/src/library/base'
gmake[2]: *** [R] Error 1
gmake[2]: Leaving directory
`/u2/people/neuhausi/build/R/R-1.4.1/src/library'
gmake[1]: *** [R] Error 1
gmake[1]: Leaving directory `/u2/people/neuhausi/build/R/R-1.4.1/src'
gmake: *** [R] Error 1
Help is greatly appreciated.
Isaac
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
-- Luke Tierney University of Minnesota Phone: 612-625-7843 School of Statistics Fax: 612-624-8868 313 Ford Hall, 224 Church St. S.E. email: luke at stat.umn.edu Minneapolis, MN 55455 USA WWW: http://www.stat.umn.edu
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._