我想通过 libpqxx (C++) 连接到 postgresql
使用 -lpq 运行 g++ 时出现此错误:
[michael@michael cpp]$ g++ Store.cpp -lpqxx -std=c++11 -lpq
/usr/bin/ld: cannot find -lpq collect2: error: ld returned 1 exit
status
当我删除 -lpq 它运行良好并且可以正常工作时,我想知道为什么使用 -lpq 它不起作用以及如何修复它。
谢谢,迈克尔。