Re: errors when making examples in /src/test/examples

From: Jeremy Buchmann <jeremy(at)wellsgaming(dot)com>
To: Wei Wang <Wei(dot)Wang(at)cl(dot)cam(dot)ac(dot)uk>
Cc: pgsql-interfaces(at)postgresql(dot)org
Subject: Re: errors when making examples in /src/test/examples
Date: 2002-05-30 14:28:42
Message-ID: 3CF6371A.7030004@wellsgaming.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Wei Wang wrote:
> Hi,
>
> Afte searching on the net, I added -lpq but the result is not positive:
>
> gcc -O2 -Wall -Wmissing-prototypes -Wmissing-declarations -I../../../src/interfaces/libpq -I../../../src/include testlibpq.c -o testlibpq -lpq
> testlibpq.c: In function `exit_nicely':
> testlibpq.c:14: warning: implicit declaration of function `exit'
> /usr/bin/ld: cannot find -lpq
> collect2: ld returned 1 exit status
>
> What am I missing here?

You need to tell gcc where to find libpq.so. You do that with the -L
option. So find libpq.so (I don't know where it is in the compile tree)
and then add -L/path/to/libpq to the command.

So you might end up with something like:

gcc -I../../../src/interfaces/libpq -I../../../src/include
-L../../../src/lib testlibpq.c -o testlibpq -lpq

Again, I don't really know where libpq.so is, so find it and substitute
the real path for the one above.

--Jeremy

In response to

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Wei Wang 2002-05-30 14:41:26 Re: errors when making examples in /src/test/examples
Previous Message Wei Wang 2002-05-30 12:34:42 errors when making examples in /src/test/examples