On Tue, Mar 05, 2002 at 03:26:46AM -0800, Pa O'Clerigh wrote:
...
> the problem is when i try and run a small piece of c
> code i get an error which states the following:
> cc testing_connection.c -L/usr/local/pgsql/lib -lpq
> -I/usr/local/pgsql/include -o fred -O0
> $ ./fred
> ./fred: error in loading shared libraries: libpq.so.2:
> cannot open shared object file: No such file or
> directory
...
What does
ldd fred file fred
tell you? Maybe
cc testing_connection -L/usr/local/pgsql/lib -Wl,-R/usr/local/pgsql/lib -lpq\ -I/usr/local/pgsql/include -o fred
-O0
?
Patrick