|
The Makefile in the ./build/UNX/Makefile_gnu directory needs the following changes:
Before:
66 # pgi pgf77 3.0
67 ifdef PGI_F77
68 FC = pgf77 -O2 -Munroll -tp p6 -Mnoframe -Mbyteswapio
69 LD = pgf77 -O2 -Munroll -tp p6 -Mnoframe -Mbyteswapio
70 endif
After:
66 # pgi pgf77 3.0
67 ifdef PGI_F77
68 FC = pgf90 -O2 -Munroll -Mnoframe -Mbyteswapio -fastsse
69 LD = pgf90 -O2 -Munroll -Mnoframe -Mbyteswapio -fastsse
70 endif
Before:
131 ifdef PGI_F77
132 FC0 = pgf77 -c -Mbyteswapio
133 else
After:
131 ifdef PGI_F77
132 FC0 = pgf90 -c -Mbyteswapio -fastsse
133 else
|