Thanks,
I had this problem with the Intel Compiler 12.1 and your suggestion to cut down the size of util_version.F worked.
I didn't even have to use gfortran.
Andy
Quote:Edoapra May 16th 4:16 pmRaffaella,
ifort 11 is fine.
The problem is this the file $NWCHEM_TOP/src/uti/util_version.F. Since it's a very long file (but -- frankly speaking -- not very useful),
ifort has some hiccups while processing it.
Here is how to overcome the problem
cd $NWCHEM_TOP/src/util
head -1 util_version.F > new.F
tail -1 util_version.F >>new.F
mv util_version.F bigv.F
mv new.F util_version.F
make FC=gfortran
cd ..
make FC=gfortran link
Please let me know if this works for you, too.
Edo
|