Debian 中的 libpq 库出现问题

发布于 2024-12-05 10:18:45 字数 866 浏览 0 评论 0原文

我正在 Debian 中安装 postgresql 8.4,将程序 testlibpq.c 从 http: //www.postgresql.org/docs/9.0/interactive/libpq-example.html 到包含文件 libpq-fe.h 的目录,但编译后 gcc 写给我

testlibpq.c:(.text+0x4a): undefined reference to `PQconnectdb'
testlibpq.c:(.text+0x5a): undefined reference to `PQstatus'
testlibpq.c:(.text+0x6f): undefined reference to `PQerrorMessage'
testlibpq.c:(.text+0xa9): undefined reference to `PQexec'
testlibpq.c:(.text+0xb9): undefined reference to `PQresultStatus'
testlibpq.c:(.text+0xcf): undefined reference to `PQerrorMessage'
testlibpq.c:(.text+0xf5): undefined reference to `PQclear'
testlibpq.c:(.text+0x10d): undefined reference to `PQclear'
testlibpq.c:(.text+0x121): undefined reference to `PQexec' 

...等等我必须做什么应该做些什么来纠正工作?

I'm installing postgresql 8.4 in Debian, put program testlibpq.c from http://www.postgresql.org/docs/9.0/interactive/libpq-example.html to directory which have file libpq-fe.h, but after compilation gcc write me

testlibpq.c:(.text+0x4a): undefined reference to `PQconnectdb'
testlibpq.c:(.text+0x5a): undefined reference to `PQstatus'
testlibpq.c:(.text+0x6f): undefined reference to `PQerrorMessage'
testlibpq.c:(.text+0xa9): undefined reference to `PQexec'
testlibpq.c:(.text+0xb9): undefined reference to `PQresultStatus'
testlibpq.c:(.text+0xcf): undefined reference to `PQerrorMessage'
testlibpq.c:(.text+0xf5): undefined reference to `PQclear'
testlibpq.c:(.text+0x10d): undefined reference to `PQclear'
testlibpq.c:(.text+0x121): undefined reference to `PQexec' 

... e.t.c. What I must suppose to do to correct work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

望喜 2024-12-12 10:18:45

看起来您没有链接 PostgreSQL 库。您应该使用如下内容编译 testlibpq.c

gcc -o testlibpq testlibpq.c -lpq

-lpq 告诉链接器链接到 PostgreSQL 库,这就是 PQconnectdb 和朋友来自。

您可能还需要告诉编译器在哪里可以找到库和头文件,如果是这样,那么类似这样的事情应该解决这个问题:

gcc -o testlibpq -I$(pg_config --includedir) -L$(pg_config --libdir) -o testlibpq $(pg_config --libs)

Looks like you're not linking the PostgreSQL library. You should be compiling testlibpq.c with something like this:

gcc -o testlibpq testlibpq.c -lpq

The -lpq tells the linker to link against the PostgreSQL library and that's where PQconnectdb and friends come from.

You may need to tell the compiler where to find the libraries and headers as well, if so then something like this should sort that out:

gcc -o testlibpq -I$(pg_config --includedir) -L$(pg_config --libdir) -o testlibpq $(pg_config --libs)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文