0
最近我正在處理的項目需要添加postgresql支持。項目用C語言編寫(其開源代碼爲Janus gateway)。未定義的引用'PQconnectdb'
我按照以下步驟安裝postgress和libps-dev。
sudo apt-get install postgresql
sudo apt-get install libpq-dev
$ sudo -u postgres psql postgres
psql (9.3.9)
Type "help" for help.
postgres=# \password postgres
然後在我的頭(connect.h)文件:
#include <postgresql/libpq-fe.h>
#include "debug.h"
/*! \brief Connect to postgresql database
* If successfull, returns PGconn type
* If not exits the program
* @param[in] postgres connection params, ex. username, db, host, etc.
*/
PGconn *connect_to_database(gchar connection_params);
/*! \brief Closes connection to database
* @param[in] PGconn instance
*/
PGconn *close_connection_to_database(PGconn *pgconn);
我的.C(connect.c)文件:
/*! \file db.c
* \author ...
* \copyright GNU General Public License v3
* \brief Event handler notifications (headers)
* \details This file contains methods for safely creating databse connection
* to postgresql and then closing it.
*
* \ingroup db
* \ref db
*/
#include "./connect.h"
PGconn *connect_to_database(gchar connection_params) {
JANUS_LOG(LOG_WARN, "TESTINGSSS \n\n\n\n");
const char test_connect = "testings";
PGconn *conn = PQconnectdb(test_connect);
return conn;
}
在make
我得到:
[email protected] ~/Projects/janus-gateway $ make
make all-recursive
make[1]: Entering directory '/home/todns/Projects/janus-gateway'
Making all in html
make[2]: Entering directory '/home/todns/Projects/janus-gateway/html'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/todns/Projects/janus-gateway/html'
make[2]: Entering directory '/home/todns/Projects/janus-gateway'
CCLD janus
db/janus-connect.o: In function `connect_to_database':
/home/todns/Projects/janus-gateway/db/connect.c:20: undefined reference to `PQconnectdb'
collect2: error: ld returned 1 exit status
Makefile:1195: recipe for target 'janus' failed
make[2]: *** [janus] Error 1
make[2]: Leaving directory '/home/todns/Projects/janus-gateway'
Makefile:1914: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/home/todns/Projects/janus-gateway'
Makefile:905: recipe for target 'all' failed
make: *** [all] Error 2
問題是:
db/janus-connect.o: In function `connect_to_database':
/home/todns/Projects/janus-gateway/db/connect.c:20: undefined
我的直覺告訴我,它與Makefile.am文件有關,但我真的不知道該怎麼改。 所以問題是:我在這個設置中缺少什麼?我如何將postgres-dev庫與我的C代碼鏈接起來?
謝謝!忘了提及,我在Linux Mint虛擬機(主機是MacBook Pro)上運行此操作。
是Makefile文件與'#include「./connect.h」'在同一個目錄下?可能不會。也許你必須把'#include「./connect.h」'改成正確的路徑。或者,改變'-I'目錄。 –
@FiddlingBits'connect.c'和'connect.h'位於同一個目錄下,名爲db。 – IvRRimUm
@FiddlingBits我如何更改'-I'目錄?在哪裏做,如何? – IvRRimUm