Hello, I install R under Mandrake Linux 8.2. R itself work fine, but I had an error to install packages, i.e. fields, geoR and geoRglm : $: R CMD INSTALL geoRglm_0.4-3.tar.gz Installing *source* package `geoRglm' ... libs gcc-3.0.1 -I/usr/lib/R/include -I/usr/local/include -mieee-fp -D__NO_MATH_INLINES -fPIC -O3 -fomit-frame-pointer -pipe -mcpu=pentiumpro -march=i586 -fno-fast-math -fno-strength-reduce -c geoRgeoRglm.c -o geoRgeoRglm.o make: gcc-3.0.1 : Commande introuvable make: *** [geoRgeoRglm.o] Erreur 127 ERROR: compilation failed for package `geoRglm I suppose that the version of my compiler is not correct, but I didn't find where to change that settings. -- Cordialement. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Emmanuel POIZOT CNAM/INTECHMER B.P. 324 50103 Cherbourg Cedex Tèl : 33 (0)2 33 88 73 42 Fax : 33 (0)2 33 88 73 39 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel 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-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
On Fri, 26 Apr 2002 poizot@cnam.fr wrote:> Hello, > > I install R under Mandrake Linux 8.2. > R itself work fine, but I had an error to install packages, i.e. fields, geoR > and geoRglm : > > $: R CMD INSTALL geoRglm_0.4-3.tar.gz > Installing *source* package `geoRglm' ... > libs > gcc-3.0.1 -I/usr/lib/R/include -I/usr/local/include -mieee-fp > -D__NO_MATH_INLINES -fPIC -O3 -fomit-frame-pointer -pipe -mcpu=pentiumpro > -march=i586 -fno-fast-math -fno-strength-reduce -c geoRgeoRglm.c -o > geoRgeoRglm.o > make: gcc-3.0.1 : Commande introuvable > make: *** [geoRgeoRglm.o] Erreur 127 > ERROR: compilation failed for package `geoRglm > > I suppose that the version of my compiler is not correct, but I didn't find > where to change that settings.You could change it in R/etc/Makeconf, but it might not work. If you don't have the compiler used to build R there is no guarantee that the flags and options will be correct or that the output will be binary compatible. -thomas Thomas Lumley Asst. Professor, Biostatistics tlumley@u.washington.edu University of Washington, Seattle -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel 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-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
On Fri, 26 Apr 2002 poizot@cnam.fr wrote:> Hello, > > I install R under Mandrake Linux 8.2. > R itself work fine, but I had an error to install packages, i.e. fields, geoR > and geoRglm : > > $: R CMD INSTALL geoRglm_0.4-3.tar.gz > Installing *source* package `geoRglm' ... > libs > gcc-3.0.1 -I/usr/lib/R/include -I/usr/local/include -mieee-fp > -D__NO_MATH_INLINES -fPIC -O3 -fomit-frame-pointer -pipe -mcpu=pentiumpro > -march=i586 -fno-fast-math -fno-strength-reduce -c geoRgeoRglm.c -o > geoRgeoRglm.o > make: gcc-3.0.1 : Commande introuvable > make: *** [geoRgeoRglm.o] Erreur 127 > ERROR: compilation failed for package `geoRglmYou are using the RPM package compiled for Mandrake 8.1, which does have gcc-3.0.1. You need a Mandrake 8.2 package. Mandrake 8.2 distribution includes an RPM package for R 1.4.1 which for some strange reason is not distributed on the CD's but is downloadable from the mandrake 8.2 mirror sites. Unfortunately, as I have already signalled to the packager (ghibo@mandrakesoft.com), there seem to be a couple of small bugs in this package; specifically on uninstalling it the preun script produces an error message. I would therefore not trust it. You can do one of various things: 1) Download the SRPM from CRAN and recompile the RPM for your system. That's what the SRPM is there for. The readme file explains what you need to do. 2) Wait a few days. When R 1.5.0 comes out I mean to produce RPM's for Mandrake 8.1 and 8.2 before erasing 8.1 from my HD and going over to 8.2 completely. 3) I think this dirty hack would work quite well: just make a symlink ln -s /usr/bin/gcc-3.0.3 /usr/bin/gcc-3.0.1 Mandrake 8.2 has gcc-3.0.3. -- Michele Alzetta -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel 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-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._