Qt5.11.2 windeployqt is not creating finite dependent dll












0














When trying to run application with debug mode.. Error: "The code execution cannot proceed because Qt5Core.dll was not found."



When trying to run application with release mode..



problem1: MinGW considering executable as debug executable and hence windeployqt is creating debug version dependent dll!



problem2: Getting same error as shown in above - "The code execution cannot proceed because Qt5Core.dll was not found.".



Can anyone provide solution for this? or request to guide for solving the problem.



Same problem was posted in-
Qt windeployqt results in non-usable deployment



Output of windeployqt



<executable path>windeployqt 
<executable name>.exe
<executable name>.exe 32 bit, debug executable
Adding Qt5Svg for qsvgicond.dll
Skipping plugin qtvirtualkeyboardplugind.dll due to disabled dependencies (Qt5Qml Qt5Quick).
Direct dependencies: Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Widgets
All dependencies : Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Widgets
To be deployed : Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Svg Qt5Widgets
Updating Qt5Cored.dll.
Updating Qt5Guid.dll.
Updating Qt5Networkd.dll.
Updating Qt5Sqld.dll.
Updating Qt5Svgd.dll.
Updating Qt5Widgetsd.dll.
Updating libGLESV2d.dll.
Updating libEGLd.dll.
Updating D3Dcompiler_47.dll.
Updating opengl32sw.dll.
Updating libgcc_s_dw2-1.dll.
Updating libstdc++-6.dll.
Updating qsvgd.dll.
Updating qtgad.dll.
Updating qtiffd.dll.
Updating qwbmpd.dll.
Updating qwebpd.dll.
Creating directory <path of executable>/platforms.
Updating qwindowsd.dll.
Creating directory <path of executable>/sqldrivers.
Updating qsqlited.dll.
Updating qsqlmysqld.dll.
Updating qsqlodbcd.dll.
Updating qsqlpsqld.dll.
Creating directory <path of executable>/styles.
Updating qwindowsvistastyled.dll.
Creating <path of executable>translations...
Creating qt_ar.qm...
Creating qt_bg.qm...
Creating qt_ca.qm...
Creating qt_cs.qm...
Creating qt_da.qm...
Creating qt_de.qm...
Creating qt_en.qm...
Creating qt_es.qm...
Creating qt_fi.qm...
Creating qt_fr.qm...
Creating qt_gd.qm...
Creating qt_he.qm...
Creating qt_hu.qm...
Creating qt_it.qm...
Creating qt_ja.qm...
Creating qt_ko.qm...
Creating qt_lv.qm...
Creating qt_pl.qm...
Creating qt_ru.qm...
Creating qt_sk.qm...
Creating qt_uk.qm...









share|improve this question
























  • What is the output of winqtdeploy? And are you sure you are not mixing debug and release (for example an external loaded dll)?
    – Amfasis
    Nov 12 at 20:56










  • How do you deployed the listed files eventually? Qt5Core.dll not found sonds like a path problem. Try to keep your exe in the same folder than your copy of Qt5Core.dll
    – transistor
    Nov 12 at 21:53










  • @transistor Qt5Core.dll will generate as part of 'windeployqt <executable>' output
    – Srujan B
    Nov 13 at 4:55
















0














When trying to run application with debug mode.. Error: "The code execution cannot proceed because Qt5Core.dll was not found."



When trying to run application with release mode..



problem1: MinGW considering executable as debug executable and hence windeployqt is creating debug version dependent dll!



problem2: Getting same error as shown in above - "The code execution cannot proceed because Qt5Core.dll was not found.".



Can anyone provide solution for this? or request to guide for solving the problem.



Same problem was posted in-
Qt windeployqt results in non-usable deployment



Output of windeployqt



