gpt4 book ai didi

c++ - Qt Qt5Network 链接错误的静态构建

转载 作者:可可西里 更新时间:2023-11-01 15:27:51 27 4
gpt4 key购买 nike

我正在尝试使用 OpenSSL 支持静态构建 Qt(版本 5.4.1)。我配置如下:

configure -opensource -release -c++11 -static -platform win32-msvc2013 
-openssl-linked -I C:\OpenSSL-Win32\include
-L C:\OpenSSL-Win32\lib\VC\static
-nomake examples -nomake tests

include 和 lib 目录是有效的。我在 Qt5Network.lib 中收到大量链接错误。

Qt5Network.lib(qhttpnetworkconnectionchannel.obj) : error LNK2019: unresolved ex
ternal symbol "public: static class QSharedPointer<class QSslContext> __cdecl QS
slSocketPrivate::sslContext(class QSslSocket *)" (?sslContext@QSslSocketPrivate@
@SA?AV?$QSharedPointer@VQSslContext@@@@PAVQSslSocket@@@Z) referenced in function
"protected: void __thiscall QHttpNetworkConnectionChannel::_q_connected(void)"
(?_q_connected@QHttpNetworkConnectionChannel@@IAEXXZ)
Qt5Network.lib(qhttpprotocolhandler.obj) : error LNK2019: unresolved external sy
mbol "public: __int64 __thiscall QSslSocket::encryptedBytesToWrite(void)const "
(?encryptedBytesToWrite@QSslSocket@@QBE_JXZ) referenced in function "private: vi
rtual bool __thiscall QHttpProtocolHandler::sendRequest(void)" (?sendRequest@QHt
tpProtocolHandler@@EAE_NXZ)
C:\Qt\5.4\qtbase\bin\xmlpatterns.exe : fatal error LNK1120: 31 unresolved extern
als
jom: C:\Qt\5.4\qtxmlpatterns\tools\xmlpatterns\Makefile [release] Error 2
jom: C:\Qt\5.4\qtxmlpatterns\tools\Makefile [sub-xmlpatterns-make_first] Error 2

jom: C:\Qt\5.4\qtxmlpatterns\Makefile [sub-tools-make_first] Error 2
jom: C:\Qt\5.4\Makefile [module-qtxmlpatterns-make_first] Error 2

我之前能够在没有 OpenSSL 支持的情况下创建静态构建。错误消息还表明,问题与 OpenSSL 有关。

有没有人有解决这个问题的想法?

更新

这些配置产生相同的错误:

配置一:

configure -opensource -release -c++11 -static -platform win32-msvc2013 
-openssl-linked -I C:\OpenSSL-Win32\include -L C:\OpenSSL-Win32\lib\VC\static
OPENSSL_LIBS="-llibeay32MT -lssleay32MT" -nomake examples -nomake tests

配置2:

configure -opensource -release -c++11 -static -platform win32-msvc2013 
-openssl -I C:\OpenSSL-Win32\include -L C:\OpenSSL-Win32
-nomake examples -nomake tests

更新 2

我也尝试按照 qBittorrent wiki 中的精彩教程进行操作, 并得到相同的错误。

如果这确实是一个 Qt 错误,正如 Frank 在 his comment 中建议的那样, 如果有人可以建议 Qt 的最新版本,这也将非常有用,这应该可以使用。

更新 3

关于 bugreports.qt.io我收到的意见是,这不是错误:

You haven't actually told the build to link the openssl libraries. http://doc.qt.io/qt-5/ssl.html gives the following example:

OPENSSL_LIBS='-L/opt/ssl/lib -lssl -lcrypto' ./configure -openssl-linked

You'll need to tweak it for your compiler and library locations of course.

在引用的文档页面上给出了这个例子:

OPENSSL_LIBS='-L/opt/ssl/lib -lssl -lcrypto' ./configure -openssl-linked

