Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] MW make error
- Date: Wed, 30 Jun 2004 12:27:15 -0500
- From: Erik Paulson <epaulson@xxxxxxxxxxx>
- Subject: Re: [Condor-users] MW make error
On Wed, Jun 30, 2004 at 11:02:48AM -0400, A Nayar wrote:
> still cannot do make check, where do I set -ldl
>
> /usr/bin/g++ -g -O2 -Wall -o masternewmatmul_file Driver-NewMatmul.o
> Task-NewMatmul.o MasterMain-NewMatmul.o -L/usr/local/mw/lib -lMW -lMWRMComm
> -lMWfilemaster -lMWutil /opt/condor-6.6.5/lib/libcondorapi.a -lnsl -lNWS
> /opt/condor-6.6.5/lib/libcondorapi.a(ast.o)(.text+0x38e0): In function
I don't see a -ldl on your link line - you need to have it appear after
libcondorapi.a (yeah, I know)
/usr/bin/g++ -g -O2 -Wall -o masternewmatmul_file Driver-NewMatmul.o
Task-NewMatmul.o MasterMain-NewMatmul.o -L/usr/local/mw/lib -lMW -lMWRMComm -lMWfilemaster -lMWutil /opt/condor-6.6.5/lib/libcondorapi.a -ldl -lnsl -lNWS
(libcondorapi.a includes ClassAds, to parse job logs in XML format. ClassAds
include dynamically-loadable functions, which means we need to have
dlopen)
-Erik