<executable path>windeployqt 
<executable name>.exe
<executable name>.exe 32 bit, debug executable
Adding Qt5Svg for qsvgicond.dll
Skipping plugin qtvirtualkeyboardplugind.dll due to disabled dependencies (Qt5Qml Qt5Quick).
Direct dependencies: Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Widgets
All dependencies : Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Widgets
To be deployed : Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Svg Qt5Widgets
Updating Qt5Cored.dll.
Updating Qt5Guid.dll.
Updating Qt5Networkd.dll.
Updating Qt5Sqld.dll.
Updating Qt5Svgd.dll.
Updating Qt5Widgetsd.dll.
Updating libGLESV2d.dll.
Updating libEGLd.dll.
Updating D3Dcompiler_47.dll.
Updating opengl32sw.dll.
Updating libgcc_s_dw2-1.dll.
Updating libstdc++-6.dll.
Updating qsvgd.dll.
Updating qtgad.dll.
Updating qtiffd.dll.
Updating qwbmpd.dll.
Updating qwebpd.dll.
Creating directory <path of executable>/platforms.
Updating qwindowsd.dll.
Creating directory <path of executable>/sqldrivers.
Updating qsqlited.dll.
Updating qsqlmysqld.dll.
Updating qsqlodbcd.dll.
Updating qsqlpsqld.dll.
Creating directory <path of executable>/styles.
Updating qwindowsvistastyled.dll.
Creating <path of executable>translations...
Creating qt_ar.qm...
Creating qt_bg.qm...
Creating qt_ca.qm...
Creating qt_cs.qm...
Creating qt_da.qm...
Creating qt_de.qm...
Creating qt_en.qm...
Creating qt_es.qm...
Creating qt_fi.qm...
Creating qt_fr.qm...
Creating qt_gd.qm...
Creating qt_he.qm...
Creating qt_hu.qm...
Creating qt_it.qm...
Creating qt_ja.qm...
Creating qt_ko.qm...
Creating qt_lv.qm...
Creating qt_pl.qm...
Creating qt_ru.qm...
Creating qt_sk.qm...
Creating qt_uk.qm...









share|improve this question
























  • What is the output of winqtdeploy? And are you sure you are not mixing debug and release (for example an external loaded dll)?
    – Amfasis
    Nov 12 at 20:56










  • How do you deployed the listed files eventually? Qt5Core.dll not found sonds like a path problem. Try to keep your exe in the same folder than your copy of Qt5Core.dll
    – transistor
    Nov 12 at 21:53










  • @transistor Qt5Core.dll will generate as part of 'windeployqt <executable>' output
    – Srujan B
    Nov 13 at 4:55














0












0








0







When trying to run application with debug mode.. Error: "The code execution cannot proceed because Qt5Core.dll was not found."



When trying to run application with release mode..



problem1: MinGW considering executable as debug executable and hence windeployqt is creating debug version dependent dll!



problem2: Getting same error as shown in above - "The code execution cannot proceed because Qt5Core.dll was not found.".



Can anyone provide solution for this? or request to guide for solving the problem.



Same problem was posted in-
Qt windeployqt results in non-usable deployment



Output of windeployqt



