The tarballs have been updated with a pre-generated util_ga_version.F
This is going to prevent the compilation failure you have observed.
The source of the routine is the following
subroutine util_ga_version(garev)
implicit none
character*(*) garev
garev="10587"
end
However, since you are not using GA shipped with NWChem (a choice that I don't personally agree with),
it would be better if you replace the garev= line with something that shows the origin of the ga used.
For example
subroutine util_ga_version(garev)
implicit none
character*(*) garev
garev="external ga 5.4 rpm"
end
|