MinGW Issue with Compiling on Windows
Solved
General and Desktop
-
Ok this is a strange one. I have a project i could compile on linux and windows.
Now on Windows it never compiles anymore. It looks like theres some kind of loop happening.
Here is the compile output:
01:35:07: Running steps for project quiz... 01:35:07: Starting: "C:\Qt\5.13.0\mingw73_64\bin\qmake.exe" C:\Users\batman\Desktop\quiz\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" Info: creating stash file C:\Users\batman\Desktop\quiz\build-quiz-Desktop_Qt_5_13_0_MinGW_64_bit-Debug\.qmake.stash 01:35:09: The process "C:\Qt\5.13.0\mingw73_64\bin\qmake.exe" exited normally. 01:35:09: Starting: "C:\Qt\Tools\mingw730_64\bin\mingw32-make.exe" -f C:/Users/batman/Desktop/quiz/build-quiz-Desktop_Qt_5_13_0_MinGW_64_bit-Debug/Makefile qmake_all mingw32-make: Nothing to be done for 'qmake_all'. 01:35:09: The process "C:\Qt\Tools\mingw730_64\bin\mingw32-make.exe" exited normally. 01:35:09: Starting: "C:\Qt\Tools\mingw730_64\bin\mingw32-make.exe" -j1 C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" C:\Qt\5.13.0\mingw73_64\bin\qmake.exe -o Makefile ..\quiz\quiz.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug"
what could be the issue?
-
Hi,
Check the timestamps on your files.
One other thing you can do is nuke the build folder and restart the build.
-
Somehow even deleting the build folder and deleting the pro user file did not solve the issue.
I solved the issue by adding all the files from the project into a new one. Then it worked again.