Qt dosn't run my application
-
i created a new c++ porject , and when i click run , it launch "C:\V-PlaySDK\Tools\QtCreator\bin\qtcreator_process_stub.exe" insted of my application
!
-
i created a new c++ porject , and when i click run , it launch "C:\V-PlaySDK\Tools\QtCreator\bin\qtcreator_process_stub.exe" insted of my application
!
@Maarouf-Med-Mahdi said in Qt dosn't run my application:
it launch "C:\V-PlaySDK\Tools\QtCreator\bin\qtcreator_process_stub.exe" insted of my application
Like @ChrisW67 said,
qtcreator_process_stub.exe
launches your application.Look at your "Application Output" pane at the bottom of Qt Creator: https://doc.qt.io/qtcreator/creator-output-panes.html#application-output -- What does it say?
-
@JKSH hi , very thanks for ansower , see my app output :
Démarrage de C:\Users\Med_Mahdi_Maarouf\Documents\build-fix-prob-Desktop_Qt_5_2_1_MinGW_32bit-Debug\debug\fix-prob.exe...
C:\Users\Med_Mahdi_Maarouf\Documents\build-fix-prob-Desktop_Qt_5_2_1_MinGW_32bit-Debug\debug\fix-prob.exe s'est terminé avec le code -1073741515the path in the output application is correct , and say the app is exiting with the code -1073.... , but the process_stub app still working front to me
-
@JKSH hi , very thanks for ansower , see my app output :
Démarrage de C:\Users\Med_Mahdi_Maarouf\Documents\build-fix-prob-Desktop_Qt_5_2_1_MinGW_32bit-Debug\debug\fix-prob.exe...
C:\Users\Med_Mahdi_Maarouf\Documents\build-fix-prob-Desktop_Qt_5_2_1_MinGW_32bit-Debug\debug\fix-prob.exe s'est terminé avec le code -1073741515the path in the output application is correct , and say the app is exiting with the code -1073.... , but the process_stub app still working front to me
Run
qmake
and re-build again. Your output is also missing the "Hello World".Btw: You can disable the console window output and redirect all the output to QtCreator's output pane.
(Projects -> Run, and then check or uncheck "Run in terminal") -
@JKSH hi , very thanks for ansower , see my app output :
Démarrage de C:\Users\Med_Mahdi_Maarouf\Documents\build-fix-prob-Desktop_Qt_5_2_1_MinGW_32bit-Debug\debug\fix-prob.exe...
C:\Users\Med_Mahdi_Maarouf\Documents\build-fix-prob-Desktop_Qt_5_2_1_MinGW_32bit-Debug\debug\fix-prob.exe s'est terminé avec le code -1073741515the path in the output application is correct , and say the app is exiting with the code -1073.... , but the process_stub app still working front to me
@Maarouf-Med-Mahdi said in Qt dosn't run my application:
fix-prob.exe s'est terminé avec le code -1073741515
Error code -1073741515 means that a system DLL that you program requires could not be found. That's why
qtcreator_process_stub.exe
can't load your program.For example, see https://stackoverflow.com/questions/3360888/qt-app-i-made-exited-with-code-1073741515
-
i created a new c++ porject , and when i click run , it launch "C:\V-PlaySDK\Tools\QtCreator\bin\qtcreator_process_stub.exe" insted of my application
!
@Maarouf-Med-Mahdi said in Qt dosn't run my application:
i created a new c++ porject , and when i click run
Back-up a little.
You have missed some initial configuration , so do not start chasing DLL .If you used QtCreator File->New File or Project ...
then selected
C++ "hello word" template you should have a step directing you to specify compiler etc. BEFORE you need to add DLL etc.You should be asked to select "kit" - a silly pseudo instruction - to select / add system depended device and or software .
Maybe that is what is missing .