cygwin - PETSC Build Error : C compiler does not work -
i trying install petsc on cygwin terminal invoking following command..
./configure --with-cc='win32fe cl' --with-fc='win32fe ifort' --with-cxx='win32fe cl' --download-fblaslapack
and
/configure --with-cc=cl --with-cxx=g++ --with-fc=gfortran --download-fblaslapack --download-mpich
it shoots me below error:
c compiler provided -with-cc=win32fe cl not work c compiler provided -with-cc=cl not work
i'm new unix platform please me on this.
try :
./configure --with-cc="win32fe\ cl" --with-fc="win32fe\ ifort" --with-cxx="win32fe\ cl" --download-fblaslapack
note backslashes added before whitespaces escape them.
Comments
Post a Comment