Creating a Qt project using MinGW displays the reading project all the time.
-
I am using Qt for the first time and the following is my project creation process
When I use MinGW (I have tried all the versions I have downloaded), the reading project will not stop at all, as shown
While I used Process_Monitor analysis to find that Qt Creator is constantly creating and deleting pro files.
When I use MSVC, I can successfully create the project, as shown below.
-
I am using Qt for the first time and the following is my project creation process
When I use MinGW (I have tried all the versions I have downloaded), the reading project will not stop at all, as shown
While I used Process_Monitor analysis to find that Qt Creator is constantly creating and deleting pro files.
When I use MSVC, I can successfully create the project, as shown below.
@honglixie said in Creating a Qt project using MinGW displays the reading project all the time.:
When I use MinGW (I have tried all the versions I have downloaded), the reading project will not stop
What is "the reading project"?
-
C Christian Ehrlicher moved this topic from General and Desktop on
-
@honglixie said in Creating a Qt project using MinGW displays the reading project all the time.:
When I use MinGW (I have tried all the versions I have downloaded), the reading project will not stop
What is "the reading project"?
@ChrisW67
If you look at the screenshot two up from the bottom, where the OP saysWhile I used Process_Monitor analysis to find that Qt Creator is constantly creating and deleting pro files.
you see a constant stream of
CreateFile
/QueryNetworkOpenInformationFile
/CloseFile
onuntitled.pro
calls being executed. The OP also states this happens when Creator uses MinGW but not MSVC. I have no idea why this might be, nor even whatQueryNetworkOpenInformationFile
is all about. -
@honglixie said in Creating a Qt project using MinGW displays the reading project all the time.:
When I use MinGW (I have tried all the versions I have downloaded), the reading project will not stop
What is "the reading project"?
-
Hi, I think I've seen similar loops when using Qt 5 and Qt 6 on the same QMake project (i.e. either Qt 5 works or Qt 6 works). Try removing those Qt 5.15.2 MinGW versions.
@hskoglund
I tried it, but it was of no use -
Maybe also try: remove all .pro.user files.
Remove all build directories.
And start a brand new project with only the MinGW Qt 6.6.3 build favor.@hskoglund
I tried it, but it was of no use