Qt5Quickd.lib(Qt5Quickd.dll):致命错误LNK1112:模块计算机类型“ x64”与目标计算机类型“ x86”冲突

时间:2019-08-05 05:17:09

标签: c++ windows qt makefile qmake

我正在尝试使用命令行而不是QtCreator GUI工具来构建Qt应用程序。我正在通过运行以下命令使用 VS 2017开发人员命令提示符

"C:\Qt\Qt5.13.0\5.13.0\msvc2017_64\bin\qmake.exe" ..\qt3dsceneeditor.pro -spec win32-msvc "CONFIG+=debug" "CONFIG+=qml_debug"
"C:\Qt\Qt5.13.0\Tools\QtCreator\bin\jom.exe" -f ../../build-qt3dsceneeditor-Desktop_Qt_5_13_0_MSVC2017_64bit-Debug/Makefile qmake_all
"C:\Qt\Qt5.13.0\Tools\QtCreator\bin\jom.exe"

在进入link阶段直到出现此错误之前,构建过程一切正常:

link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /DLL /SUBSYSTEM:WINDOWS /MANIFEST:embed /OUT:debug\editorlib.dll @C:\Users\me\AppData\Local\Temp\editorlib.dll.13948.102703.jom
Qt5Quickd.lib(Qt5Quickd.dll) : fatal error LNK1112: module machine type 'x64' conflicts with target machine type 'x86'
jom: C:\Users\me\repos\qt3d-editor\scripts\editorlib\Makefile.Debug [debug\editorlib.dll] Error 1112
jom: C:\Users\me\repos\qt3d-editor\scripts\editorlib\Makefile [debug] Error 2
jom: C:\Users\me\repos\qt3d-editor\scripts\Makefile [sub-editorlib-make_first-ordered] Error 2

我研究了其他人报告的类似错误,并提到我需要更改Visual Studio配置。但就我而言,我没有使用VS GUI。如何更改 VS 2017开发人员命令提示符上的配置

如果有人可以介绍使用命令行工具而不是QtCreator GUI来构建Qt应用程序的良好指南,我也表示感谢!

如@code_fodder所建议,我正在查看QtCreator日志。 QtCreator确实可以进行编译/链接,没有任何错误:

QtCreator is fine

命令行错误是:

Command line runs into error

我还尝试使用nmake而不是jom,这会遇到相同的错误:

echo Setting up environment for Qt usage...
set PATH=C:\Qt\Qt5.13.0\5.13.0\msvc2017_64\bin;%PATH%
echo --------------------------------------
mkdir C:\Users\me\repos\build
cd C:\Users\me\repos\build\
qmake.exe -makefile C:\Users\me\repos\qt3d-editor\qt3dsceneeditor.pro
nmake /u /f Makefile

更新

在Linux上,我不会遇到此类错误。在openSUSE Leap 15.1上,此脚本可以正常工作:

#!/bin/sh 

export PATH=~/Qt5.13.0/5.13.0/gcc_64/bin/:$PATH 
mkdir build 
cd build 
qmake ../qt3dsceneeditor.pro -spec linux-icc-64 CONFIG+=qtquickcompiler 
make -j4

1 个答案:

答案 0 :(得分:0)

此脚本解决了问题

set PATH=C:\Qt\Qt5.13.0\5.13.0\msvc2017_64\bin;%PATH%
set PATH=C:\Qt\Qt5.13.0\Tools\QtCreator\bin;%PATH%
mkdir C:\Users\me\repos\qt3d-editor\scripts\build-deploy\temp
cd C:\Users\me\repos\qt3d-editor\scripts\build-deploy\temp
qmake.exe C:\Users\me\repos\qt3d-editor\qt3dsceneeditor.pro -spec win32-msvc "CONFIG+=qtquickcompiler"
jom.exe qmake_all
jom.exe

我不确定哪个修改可以解决问题。


在调试模式下,构建也很好:

qmake.exe C:\Users\me\repos\qt3d-editor\qt3dsceneeditor.pro -spec win32-msvc "CONFIG+=debug" "CONFIG+=qml_debug"

我在适用于VS 2017的x64本机工具命令提示符上运行脚本:

x64 Native Tools Command Prompt for VS 2017