4:16:48 PM PDT - Wed, May 16th 2012 |
|
need to shrink util_version.F
|
Raffaella,
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
|