linking error

Поиск
Список
Период
Сортировка
От anuj
Тема linking error
Дата
Msg-id 005101bfd526$094bf670$6a01010a@incontrolint.in
обсуждение исходный текст
Ответы Re: linking error  (Vince Vielhaber <vev@michvhf.com>)
Список pgsql-hackers
Dear sir,
This is a small sample 'C' program.
Compile successfully and linking error is coming in PQsetdb function.
This program will run on Linux RH6. How to remove this linking error.
Please waiting your valuable guidance.
Thanx.


******* Compile Result ************
[rootanuj@Lux2 rootanuj]$ gcc -S conn.c
[rootanuj@Lux2 rootanuj]$ gcc conn.c
/tmp/ccroTWA2.o: In function `main':
/tmp/ccroTWA2.o(.text+0x48): undefined reference to `PQsetdbLogin'
collect2: ld returned 1 exit status
[rootanuj@Lux2 rootanuj]$
*******************************

/* conn.c */
#include <stdio.h>
#include "/usr/include/pgsql/libpq-fe.h"
main() {     char       *pghost,                *pgport,                *pgoptions,                *pgtty;     char
 *dbName;
 
     PGconn     *conn;
     pghost = NULL;              /* host name of the backend server */     pgport = "5432";              /* port of the
backendserver */     pgoptions = NULL;           /* special options to start up the backend
    * server */     pgtty = NULL;               /* debugging tty for the backend server */     dbName = "template1";
 
     /* make a connection to the database */     conn = PQsetdbLogin(pghost, pgport, pgoptions,
pgtty,dbName,"username","password");
/* Compile successfully and linking error is coming in PQsetdb function. */
/* Compile cc -S conn.c */ }




В списке pgsql-hackers по дате отправления:

Предыдущее
От: Oleg Broytmann
Дата:
Сообщение: Re: setproctitle
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: Gripe: working on configure now requires Automake installed locally