<executable path>windeployqt 
<executable name>.exe
<executable name>.exe 32 bit, debug executable
Adding Qt5Svg for qsvgicond.dll
Skipping plugin qtvirtualkeyboardplugind.dll due to disabled dependencies (Qt5Qml Qt5Quick).
Direct dependencies: Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Widgets
All dependencies : Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Widgets
To be deployed : Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Svg Qt5Widgets
Updating Qt5Cored.dll.
Updating Qt5Guid.dll.
Updating Qt5Networkd.dll.
Updating Qt5Sqld.dll.
Updating Qt5Svgd.dll.
Updating Qt5Widgetsd.dll.
Updating libGLESV2d.dll.
Updating libEGLd.dll.
Updating D3Dcompiler_47.dll.
Updating opengl32sw.dll.
Updating libgcc_s_dw2-1.dll.
Updating libstdc++-6.dll.
Updating qsvgd.dll.
Updating qtgad.dll.
Updating qtiffd.dll.
Updating qwbmpd.dll.
Updating qwebpd.dll.
Creating directory <path of executable>/platforms.
Updating qwindowsd.dll.
Creating directory <path of executable>/sqldrivers.
Updating qsqlited.dll.
Updating qsqlmysqld.dll.
Updating qsqlodbcd.dll.
Updating qsqlpsqld.dll.
Creating directory <path of executable>/styles.
Updating qwindowsvistastyled.dll.
Creating <path of executable>translations...
Creating qt_ar.qm...
Creating qt_bg.qm...
Creating qt_ca.qm...
Creating qt_cs.qm...
Creating qt_da.qm...
Creating qt_de.qm...
Creating qt_en.qm...
Creating qt_es.qm...
Creating qt_fi.qm...
Creating qt_fr.qm...
Creating qt_gd.qm...
Creating qt_he.qm...
Creating qt_hu.qm...
Creating qt_it.qm...
Creating qt_ja.qm...
Creating qt_ko.qm...
Creating qt_lv.qm...
Creating qt_pl.qm...
Creating qt_ru.qm...
Creating qt_sk.qm...
Creating qt_uk.qm...









share|improve this question















When trying to run application with debug mode.. Error: "The code execution cannot proceed because Qt5Core.dll was not found."



When trying to run application with release mode..



problem1: MinGW considering executable as debug executable and hence windeployqt is creating debug version dependent dll!



problem2: Getting same error as shown in above - "The code execution cannot proceed because Qt5Core.dll was not found.".



Can anyone provide solution for this? or request to guide for solving the problem.



Same problem was posted in-
Qt windeployqt results in non-usable deployment



Output of windeployqt



<executable path>windeployqt 
<executable name>.exe
<executable name>.exe 32 bit, debug executable
Adding Qt5Svg for qsvgicond.dll
Skipping plugin qtvirtualkeyboardplugind.dll due to disabled dependencies (Qt5Qml Qt5Quick).
Direct dependencies: Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Widgets
All dependencies : Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Widgets
To be deployed : Qt5Core Qt5Gui Qt5Network Qt5Sql Qt5Svg Qt5Widgets
Updating Qt5Cored.dll.
Updating Qt5Guid.dll.
Updating Qt5Networkd.dll.
Updating Qt5Sqld.dll.
Updating Qt5Svgd.dll.
Updating Qt5Widgetsd.dll.
Updating libGLESV2d.dll.
Updating libEGLd.dll.
Updating D3Dcompiler_47.dll.
Updating opengl32sw.dll.
Updating libgcc_s_dw2-1.dll.
Updating libstdc++-6.dll.
Updating qsvgd.dll.
Updating qtgad.dll.
Updating qtiffd.dll.
Updating qwbmpd.dll.
Updating qwebpd.dll.
Creating directory <path of executable>/platforms.
Updating qwindowsd.dll.
Creating directory <path of executable>/sqldrivers.
Updating qsqlited.dll.
Updating qsqlmysqld.dll.
Updating qsqlodbcd.dll.
Updating qsqlpsqld.dll.
Creating directory <path of executable>/styles.
Updating qwindowsvistastyled.dll.
Creating <path of executable>translations...
Creating qt_ar.qm...
Creating qt_bg.qm...
Creating qt_ca.qm...
Creating qt_cs.qm...
Creating qt_da.qm...
Creating qt_de.qm...
Creating qt_en.qm...
Creating qt_es.qm...
Creating qt_fi.qm...
Creating qt_fr.qm...
Creating qt_gd.qm...
Creating qt_he.qm...
Creating qt_hu.qm...
Creating qt_it.qm...
Creating qt_ja.qm...
Creating qt_ko.qm...
Creating qt_lv.qm...
Creating qt_pl.qm...
Creating qt_ru.qm...
Creating qt_sk.qm...
Creating qt_uk.qm...






qt mingw






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 at 11:12









Amfasis

526314




526314










asked Nov 12 at 18:45









Srujan B

