[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

20021101: LDM upgrage error messages (cont.)



>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