Libpqxx抱怨缺少参考文献

时间:2013-01-31 16:03:34

标签: c++ postgresql libpq libpqxx

所以我有以下问题:

g++ -std=c++0x -O3 -I/usr/include/scip main.cpp locations/locationreader.cpp locations/locationassigner.cpp scheduler.o optimizer.o dbmanager.o scheduleData.o exam.o  -o main -L/usr/lib -lscip  -lreadline  -lgmp -lz -llpispx  -lsoplex  -lobjscip -lnlpi.cppad -lscipopt -lzimpl -lpqxx -lpq  -pthread
/usr/lib/../lib64/libpqxx.so: undefined reference to `PQescapeIdentifier'
collect2: error: ld returned 1 exit status
make: *** [main] Error 1

我无法弄清楚为什么它找不到引用因为我安装了libpq并且它正好在/ usr / lib64

$ ls | grep pq
libpq.so
libpq.so.5
libpq.so.5.2
libpqxx-4.0.so
libpqxx.so

所以,如果我能得到任何帮助,那将是可爱的

1 个答案:

答案 0 :(得分:6)

PQescapeIdentifier出现在PostgreSQL 9.0中,对应libpq.so.5.3

9.0 release notes有此条目:

  

添加libpq函数PQescapeLiteral()和PQescapeIdentifier()(Robert   哈斯)

您似乎使用PostgreSQL-8.4(libpq.so.5.2)中的客户端库,这就是它缺少此功能的原因。