Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Building Qt Creator for windows 10
Forum Updated to NodeBB v4.3 + New Features

Building Qt Creator for windows 10

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
16 Posts 4 Posters 2.8k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • F fryn3

    I downloaded the source of Qt Creator.
    source
    Successfully assembled using commands:

    qmake path_to_source\qtcreator.pro
    mingw32-make -j4
    

    When I start qtcreator.exe, I getting errors

    Can't find files:

    Qt5Network.dll
    Qt5Gui.dll
    Qt5Core.dll
    Qt5Widgets.dll
    

    To fix this, I copy the created lib, bin, share folders to the folder where Qt is installed, replacing the files.
    Next time when I try to start qtcreator.exe the program displays a message about the absence of files:

    libgcc_s_dw2-1.dll
    libstdc++6.dll
    libwinpthread-1.dll
    

    I moved it to a folder C:/Qt/Tools/QtCreator/bin, where is the assembled creator. After that, the following errors occur:

    qtcreator.exe - entry point not found
    

    err1
    err2
    err3
    And now I think that I was doing something wrong. Help!

    jsulmJ Online
    jsulmJ Online
    jsulm
    Lifetime Qt Champion
    wrote on last edited by jsulm
    #2

    @fryn3 Aren't you missing

    make install
    

    ?
    Also, did you already have an installation of QtCreator in C:/Qt/Tools/QtCreator/bin?

    https://forum.qt.io/topic/113070/qt-code-of-conduct

    F 2 Replies Last reply
    1
    • jsulmJ jsulm

      @fryn3 Aren't you missing

      make install
      

      ?
      Also, did you already have an installation of QtCreator in C:/Qt/Tools/QtCreator/bin?

      F Offline
      F Offline
      fryn3
      wrote on last edited by
      #3

      @jsulm Please tell me where I had to enter make install.
      Yes, I have installed Qt Creator (MSVC 2015, 32 bit), I need a build for MinGW.

      jsulmJ 1 Reply Last reply
      0
      • F fryn3

        @jsulm Please tell me where I had to enter make install.
        Yes, I have installed Qt Creator (MSVC 2015, 32 bit), I need a build for MinGW.

        jsulmJ Online
        jsulmJ Online
        jsulm
        Lifetime Qt Champion
        wrote on last edited by
        #4

        @fryn3 said in Building Qt Creator for windows 10:

        Please tell me where I had to enter make install

        in the same place you called make.

        "Yes, I have installed Qt Creator (MSVC 2015, 32 bit), I need a build for MinGW." - so, you now try to overwrite QtCreator built with MSVC 2015 with your own build?! This, for sure, is not going to work. You're mixing your own binaries with Qt libs built with MSVC 2015.
        Do "make install" and start it from there.

        May I ask you why you need QtCreator built with MinGW?

        https://forum.qt.io/topic/113070/qt-code-of-conduct

        F 2 Replies Last reply
        2
        • jsulmJ jsulm

          @fryn3 said in Building Qt Creator for windows 10:

          Please tell me where I had to enter make install

          in the same place you called make.

          "Yes, I have installed Qt Creator (MSVC 2015, 32 bit), I need a build for MinGW." - so, you now try to overwrite QtCreator built with MSVC 2015 with your own build?! This, for sure, is not going to work. You're mixing your own binaries with Qt libs built with MSVC 2015.
          Do "make install" and start it from there.

          May I ask you why you need QtCreator built with MinGW?

          F Offline
          F Offline
          fryn3
          wrote on last edited by
          #5

          @jsulm can't find comand make.
          I need QtCreator built with MinGW for making own widgets.

          sierdzioS 1 Reply Last reply
          0
          • F fryn3

            @jsulm can't find comand make.
            I need QtCreator built with MinGW for making own widgets.

            sierdzioS Offline
            sierdzioS Offline
            sierdzio
            Moderators
            wrote on last edited by
            #6

            @fryn3 said in Building Qt Creator for windows 10:

            @jsulm can't find comand make.

            qmake path_to_source\qtcreator.pro
            mingw32-make -j4
            mingw32-make install
            

            I need QtCreator built with MinGW for making own widgets.

            No you don't. You can use prebuilt Qt Creator with any Qt version: both MinGW and MSVC work.

            (Z(:^

            1 Reply Last reply
            2
            • SGaistS Offline
              SGaistS Offline
              SGaist
              Lifetime Qt Champion
              wrote on last edited by
              #7

              Hi,

              @jsulm was referring to the mingw32-make command.

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              2
              • jsulmJ jsulm

                @fryn3 said in Building Qt Creator for windows 10:

                Please tell me where I had to enter make install

                in the same place you called make.

                "Yes, I have installed Qt Creator (MSVC 2015, 32 bit), I need a build for MinGW." - so, you now try to overwrite QtCreator built with MSVC 2015 with your own build?! This, for sure, is not going to work. You're mixing your own binaries with Qt libs built with MSVC 2015.
                Do "make install" and start it from there.

                May I ask you why you need QtCreator built with MinGW?

                F Offline
                F Offline
                fryn3
                wrote on last edited by
                #8

                @sierdzio, @sierdzio, @SGaist thanks, now installing.
                @sierdzio The video in youtube has instructions for makeing own widgets.
                If I try to connect my widget(which is assembled minGW) to QT(MSVC), I see a error message: the specified procedure was not found.
                img
                err install module

                sierdzioS jsulmJ 2 Replies Last reply
                0
                • F fryn3

                  @sierdzio, @sierdzio, @SGaist thanks, now installing.
                  @sierdzio The video in youtube has instructions for makeing own widgets.
                  If I try to connect my widget(which is assembled minGW) to QT(MSVC), I see a error message: the specified procedure was not found.
                  img
                  err install module

                  sierdzioS Offline
                  sierdzioS Offline
                  sierdzio
                  Moderators
                  wrote on last edited by
                  #9

                  @fryn3 said in Building Qt Creator for windows 10:

                  @sierdzio The video in youtube has instructions for makeing own widgets.

                  Ah, ok now I understand. You may need your own build of Qt Creator then, indeed.

                  (Z(:^

                  1 Reply Last reply
                  0
                  • F fryn3

                    @sierdzio, @sierdzio, @SGaist thanks, now installing.
                    @sierdzio The video in youtube has instructions for makeing own widgets.
                    If I try to connect my widget(which is assembled minGW) to QT(MSVC), I see a error message: the specified procedure was not found.
                    img
                    err install module

                    jsulmJ Online
                    jsulmJ Online
                    jsulm
                    Lifetime Qt Champion
                    wrote on last edited by
                    #10

                    @fryn3 You could use Visual Studio Community (which is free) to build your widgets and use them in QtCreator.

                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    0
                    • jsulmJ jsulm

                      @fryn3 Aren't you missing

                      make install
                      

                      ?
                      Also, did you already have an installation of QtCreator in C:/Qt/Tools/QtCreator/bin?

                      F Offline
                      F Offline
                      fryn3
                      wrote on last edited by
                      #11

                      @jsulm I installed. What's next?
                      When I start qtcreator.exe, I getting same errors

                      Can't find files:

                      Qt5Network.dll
                      Qt5Gui.dll
                      Qt5Core.dll
                      Qt5Widgets.dll
                      
                      libgcc_s_dw2-1.dll
                      libstdc++6.dll
                      libwinpthread-1.dll
                      
                      qtcreator.exe - entry point not found
                      
                      jsulmJ 1 Reply Last reply
                      0
                      • F fryn3

                        @jsulm I installed. What's next?
                        When I start qtcreator.exe, I getting same errors

                        Can't find files:

                        Qt5Network.dll
                        Qt5Gui.dll
                        Qt5Core.dll
                        Qt5Widgets.dll
                        
                        libgcc_s_dw2-1.dll
                        libstdc++6.dll
                        libwinpthread-1.dll
                        
                        qtcreator.exe - entry point not found
                        
                        jsulmJ Online
                        jsulmJ Online
                        jsulm
                        Lifetime Qt Champion
                        wrote on last edited by
                        #12

                        @fryn3 Are you sure you're starting the one you built from the location where it was installed?

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        F 1 Reply Last reply
                        0
                        • jsulmJ jsulm

                          @fryn3 Are you sure you're starting the one you built from the location where it was installed?

                          F Offline
                          F Offline
                          fryn3
                          wrote on last edited by
                          #13

                          @jsulm absolutely. I built and installed in C:\QtCreator\build\. QtCreater(MSVC) installed is in C:\Qt\Tools\QtCreator.
                          I'm trying to run C:\QtCreator\build\bin\qtcreator.exe.

                          jsulmJ 1 Reply Last reply
                          0
                          • F fryn3

                            @jsulm absolutely. I built and installed in C:\QtCreator\build\. QtCreater(MSVC) installed is in C:\Qt\Tools\QtCreator.
                            I'm trying to run C:\QtCreator\build\bin\qtcreator.exe.

                            jsulmJ Online
                            jsulmJ Online
                            jsulm
                            Lifetime Qt Champion
                            wrote on last edited by
                            #14

                            @fryn3 Then try to copy the missing libraries into the bin directory.

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            F 1 Reply Last reply
                            0
                            • jsulmJ jsulm

                              @fryn3 Then try to copy the missing libraries into the bin directory.

                              F Offline
                              F Offline
                              fryn3
                              wrote on last edited by
                              #15

                              @jsulm I tried.

                              1. Copy to C:\QtCreator\build\bin\
                              • Qt5Network.dll
                              • Qt5Gui.dll
                              • Qt5Core.dll
                              • Qt5Widgets.dll
                              1. I get errors:
                                Can't find files: libgcc_s_dw2-1.dll, libstdc++6.dll, libwinpthread-1.dll
                              2. Copy to C:\QtCreator\build\bin\
                              • libgcc_s_dw2-1.dll
                              • libstdc++6.dll
                              • libwinpthread-1.dll
                              1. I get error:
                                Can't find file: Qt5Qml.dll.
                              2. Copy to C:\QtCreator\build\bin\ Qt5Qml.dll file.
                              3. I get errors: qtcreator.exe - entry point not found
                              jsulmJ 1 Reply Last reply
                              0
                              • F fryn3

                                @jsulm I tried.

                                1. Copy to C:\QtCreator\build\bin\
                                • Qt5Network.dll
                                • Qt5Gui.dll
                                • Qt5Core.dll
                                • Qt5Widgets.dll
                                1. I get errors:
                                  Can't find files: libgcc_s_dw2-1.dll, libstdc++6.dll, libwinpthread-1.dll
                                2. Copy to C:\QtCreator\build\bin\
                                • libgcc_s_dw2-1.dll
                                • libstdc++6.dll
                                • libwinpthread-1.dll
                                1. I get error:
                                  Can't find file: Qt5Qml.dll.
                                2. Copy to C:\QtCreator\build\bin\ Qt5Qml.dll file.
                                3. I get errors: qtcreator.exe - entry point not found
                                jsulmJ Online
                                jsulmJ Online
                                jsulm
                                Lifetime Qt Champion
                                wrote on last edited by
                                #16

                                @fryn3 You're copying Qt libraries from MinGW Qt you used to build QtCreator, right? Also, did you check where "*make install" installed QtCreator?
                                You can use this tool to deploy your QtCreator: http://doc.qt.io/qt-5/windows-deployment.html

                                https://forum.qt.io/topic/113070/qt-code-of-conduct

                                1 Reply Last reply
                                0

                                • Login

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • Categories
                                • Recent
                                • Tags
                                • Popular
                                • Users
                                • Groups
                                • Search
                                • Get Qt Extensions
                                • Unsolved