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.
>From: "Benjamin Cotton" <address@hidden> >Organization: Purdue >Keywords: 200210311528.g9VFSLX21227 LDM 5.2.1 Ben, >Alrighty, I made the changes Tom suggested (and yes, we are running on >FreeBSD). I got further this time, but I got the following error >message during % make install: > >Making `install' in directory >/net/anvil/project/ldm/ldm-5.2.1/src/pqcreate > >cc -g -I../config -I. -I../misc -I../ulog -I../protocol -I../pq >-DHAVE_CONFIG_H pqcreate.o -L.. -lldm -lm -o pqcreate >/usr/libexec/elf/ld: cannot find -lldm >*** Error code 1 This is saying that the file libldm.a does not exist in your /net/anvil/project/ldm/ldm-5.2.1/src directory. Please verify this. >What do you suggest next? If libldm.a doesn't exist in /net/anvil/project/ldm/ldm-5.2.1/src, it means that it was never made which means that either you didn't go back and do a 'make distclean' after making the source code modifications that I suggested, or there is a config.cache file in /net/anvil/project/ldm/ldm-5.2.1/src that was left over from a failed build attempt. I recommend: cd /net/anvil/project/ldm/ldm-5.2.1/src make distclean rm -f config.log config.cache config.status ./configure make make install Tom