|
The Makefile in the ./build/UNX/Makefile_gnu directory needs the following changes:
Before:
65 # pgi pgf77 3.0
66 ifdef PGI_F77
67 FC = pgf77 -O2 -Munroll -tp p6 -Mnoframe -Msecond_underscore
68 LD = pgf77 -O2 -Munroll -tp p6 -Mnoframe -Msecond_underscore
69 endif
After:
65 # pgi pgf77 7.0, 7.1
66 ifdef PGI_F77
67 #..FC = pgf77 -O2 -Munroll -tp p6 -Mnoframe -Msecond_underscore
68 #..LD = pgf77 -O2 -Munroll -tp p6 -Mnoframe -Msecond_underscore
69
70 CC = pgcc -Dnographics -Dgnu -Munderscoring -fastsse
72 FC = pgf77 -Msecond_underscore -fastsse -V
73 LD = pgf77 -Msecond_underscore -fastsse -V
74
75 FC0 = pgf77 -c -Msecond_underscore -fastsse -V
76 FC1 = pgf77 -c -Msecond_underscore -fastsse -V
77 FC2 = pgf77 -c -Msecond_underscore -fastsse -V
78
79 endif
Before:
119 ifdef PGI_F77
120 FC0 = pgf77 -c
121 else
After:
129 ifdef PGI_F77
130 FC0 = pgf77 -c -Msecond_underscore -fastsse -V
131 #..FC0 = pgf77 -c
132 else
|