This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.
>To: address@hidden >From: "Yoshihiro Yamasaki" <address@hidden> >Subject: netcdf installation problem >Organization: UCAR/Unidata >Keywords: 200206131951.g5DJpHJ28660 Hi, > I just sent you an attached file but I forgot to mention > that is is a tar file. > > I am re-sending with a .tar name OK, thanks. From the output of "make test", it looks like it is trying to build the Fortran90 interface without having first built the Fortran-77 interface (on which the Fortran 90 interface depends). I see you are using the Portland Group Fortran 90 compiler for both Fortran 77 and Fortran 90 from your environment variable settings: F90=/opt/pgi/linux86/bin/pgf90 FC=opt/pgi/linux86/bin/pgf90 FFLAGS=-O -w but the output log from running configure shows: checking user-defined Fortran-77 compiler "opt/pgi/linux86/bin/pgf90"... failed to compile test program configure: warning: The Fortran-77 interface will not be built This is the root of the problem. Apparently you left out the leading "/" when specifying the FC environment variable, which should be: FC=/opt/pgi/linux86/bin/pgf90 instead of FC=opt/pgi/linux86/bin/pgf90 Please let address@hidden know if this doesn't solve the problem. --Russ _____________________________________________________________________ Russ Rew UCAR Unidata Program address@hidden http://www.unidata.ucar.edu