134




134












  • What is the output of winqtdeploy? And are you sure you are not mixing debug and release (for example an external loaded dll)?
    – Amfasis
    Nov 12 at 20:56










  • How do you deployed the listed files eventually? Qt5Core.dll not found sonds like a path problem. Try to keep your exe in the same folder than your copy of Qt5Core.dll
    – transistor
    Nov 12 at 21:53










  • @transistor Qt5Core.dll will generate as part of 'windeployqt <executable>' output
    – Srujan B
    Nov 13 at 4:55


















  • What is the output of winqtdeploy? And are you sure you are not mixing debug and release (for example an external loaded dll)?
    – Amfasis
    Nov 12 at 20:56










  • How do you deployed the listed files eventually? Qt5Core.dll not found sonds like a path problem. Try to keep your exe in the same folder than your copy of Qt5Core.dll
    – transistor
    Nov 12 at 21:53










  • @transistor Qt5Core.dll will generate as part of 'windeployqt <executable>' output
    – Srujan B
    Nov 13 at 4:55
















What is the output of winqtdeploy? And are you sure you are not mixing debug and release (for example an external loaded dll)?
– Amfasis
Nov 12 at 20:56




What is the output of winqtdeploy? And are you sure you are not mixing debug and release (for example an external loaded dll)?
– Amfasis
Nov 12 at 20:56












How do you deployed the listed files eventually? Qt5Core.dll not found sonds like a path problem. Try to keep your exe in the same folder than your copy of Qt5Core.dll
– transistor
Nov 12 at 21:53




How do you deployed the listed files eventually? Qt5Core.dll not found sonds like a path problem. Try to keep your exe in the same folder than your copy of Qt5Core.dll
– transistor
Nov 12 at 21:53












@transistor Qt5Core.dll will generate as part of 'windeployqt <executable>' output
– Srujan B
Nov 13 at 4:55




@transistor Qt5Core.dll will generate as part of 'windeployqt <executable>' output
– Srujan B
Nov 13 at 4:55












1 Answer
1






active

oldest

votes


















0














Actually Qt 5.11.2 is providing an option/flag along with windeployqt for creating dependencies associated with debug/release executable.



For creation of debug version dependent dlls:



windeployqt executable --debug



For creation of release version dependent dlls:



windeployqt executable --release



This resolved my problem.






share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53268285%2fqt5-11-2-windeployqt-is-not-creating-finite-dependent-dll%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Actually Qt 5.11.2 is providing an option/flag along with windeployqt for creating dependencies associated with debug/release executable.



    For creation of debug version dependent dlls:



    windeployqt executable --debug



    For creation of release version dependent dlls:



    windeployqt executable --release



    This resolved my problem.






    share|improve this answer


























      0














      Actually Qt 5.11.2 is providing an option/flag along with windeployqt for creating dependencies associated with debug/release executable.



      For creation of debug version dependent dlls:



      windeployqt executable --debug



      For creation of release version dependent dlls:



      windeployqt executable --release



      This resolved my problem.






      share|improve this answer
























        0












        0








        0






        Actually Qt 5.11.2 is providing an option/flag along with windeployqt for creating dependencies associated with debug/release executable.



        For creation of debug version dependent dlls:



        windeployqt executable --debug



        For creation of release version dependent dlls:



        windeployqt executable --release



        This resolved my problem.






        share|improve this answer












        Actually Qt 5.11.2 is providing an option/flag along with windeployqt for creating dependencies associated with debug/release executable.



        For creation of debug version dependent dlls:



        windeployqt executable --debug



        For creation of release version dependent dlls:



        windeployqt executable --release



        This resolved my problem.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 14 at 16:46









        Srujan B

        134




        134






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53268285%2fqt5-11-2-windeployqt-is-not-creating-finite-dependent-dll%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Xamarin.iOS Cant Deploy on Iphone

            Glorious Revolution

            Dulmage-Mendelsohn matrix decomposition in Python