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. QT install, fourth attempt

QT install, fourth attempt

Scheduled Pinned Locked Moved Solved Installation and Deployment
27 Posts 5 Posters 5.9k Views
  • 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.
  • B BKBK
    14 Dec 2018, 01:06

    JKSH suggested: Install the C++ dev tools for MSVC 2017 ....
    I am finding the term "dev tools" a bit imprecise.
    I go to the control panel and apps, and find Visual Studio 2017 then select modify. Here are the things I can modify, which I presume means to install:
    .NET desk development (getting this one)
    Desk development with C++ (getting this one)
    Universal Windows Platform development (getting this one)
    ASP.NET and web development (getting this one)
    Azure development
    Python development (getting this one)
    Node.js development
    Data storage and processing
    Data science and analytical applications
    Office/SharePoint development
    Mobile & Gaming, five items I have omitted
    Visual Studio Extension development (getting this one)
    Text states: Create add-ons and extensions for Visual Studio, including new commands, code analzers, and tool windows.
    Linux development with C++ (getting this one)
    .NET Core cross-platform development
    and that is the limit of what is presented.

    Please tell me exactly what dev tool I need to install. I need something to search on.

    J Offline
    J Offline
    JKSH
    Moderators
    wrote on 14 Dec 2018, 01:53 last edited by
    #13

    @BKBK said in QT install, fourth attempt:

    Please tell me exactly what dev tool I need to install.

    The one with "C++" in its name, for Windows (You listed it as "Desk development with C++")

    Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

    1 Reply Last reply
    3
    • B Offline
      B Offline
      BKBK
      wrote on 15 Dec 2018, 20:19 last edited by
      #14

      After installing all those goodies, include the item verified by JKSH, I try again.
      I really feel like a dunce here. If someone could sit beside me they would be able to get this working in a few minutes.
      I very much appreciate the time and patience from each of you.

      Starting from the beginning.
      Launch QT Creator 4.8.0
      Select Examples
      Select Basic Layouts Example
      From the new dialog select Running the Example
      The dialog changes and displays: For more information, visit Building and Running an Example.
      Click that link to open this web page:
      http://doc.qt.io/qtcreator/creator-build-example-application.html
      It regresses and advises: In the Welcome mode, select Examples (1).
      Ok, follow those steps:
      main.cpp is opened

      1. In the Welcome mode, select Examples (1).
        a. Did that to get the list of examples
      2. Select Basic Layouts
        a. Main.cpp is displayed
      3. To check that the application code can be compiled and linked for a device, click the Kit Selector and select a kit for the device.
        a. The only thing close is: Build -> Open Build and Run Kit Selector
        b. To get a temporary dialog that I cannot capture to post. It states
        c. The project basic layouts is not configured. You can configure it in the Projects Mode
        d. The two words Projects Mode are a link so select that.
        e. Back to the instruction: … select a kit for the device.
        f. Now, what is a kit?
        g. Click menu item Help -> Index
        i. That is not an index.
        h. Click Help -> Contents
        i. No help
        i. Internet search, here is a possibility: http://doc.qt.io/qtcreator/creator-targets.html
        i. OK, got a possible definition of kit.
        j. Back to the instructions: Select Tools > Options > Kits > Add.
        k. There is an error indicator and shown here:

      0_1544904703800_Bad kit.JPG

      l. Notice the red circle enclosing an exclamation mark.
      m. Hover the mouse over it, very carefully and just right, to get the same image I posted a few days ago.
      n. There is an INTERNAL CONTRADICTION.
      o. Please re-read that sentence at least once more.
      p. The dialog states MSVC 2017, the title of the hover popup states MSVC 2017, but the text of the dialog states msvc2012-pe-64 bit.
      q. I don’t know how to fix that, but will try anyway.
      r. Click it to open the dialog and select Compiler -> C++
      s. That field currently states: Microsoft Visual C++ Compiler 11.0 (amd64)
      t. Ok, found two later candidates:
      i. Microsoft Visual C++ Compiler 15.0 (amd64)
      ii. Microsoft Visual C++ Compiler 15.0 (amd64_x86)
      iii. There are versions with (amd64_x86) and (x86_amd64) Note the reversal of terms. I did not find anything that discussed that aspect.
      u. Some searching “indicates” the better choice might be x86_amd64, select that for C and C++. I have an AMD processor so selected: amd64_x86.
      v. For debugger only one choice: GNU gdb 7.8 for MinGW 4.9.2 32bit
      w. Maybe I have a kit selected, don’t know for sure.
      x. Click Apply, Ok
      4. Step 4 says Click (Run) to build and run the application.
      5. Don’t have that.
      6. There is on in the bottom left corner that might bit it.

      0_1544904850136_possible run button.JPG
      7. It is greyed out.
      8. Go to menu item Build, Run is disabled.
      9. Click Build -> Build file “main.cpp”
      10. No noticeable results
      11. Click Build -> Generate Compilation Database for “basiclayouts.”
      12. No noticeable results. Build -> Run is not enabled.
      13. Look along the bottom and see if there is anything in the 8 tabs there.
      14. Nothing
      Lets see if anything changed. Click Build -> Open and Build Run Kit Selector to get

      0_1544904898491_configure project.JPG
      Why are there three identical rows?
      Examine each and the details are identical.
      Get a hover dialog
      0_1544905099865_msvc error dialog3.jpg

      There is a line tagged as Error: but I cannot determine what the error really is or how to correct it.

      I stop here in the hopes that someone will point out my errors.

      1 Reply Last reply
      0
      • S Offline
        S Offline
        SGaist
        Lifetime Qt Champion
        wrote on 15 Dec 2018, 20:29 last edited by
        #15

        Use the amd64, what you selected now is a cross-compiler to do 32 to 64bit compilation.

        amd64 is the original name for the 64bit architecture known now as x86_64 because AMD were the first to produce a 64bit version of the x86 architecture. So amd64 and x86_64 are synonyms.

        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
        • B Offline
          B Offline
          BKBK
          wrote on 16 Dec 2018, 02:21 last edited by BKBK
          #16

          From SGaist I changed the selection to: Microsoft Visual C++ Compiler 15.0 (amd64) for both C and C++ compiler. Now the hover message looks better as it states:

          Warning: The ABI of the selected debugger does not match the tool chain ABI.

          It no longer has the warning about the compiler not working. As I started to chase down the VS debugger it occurred to me to ask:

          The only option I am really aware of is Visual Studio. But I see things about the GNU tool chain. Which tool chain do I really want? Here are some drivers.

          I am using G++ at work on a Centos Linux machine. There I am working Qt for interactive display and OpenGL to build a strip chart. Maybe that matters.

          At home I have just started an Arduino project. The processor will sense temperatures, pressures, and currents in the compressor and air handler and provide data to an app on my PC. That app will show the status of our HVAC system. And that app is this Qt environment.

          Have you a suggestion as to which tool set to select?

          1 Reply Last reply
          0
          • S Offline
            S Offline
            SGaist
            Lifetime Qt Champion
            wrote on 16 Dec 2018, 07:35 last edited by
            #17

            The debugger follows the same rule as the compiler: it must match the architecture.

            As for the arduino, don't you have a specific tool chain for it ?

            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
            0
            • B Offline
              B Offline
              BKBK
              wrote on 16 Dec 2018, 16:19 last edited by
              #18

              The Arduino does have its own IDE. I have installed that and it seems to be working.
              Because of work I am leaning towards the GNU tool chain. I really don't know if there are any downsides to that so ask for opinions. I do have a Linux machine that I might fire up. However, I want to make my HVAC app available to most people and that audience is predominantly Windows.
              What ever you, every read, suggests, it will be my decision, meaning only that I won't blame anyone. Still, I suspect there will not be a bad choice, just maybe one better than the other.

              A 1 Reply Last reply 16 Dec 2018, 16:56
              0
              • B BKBK
                16 Dec 2018, 16:19

                The Arduino does have its own IDE. I have installed that and it seems to be working.
                Because of work I am leaning towards the GNU tool chain. I really don't know if there are any downsides to that so ask for opinions. I do have a Linux machine that I might fire up. However, I want to make my HVAC app available to most people and that audience is predominantly Windows.
                What ever you, every read, suggests, it will be my decision, meaning only that I won't blame anyone. Still, I suspect there will not be a bad choice, just maybe one better than the other.

                A Offline
                A Offline
                aha_1980
                Lifetime Qt Champion
                wrote on 16 Dec 2018, 16:56 last edited by
                #19

                Hi @BKBK,

                On Linux you can use GCC and Clang, and if I remember correctly, both produce binary compatible code, so you can use both with one Qt version.

                On Mac, IMHO, only Clang is used for a long time, probably because Apple said so.

                For Windows, you can use the MSVC and the MinGW compiler with Qt.

                For MSVC, you have to install the MS C++ compiler, the MS CDB console debugger and a suitable Qt MSVC version.

                For MinGW, you can all install with the Qt online installer: the GCC compiler, the GDB debugger and the Qt MinGW version.

                Both toolchains can create fully working Windows programs, however some external libraries are only supported on one of the two.

                In Principle you can develop on one platform and you or someone else can compile on another platform, as long as you don't use System-specific APIs.

                I hope that clearifies things a bit.

                Qt has to stay free or it will die.

                1 Reply Last reply
                1
                • B Offline
                  B Offline
                  BKBK
                  wrote on 16 Dec 2018, 19:53 last edited by
                  #20

                  Thank you aha_1980
                  This this boils down to: Which will be easier to install and get working. The reasons for so much trouble getting the working are quite unclear, but I will continue the attempts.

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on 16 Dec 2018, 20:30 last edited by
                    #21

                    If you want a quick and easy setup to start using Qt then the MinGW version is the way to go. You can install everything in one go: Qt, the compiler and debugger.

                    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
                    1
                    • B Offline
                      B Offline
                      BKBK
                      wrote on 17 Dec 2018, 01:36 last edited by
                      #22

                      @SGaist said in QT install, fourth attempt:

                      MinGW

                      I am going with MinGW.
                      I found the MinGW web site and I think I installed it. Not positive, but lets see what happens.
                      Open QT Creator and get to here

                      0_1545010289155_sunday 01.JPG
                      Click Manage Kits to get:

                      0_1545010327387_sunday 02.JPG

                      How important is this Auto-detected versus Manual. I cannot tell. But I have MinGW installed and do not want MSVC so try to remove all the MSVC and install the MinGW.
                      Start with the Auto-detected by clicking on the item to get
                      0_1545010372111_sunday 03.JPG

                      Go to Compiler -> C++ and direct it to the MiGW directory.
                      No, that does not work.
                      Click on button Manage to the right. To get:
                      0_1545010413852_sunday 04.JPG

                      Don’t want all the Microsoft entries, there is a Remove button that is activated when a line is selected, so do a bunch of removes.
                      0_1545010450896_sunday 05.JPG

                      As this is being done manually, click on Manual -> C++, that does nothing.
                      Click on the Add button, not shown in the previous image.
                      Add -> MinGW -> C++ to get a selection dialog.
                      Browse to the path to get here
                      0_1545010487266_sunday 06.JPG

                      Question: What belongs in the fields: Platform codegen flags, Platform linker flags, and ABI?

                      To continue, click Apply. It does not acknowledge the button click.
                      Click OK. The form closes. But debugger was not set.
                      Click Manage Kits again and select debuggers to get
                      0_1545010526050_sunday 07.JPG

                      Note that it reports 32 bit. I have always selected 64. I don’t know how important this is so continue
                      Back to here: image Sunday 08
                      0_1545010556053_sunday 08.JPG

                      After all that work, Qt Creator is still set up for MSVC 2017.
                      I don’t know what to do different. Please advise.

                      J J 2 Replies Last reply 17 Dec 2018, 02:48
                      0
                      • B BKBK
                        17 Dec 2018, 01:36

                        @SGaist said in QT install, fourth attempt:

                        MinGW

                        I am going with MinGW.
                        I found the MinGW web site and I think I installed it. Not positive, but lets see what happens.
                        Open QT Creator and get to here

                        0_1545010289155_sunday 01.JPG
                        Click Manage Kits to get:

                        0_1545010327387_sunday 02.JPG

                        How important is this Auto-detected versus Manual. I cannot tell. But I have MinGW installed and do not want MSVC so try to remove all the MSVC and install the MinGW.
                        Start with the Auto-detected by clicking on the item to get
                        0_1545010372111_sunday 03.JPG

                        Go to Compiler -> C++ and direct it to the MiGW directory.
                        No, that does not work.
                        Click on button Manage to the right. To get:
                        0_1545010413852_sunday 04.JPG

                        Don’t want all the Microsoft entries, there is a Remove button that is activated when a line is selected, so do a bunch of removes.
                        0_1545010450896_sunday 05.JPG

                        As this is being done manually, click on Manual -> C++, that does nothing.
                        Click on the Add button, not shown in the previous image.
                        Add -> MinGW -> C++ to get a selection dialog.
                        Browse to the path to get here
                        0_1545010487266_sunday 06.JPG

                        Question: What belongs in the fields: Platform codegen flags, Platform linker flags, and ABI?

                        To continue, click Apply. It does not acknowledge the button click.
                        Click OK. The form closes. But debugger was not set.
                        Click Manage Kits again and select debuggers to get
                        0_1545010526050_sunday 07.JPG

                        Note that it reports 32 bit. I have always selected 64. I don’t know how important this is so continue
                        Back to here: image Sunday 08
                        0_1545010556053_sunday 08.JPG

                        After all that work, Qt Creator is still set up for MSVC 2017.
                        I don’t know what to do different. Please advise.

                        J Offline
                        J Offline
                        JKSH
                        Moderators
                        wrote on 17 Dec 2018, 02:48 last edited by
                        #23

                        OK @BKBK, you've tried lots of different things recently and now you have numerous overlapping installations. It is best to start from scratch again.

                        If you follow these steps carefully and thoroughly, you will have a working system:

                        1. In Qt Creator go to the Kits tab and Remove your 2 Manual kits ("Desktop" and "Unnamed"):
                        2. Close Qt Creator.
                        3. Go to the folder where you installed Qt (C:\Qt ?) and run MaintenanceTool.exe. Uninstall everything.
                        4. Uninstall everything in C:\MinGW too.
                        5. Run the Qt installer again. Select these 2 items (no more, no less):
                          • Qt > Qt 5.12.0 > MinGW 7.3.0 64-bit
                          • Qt > Tools > MinGW 7.3.0 64 bit
                        6. Run Qt Creator and compile an example.

                        That's it. You don't need to install or configure anything else.

                        If it still doesn't work, do not change any settings; doing so will complicate things further. Post screenshots and we'll have a look.

                        Question: What belongs in the fields: Platform codegen flags, Platform linker flags, and ABI?

                        Those fields are for cross-compilers. You don't need them if you follow the steps above carefully and thoroughly.

                        Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                        B 1 Reply Last reply 18 Dec 2018, 03:23
                        3
                        • B Offline
                          B Offline
                          BKBK
                          wrote on 17 Dec 2018, 05:08 last edited by
                          #24

                          I am working that. Thank you.

                          1 Reply Last reply
                          0
                          • B BKBK
                            17 Dec 2018, 01:36

                            @SGaist said in QT install, fourth attempt:

                            MinGW

                            I am going with MinGW.
                            I found the MinGW web site and I think I installed it. Not positive, but lets see what happens.
                            Open QT Creator and get to here

                            0_1545010289155_sunday 01.JPG
                            Click Manage Kits to get:

                            0_1545010327387_sunday 02.JPG

                            How important is this Auto-detected versus Manual. I cannot tell. But I have MinGW installed and do not want MSVC so try to remove all the MSVC and install the MinGW.
                            Start with the Auto-detected by clicking on the item to get
                            0_1545010372111_sunday 03.JPG

                            Go to Compiler -> C++ and direct it to the MiGW directory.
                            No, that does not work.
                            Click on button Manage to the right. To get:
                            0_1545010413852_sunday 04.JPG

                            Don’t want all the Microsoft entries, there is a Remove button that is activated when a line is selected, so do a bunch of removes.
                            0_1545010450896_sunday 05.JPG

                            As this is being done manually, click on Manual -> C++, that does nothing.
                            Click on the Add button, not shown in the previous image.
                            Add -> MinGW -> C++ to get a selection dialog.
                            Browse to the path to get here
                            0_1545010487266_sunday 06.JPG

                            Question: What belongs in the fields: Platform codegen flags, Platform linker flags, and ABI?

                            To continue, click Apply. It does not acknowledge the button click.
                            Click OK. The form closes. But debugger was not set.
                            Click Manage Kits again and select debuggers to get
                            0_1545010526050_sunday 07.JPG

                            Note that it reports 32 bit. I have always selected 64. I don’t know how important this is so continue
                            Back to here: image Sunday 08
                            0_1545010556053_sunday 08.JPG

                            After all that work, Qt Creator is still set up for MSVC 2017.
                            I don’t know what to do different. Please advise.

                            J Offline
                            J Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on 17 Dec 2018, 08:14 last edited by
                            #25

                            @BKBK said in QT install, fourth attempt:

                            I found the MinGW web site and I think I installed it

                            Please don't!
                            Simply use Qt Online Installer or Qt Maintenance Tool (if Qt is already installed) and select Qt MinGW AND MinGW. It will install MinGW which is proven to work with Qt you're installing.

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

                            1 Reply Last reply
                            3
                            • J JKSH
                              17 Dec 2018, 02:48

                              OK @BKBK, you've tried lots of different things recently and now you have numerous overlapping installations. It is best to start from scratch again.

                              If you follow these steps carefully and thoroughly, you will have a working system:

                              1. In Qt Creator go to the Kits tab and Remove your 2 Manual kits ("Desktop" and "Unnamed"):
                              2. Close Qt Creator.
                              3. Go to the folder where you installed Qt (C:\Qt ?) and run MaintenanceTool.exe. Uninstall everything.
                              4. Uninstall everything in C:\MinGW too.
                              5. Run the Qt installer again. Select these 2 items (no more, no less):
                                • Qt > Qt 5.12.0 > MinGW 7.3.0 64-bit
                                • Qt > Tools > MinGW 7.3.0 64 bit
                              6. Run Qt Creator and compile an example.

                              That's it. You don't need to install or configure anything else.

                              If it still doesn't work, do not change any settings; doing so will complicate things further. Post screenshots and we'll have a look.

                              Question: What belongs in the fields: Platform codegen flags, Platform linker flags, and ABI?

                              Those fields are for cross-compilers. You don't need them if you follow the steps above carefully and thoroughly.

                              B Offline
                              B Offline
                              BKBK
                              wrote on 18 Dec 2018, 03:23 last edited by BKBK
                              #26

                              @JKSH Ok then, I can build the example project. I had to add a few more steps to configure the project, but then it built and ran.

                              @jsulm Too late, I had already done that. Then I followed the instructions from JKSH, deleted everything, installed a fifth time, and now am up and running.

                              Qt is working now.
                              Thank you all for your time and patience.

                              J 1 Reply Last reply 18 Dec 2018, 06:52
                              1
                              • B BKBK
                                18 Dec 2018, 03:23

                                @JKSH Ok then, I can build the example project. I had to add a few more steps to configure the project, but then it built and ran.

                                @jsulm Too late, I had already done that. Then I followed the instructions from JKSH, deleted everything, installed a fifth time, and now am up and running.

                                Qt is working now.
                                Thank you all for your time and patience.

                                J Offline
                                J Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on 18 Dec 2018, 06:52 last edited by
                                #27

                                @BKBK OK, that's fine. But next time if you install Qt you should do it like I suggested - for me it was always working out of the box.
                                Happy coding!

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

                                1 Reply Last reply
                                1

                                22/27

                                17 Dec 2018, 01:36

                                • Login

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