Re: Using C API

Поиск
Список
Период
Сортировка
Искать
От
Lars Heidieker
Тема
Re: Using C API
Дата
Msg-id
D22F7145-891A-4F79-84C1-59CCF8904E2D@heidieker.de
Ответ на
Using C API (pgsql.gen@tuxbeagle.com)
Список
Дерево обсуждения
Using C API pgsql.gen@tuxbeagle.com
Re: Using C API Tom Lane <tgl@sss.pgh.pa.us>
Re: Using C API Lars Heidieker <lars@heidieker.de>
Re: Using C API Greg Smith <gsmith@gregsmith.com>
On 10 Oct 2007, at 02:25, pgsql.gen@tuxbeagle.com wrote:

I was trying this example program out of a well known postgresql book and keep getting errors whenever I try to compile.

Error messages ##make client1

cc -g  -I /usr/include -I /usr/include/pgsql -I /usr/include/pgsql/server   -c -o client1.o client1.c
cc -g  client1.o  -L /usr/lib -L /usr/lib/pgsql -o client1
client1.o: In function `main':
/root/PROGRAMMING/C_API/client1.c:10: undefined reference to `PQconnectdb'
/root/PROGRAMMING/C_API/client1.c:11: undefined reference to `PQfinish'
collect2: ld returned 1 exit status
make: *** [client1] Error 1
---------------------------------------------------------




you must add -lpq too your LDFLAGS
in order to link the lib you only have the linker paths set in LDFLAGS

it should read like this then:
cc -g  client1.o  -L /usr/lib -L /usr/lib/pgsql -o client1 -lpq

--

Viele Grüße,
Lars Heidieker


------------------------------------

Mystische Erklärungen.
Die mystischen Erklärungen gelten für tief;
die Wahrheit ist, dass sie noch nicht einmal oberflächlich sind.
     -- Friedrich Nietzsche



В списке pgsql-general по дате отправления
От: Trevor Talbot
Дата:
От: Tom Lane
Дата:
Сообщение: Re: Using C API
FAQ