Harim Garcia Lamont wrote: > Hi, im new with Makefiles and configure scipts. I tried with sunstudio > compilers. I checked r-project's installing manual and they specify that: > > CC="cc -xc99" > CPPFLAGS=-I/opt/csw/include > CFLAGS="-O -xlibmieee" > F77=f95 > FFLAGS=-O4 > CXX=CC > CXXFLAGS=-O > FC=f95 > FCFLAGS=$FFLAGS > LDFLAGS=-L/opt/csw/lib > SHLIB_CXXLDFLAGS="-G -lCstd" > > > I need to do this changes inside configure file? >
# Assuming a bash/sh shell ./configure --prefix=/other-stuff-here CC="cc -xc99" CPPFLAGS="-I/opt/csw/include" ... Hope this helps unless I'm missing what your original question was...