PostgreSQL 编译错误的 Qt 驱动程序

发布于 2024-10-07 00:26:29 字数 699 浏览 2 评论 0原文

使用以下命令编译 psql 时:

cd %QTDIR%\src\plugins\sqldrivers\psql
qmake "INCLUDEPATH+=D:\Program Files\PostgreSQL\8.3\include" "LIBS+=D:\Program Files\PostgreSQL\8.3\lib\libpq.lib" psql.pro
make

我收到以下消息:

... g++: Files\PostgreSQL\8.3\lib -Lc:\Qt\2010.05\qt\lib tmp\obj\debug_shared\qsqlpsqld_resource_res.o D:\Progra~1\PostgreSQL\8.3\lib\libpq.lib -lQtSqld4 -lQtCored4 : Invalid argument  
make[1]: *** [..\..\..\..\plugins\sqldrivers\qsqlpsqld4.dll] Error 1  
make[1]: Leaving directory `C:/Qt/2010.05/qt/src/plugins/sqldrivers/psql'  
make: *** [debug-all] Error 2

Replacement D:\Program Files -> D:\Progra~1 没有改变任何东西。如何解决这个问题呢?

When compiling psql with following command:

cd %QTDIR%\src\plugins\sqldrivers\psql
qmake "INCLUDEPATH+=D:\Program Files\PostgreSQL\8.3\include" "LIBS+=D:\Program Files\PostgreSQL\8.3\lib\libpq.lib" psql.pro
make

I got following message:

... g++: Files\PostgreSQL\8.3\lib -Lc:\Qt\2010.05\qt\lib tmp\obj\debug_shared\qsqlpsqld_resource_res.o D:\Progra~1\PostgreSQL\8.3\lib\libpq.lib -lQtSqld4 -lQtCored4 : Invalid argument  
make[1]: *** [..\..\..\..\plugins\sqldrivers\qsqlpsqld4.dll] Error 1  
make[1]: Leaving directory `C:/Qt/2010.05/qt/src/plugins/sqldrivers/psql'  
make: *** [debug-all] Error 2

Replacement D:\Program Files -> D:\Progra~1 doesn't change anything. How to solve that problem?

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

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

发布评论

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

评论(2

裸钻 2024-10-14 00:26:29

尝试在 qmake 调用中使用单引号而不是双引号。如果失败,请尝试在路径中使用正斜杠而不是反斜杠。

Try using single quotes instead of double quotes in the qmake invocation. If that fails, try using forward slashes instead of backslashes in the path.

苄①跕圉湢 2024-10-14 00:26:29

命令应该是:

cd %QTDIR%\src\plugins\sqldrivers\psql
qmake "INCLUDEPATH+=D:\Progra~1\PostgreSQL\8.3\include" "LIBS+=D:\Progra~1\PostgreSQL\8.3\lib\libpq.lib" psql.pro

然后需要手动修复Makefile(调试和发布)以排除dirname中所有出现的空格,然后运行

make

Commands should be:

cd %QTDIR%\src\plugins\sqldrivers\psql
qmake "INCLUDEPATH+=D:\Progra~1\PostgreSQL\8.3\include" "LIBS+=D:\Progra~1\PostgreSQL\8.3\lib\libpq.lib" psql.pro

then it is needed to manually fix Makefiles (Debug and Release) to exclude all occurencies of space in dirname, then run

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