Qt Installation Error On Windows System
-
@Christian-Ehrlicher I did try to (Remove Perl from your path so MSVC ) is giving the same issue
-
@Shrishashank said in Qt Installation Error On Windows System:
is giving the same issue
For sure not - then gcc. exe from the perl path would not get picked up - start with a clean build dir!
what doescl.exe
prints out? -
okay, now I have configured it after giving your suggestions, Thank You to everyone.
I have one more issue now while building help me resolve it.
showing it failed while I was building using this command as suggested in Documentation: cmake --build . --parallel 4
-
@Shrishashank
Read the final error message at least. It tells you that you are mixing x86 and x64 object files/libraries. Looks like you are building for 64-bit but asking it to link with a 32-bit version of the "zip" library stuff. -
Pass
-qt-zlib
to make sure the qt zlib is used and not from somewhere in your OS. -
@Christian-Ehrlicher Do you mean I need to pass in Cmake
-
@Shrishashank said in Qt Installation Error On Windows System:
Do you mean I need to pass in Cmake
What does this mean? You don't call cmake anywhere but configure.bat - and this batch file has a '--help' option where you can find all possible options. One of them is '-qt-zlib'.
-
@Christian-Ehrlicher Okay I get it now, ThankYou
-
Thank You to Everyone who helped me resolve this issue. I'm successfully building the Qt source code.
-
-
-
Hello all, Six days ago, I posted that this issue was solved, but I encountered one more issue while building Qt-SourceCode on Windows.
Could you help me to resolve this issue.