undefined reference to ' gfortran copy string'


Click here for full thread
Forum Vet
Rwohlhueter,
Do you happen to have more than one gcc/gfortran compiler version installed on your linux computer?
A possible explanation of your problem is that you might have compiled the lapack directory with an older version of
gfortran, then relinked with a newer one. If this is the case, please try to do the following to see if
you can fix the problem

cd $NWCHEM_TOP/src/lapack
make clean
make FC=gfortran
cd ..
make FC=gfortran link

Cheers, Edo