我没有在我编译的 OpenSSL 版本中找到 ssl 或加密库,也没有在二进制分发版中找到。我确实有标题。我只有 ssleay32 和 libeay32 库。

configure 命令确实提示将这些库设置为提到的变量:

NOTE: When linking against OpenSSL, you can override the default
library names through OPENSSL_LIBS
and optionally OPENSSL_LIBS_DEBUG/OPENSSL_LIBS_RELEASE
For example:
configure -openssl-linked OPENSSL_LIBS="-lssleay32 -llibeay32"

通过设置这个变量我仍然得到同样的错误。

更新 5

不完全是我想要的,但向前迈进了一步:

我已经下载了最近(4 天前)发布的 Qt 5.4.2 的源代码,并且我能够使用动态链接的 OpenSSL(-openssl 开关)创建静态构建。

我仍在寻找静态链接 OpenSSL 的解决方案。我仍然有相同的链接错误。

最佳答案

这就是我如何使用 MSVC 2013 在 Windows 上构建支持 SSLMySQLQt 5.7.1 :

确保可以在 PATH 环境变量中找到 Perl、Python 和 Ruby。

从github仓库下载Qt:

cd C:\Qt
git clone https://github.com/qt/qt5.git
cd C:\Qt\qt5
git checkout 5.7

确保检查提交 36e7cff94fbb4af5d8de6739e66164c6e6873586。目前, checkout 5.7 正是这样做的。

将以下内容放入位于 C:\Qt\qt5qt5vars.bat 中。如果需要,请进行调整:

@echo off

REM Set up \Microsoft Visual Studio 2015, where <arch> is \c amd64, \c x86, etc.
CALL "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86

REM Edit this location to point to the source code of Qt
SET _ROOT=C:\Qt\qt5

SET PATH=%_ROOT%\qtbase\bin;%_ROOT%\gnuwin32\bin;%PATH%

REM Uncomment the below line when using a git checkout of the source repository
SET PATH=%_ROOT%\qtrepotools\bin;%PATH%

REM Uncomment the below line when building with OpenSSL enabled. If so, make sure the directory points
REM to the correct location (binaries for OpenSSL).
SET PATH=C:\OpenSSL-Win32\bin;%PATH%

REM When compiling with ICU, uncomment the lines below and change <icupath> appropriately:
REM SET INCLUDE=<icupath>\include;%INCLUDE%
REM SET LIB=<icupath>\lib;%LIB%
REM SET PATH=<icupath>\lib;%PATH%

REM Contrary to earlier recommendations, do NOT set QMAKESPEC.

SET _ROOT=

REM Keeps the command line open when this script is run.
cmd /k

之后,执行此文件并正确启动存储库:

qt5vars.bat 
perl init-repository

最后,要成功配置和编译库(使用调试和发布版本),请确保 configure 引用的路径在您的系统上也有效:

configure -static -static-runtime -debug-and-release -ssl -openssl -openssl-linked -qt-sql-mysql -opengl dynamic -platform win32-msvc2013 -prefix C:\Qt\qt5.7-msvc2013-static -nomake tests -nomake examples -I "C:\Program Files (x86)\MySQL\MySQL Connector.C 6.1\include" -I "C:\OpenSSL-Win32\include" -L "C:\Program Files (x86)\MySQL\MySQL Connector.C 6.1\lib" -L "C:\OpenSSL-Win32\lib\VC\static" OPENSSL_LIBS="-lUser32 -lAdvapi32 -lGdi32 -lCrypt32" OPENSSL_LIBS_DEBUG="-lssleay32MTd -llibeay32MTd" OPENSSL_LIBS_RELEASE="-lssleay32MT -llibeay32MT"
nmake
nmake install

到目前为止,一切都应该顺利而美好地进行。现在需要配置 Qt Creator 以检测这个新的 Qt 版本创建一个新的工具包以用于您的项目:

关于c++ - Qt Qt5Network 链接错误的静态构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30556162/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com