fortran - How do I set the correct compiler to use the -fastsee option -
how set correct complier use -fastsee
option in fortran? error i'm getting:
mod5.2.0.0: make -f makef90_5.2.0.0 gfortran -fastsse -c src_5.2.0.0/modtrn.f -o obj90_5.2.0.0/modtrn.o f951: error: unrecognized command line option "-fastsse" make: * [obj90_5.2.0.0/modtrn.o] error 1
-fastsse
optimisation option of pgf
(the portland group fortran compiler). executable typically called pgf90
or pgf95
. how make build use pgf instead of gfortran specific build process of application trying build. (you try make fc=pgf90
, stab in dark. better inspect makefile and/or installation docs.)
Comments
Post a Comment