繁体   English   中英

QT 5.7 MSVC 2015静态版本不起作用

[英]QT 5.7 MSVC 2015 Static Builds Not Working

我在Windows上使用32位和64位QT 5.7 MSVC 2015静态版本时遇到问题。 这些是我运行的命令和我得到的输出(也已通过32位测试):

C:\Users\Josh>set PATH=C:\Qt\static\Qt 5.7.0 MSVC2015_Static_x64\bin;%PATH%

C:\Users\Josh>cd "\Users\Josh\Mozy Sync\ReplicatorNew\ReplicatorNew"

C:\Users\Josh\Mozy Sync\ReplicatorNew\ReplicatorNew>qmake ReplicatorNew.pro
Could not find qmake configuration file win32-msvc2015.
Error processing project file: ReplicatorNew.pro

这是我配置QT静态版本所遵循的步骤:

  1. 下载了QT 5.7源文件并解压缩到其自己的目录中。
  2. 使用QT Creator和msvc2015 32和64位安装了QT。
  3. 安装了Visual Studio 2015社区并选中了所有Visual C ++选项。
  4. 安装Strawberry Perl 32位并添加到路径。
  5. 已安装Python 2.7.12并添加到path。
  6. 安装了Ruby并添加到path。
  7. 已安装Windows 10 SDK,并检查了安装中的所有选项。
  8. 将jom安装到其自己的目录中。
  9. 下载了openssl源代码,并按此处构建。
  10. 将qtbase \\ mkspecs \\ common \\ msvc-desktop.conf编辑为以下内容:

      QMAKE_CFLAGS_RELEASE = -O2 -MT QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MT -Zi QMAKE_CFLAGS_DEBUG = -Zi -MTd 
  11. 将此运行32位:

      cd "\\Program Files (x86)\\Microsoft Visual Studio 14.0\\vc" vcvarsall.bat x86 
  12. 64位:

      cd "\\Program Files (x86)\\Microsoft Visual Studio 14.0\\vc" vcvarsall.bat amd64 
  13. 然后这些:

      set QMAKESPEC=win32-msvc2015 set QTDIR=C:\\Qt\\Static\\qt-everywhere-enterprise-src-5.7.0\\qtbase set PATH=C:\\Qt\\Static\\qt-everywhere-enterprise-src-5.7.0\\qtbase\\bin;%PATH% cd C:\\Qt\\Static\\qt-everywhere-enterprise-src-5.7.0 
  14. 对于32位:

      configure -debug-and-release -confirm-license -platform win32-msvc2015 -opengl desktop -static -target xp -nomake examples -no-compile-examples -nomake tests -prefix C:\\Qt\\static\\MSVC2015_Static_x86 -openssl -LC:\\OpenSSL-win32\\lib -l libeay32 -l ssleay32 -IC:\\OpenSSL-win32\\include -qt-libpng -qt-libjpeg -qt-zlib 
  15. 对于64位:

      configure -debug-and-release -confirm-license -platform win32-msvc2015 -opengl desktop -static -nomake examples -no-compile-examples -nomake tests -prefix C:\\Qt\\static\\MSVC2015_Static_x64 -openssl -LC:\\OpenSSL-win64\\lib -l libeay32 -l ssleay32 -IC:\\OpenSSL-win64\\include -qt-libpng -qt-libjpeg -qt-zlib 
  16. 然后运行这些:

      C:\\Qt\\static\\jom_1_1_1\\jom.exe -j 4 C:\\Qt\\static\\jom_1_1_1\\jom.exe -j 4 install 

还明确验证了win32-msvc2015在静态生成目录的mkspecs目录中。 我将qt静态目录重命名为第一个代码段中的名称。 我在Google上找不到很多东西,因此希望在这里发布帮助。 谢谢。 我希望这很简单,就像我遗漏了一个目录以放置路径环境变量一样...

原来问题是我在构建后将QT静态构建目录重命名,这破坏了它。 快速修复:将其重命名为其原始的configure -prefix名称。 谢谢库巴!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM