Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.
Forum Updated to NodeBB v4.3 + New Features

Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.

Scheduled Pinned Locked Moved Solved General and Desktop
32 Posts 7 Posters 3.4k 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.
  • nageshN nagesh

    @hbatalha in the build directory check for Makefile. Debug/Release based on your build
    and search for bin/uic and confirm it's from the currect version..

    H Offline
    H Offline
    hbatalha
    wrote on last edited by
    #13

    @nagesh So I uinstalled Qt 5.15.2 MinGW 32-bit and installed Qt 5.15.1 MinGW 32-bit(just for the sake of trying), same results

    search for bin/uic and confirm it's from the currect version..

    C:/Qt/5.15.1/mingw81_32/bin/uic.exe

    That is what I found, I guessing it is right version

    1 Reply Last reply
    0
    • Christian EhrlicherC Offline
      Christian EhrlicherC Offline
      Christian Ehrlicher
      Lifetime Qt Champion
      wrote on last edited by
      #14

      As I already said - either there is a uic.exe from Qt4 around or you checked in the generated ui_mainwindow.h (which also then was created with a Qt4 uic) - remove both.

      Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
      Visit the Qt Academy at https://academy.qt.io/catalog

      H 1 Reply Last reply
      1
      • Christian EhrlicherC Christian Ehrlicher

        As I already said - either there is a uic.exe from Qt4 around or you checked in the generated ui_mainwindow.h (which also then was created with a Qt4 uic) - remove both.

        H Offline
        H Offline
        hbatalha
        wrote on last edited by
        #15

        @Christian-Ehrlicher

        remove both.

        To remove uic.exe and the generated ui_mainwindow.h???
        Sorry I don't understand what exactly you are telling me to do.

        either there is a uic.exe from Qt4 around

        I would guess no. Is there any possible scenario where you would download compilers only from qt5 and end up with some files from qt4 in them?

        1 Reply Last reply
        0
        • Christian EhrlicherC Offline
          Christian EhrlicherC Offline
          Christian Ehrlicher
          Lifetime Qt Champion
          wrote on last edited by
          #16

          Remove the ui_mainwindow.h - it was created with an uic.exe from Qt4.

          Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
          Visit the Qt Academy at https://academy.qt.io/catalog

          H 1 Reply Last reply
          0
          • Christian EhrlicherC Christian Ehrlicher

            Remove the ui_mainwindow.h - it was created with an uic.exe from Qt4.

            H Offline
            H Offline
            hbatalha
            wrote on last edited by
            #17

            @Christian-Ehrlicher I did that and it solved the first error. But I am still left with the other 2 types of compiling error mentioned in the OP.

            1 Reply Last reply
            0
            • Christian EhrlicherC Offline
              Christian EhrlicherC Offline
              Christian Ehrlicher
              Lifetime Qt Champion
              wrote on last edited by
              #18

              The documentation to QSpinBox::valueChanged() exectly desribes your problem. Reading docs is sometimes useful...

              Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
              Visit the Qt Academy at https://academy.qt.io/catalog

              H 1 Reply Last reply
              2
              • Christian EhrlicherC Christian Ehrlicher

                The documentation to QSpinBox::valueChanged() exectly desribes your problem. Reading docs is sometimes useful...

                H Offline
                H Offline
                hbatalha
                wrote on last edited by
                #19

                @Christian-Ehrlicher yeah it works, but still... when I compile using Qt 6.0.1 64-bit it works fine, it should work.

                The problem is not really the compile errors, it is why my code works fine using Qt 6.0.1 64-bit and fails when using Qt 5.15.1/2 32-bit.

                In the OP I posted 3 errors but it is really 3 type of errors, there are a lot more than just 3 errors all over my project and also there are other type of errors.

                I tried commenting the lines that threw the errors and it compiled successfully and thus a question arose: will I have to rewrite everything so it can compile in 32-bit?? That doesn't seem right to me, I don't think it is supposed to be this way.

                JKSHJ 1 Reply Last reply
                0
                • SGaistS Offline
                  SGaistS Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on last edited by
                  #20

                  Because the overloads triggering the compilation error have been either renamed or removed in Qt 6.

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

                  H 1 Reply Last reply
                  0
                  • SGaistS SGaist

                    Because the overloads triggering the compilation error have been either renamed or removed in Qt 6.

                    H Offline
                    H Offline
                    hbatalha
                    wrote on last edited by
                    #21

                    @SGaist Since Qt 6 doesn't yet support 32-bit I should rewrite my code to get it to compile in 32-bit? It will feel like walking backwards though but if that's all to it I don't think I have much of a choice if I want to get my program in 32-bit exe.

                    jsulmJ 1 Reply Last reply
                    0
                    • H hbatalha

                      @SGaist Since Qt 6 doesn't yet support 32-bit I should rewrite my code to get it to compile in 32-bit? It will feel like walking backwards though but if that's all to it I don't think I have much of a choice if I want to get my program in 32-bit exe.

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

                      @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                      Since Qt 6 doesn't yet support 32-bit I should rewrite my code to get it to compile in 32-bit?

                      You have to compile Qt6 for 32bit and then compile your app using that Qt build.

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

                      1 Reply Last reply
                      0
                      • H hbatalha

                        @Christian-Ehrlicher yeah it works, but still... when I compile using Qt 6.0.1 64-bit it works fine, it should work.

                        The problem is not really the compile errors, it is why my code works fine using Qt 6.0.1 64-bit and fails when using Qt 5.15.1/2 32-bit.

                        In the OP I posted 3 errors but it is really 3 type of errors, there are a lot more than just 3 errors all over my project and also there are other type of errors.

                        I tried commenting the lines that threw the errors and it compiled successfully and thus a question arose: will I have to rewrite everything so it can compile in 32-bit?? That doesn't seem right to me, I don't think it is supposed to be this way.

                        JKSHJ Offline
                        JKSHJ Offline
                        JKSH
                        Moderators
                        wrote on last edited by JKSH
                        #23

                        @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                        will I have to rewrite everything...

                        No, you don't.

                        You just need to modify your connect() statements, following the documentation that @Christian-Ehrlicher linked you: https://doc.qt.io/qt-5/qspinbox.html#valueChanged

                        When your code fully compiles in Qt 5, it will also compile in Qt 6. It will work for 32-bit AND 64-bit.

                        ...so it can compile in 32-bit??

                        Please understand: This is not a difference between 32-bit and 64-bit. This is a difference between Qt 5 and Qt 6.

                        Your current code will have the same errors with Qt 5 64-bit.

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

                        H 1 Reply Last reply
                        2
                        • JKSHJ JKSH

                          @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                          will I have to rewrite everything...

                          No, you don't.

                          You just need to modify your connect() statements, following the documentation that @Christian-Ehrlicher linked you: https://doc.qt.io/qt-5/qspinbox.html#valueChanged

                          When your code fully compiles in Qt 5, it will also compile in Qt 6. It will work for 32-bit AND 64-bit.

                          ...so it can compile in 32-bit??

                          Please understand: This is not a difference between 32-bit and 64-bit. This is a difference between Qt 5 and Qt 6.

                          Your current code will have the same errors with Qt 5 64-bit.

                          H Offline
                          H Offline
                          hbatalha
                          wrote on last edited by
                          #24

                          @JKSH

                          You just need to modify your connect() statements

                          Yeah I know, when I said "rewrite everything" I meant only the code that is triggering compiler errors. I think I misspoke.

                          When your code fully compiles in Qt 5, it will also compile in Qt 6. It will work for 32-bit AND 64-bit.
                          Please understand: This is not a difference between 32-bit and 64-bit. This is a difference between Qt 5 and Qt 6.
                          Your current code will have the same errors with Qt 5 64-bit.

                          I am aware of all that, it just feels like walking backwards that's all. Hope the support for 32-bit in Qt 6 starts soon.

                          J.HilkJ JKSHJ 2 Replies Last reply
                          0
                          • H hbatalha

                            @JKSH

                            You just need to modify your connect() statements

                            Yeah I know, when I said "rewrite everything" I meant only the code that is triggering compiler errors. I think I misspoke.

                            When your code fully compiles in Qt 5, it will also compile in Qt 6. It will work for 32-bit AND 64-bit.
                            Please understand: This is not a difference between 32-bit and 64-bit. This is a difference between Qt 5 and Qt 6.
                            Your current code will have the same errors with Qt 5 64-bit.

                            I am aware of all that, it just feels like walking backwards that's all. Hope the support for 32-bit in Qt 6 starts soon.

                            J.HilkJ Offline
                            J.HilkJ Offline
                            J.Hilk
                            Moderators
                            wrote on last edited by
                            #25

                            @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                            I am aware of all that, it just feels like walking backwards that's all. Hope the support for 32-bit in Qt 6 starts soon.

                            Unlikely:

                            This means that we will not have 32bit Windows support available. Additionally, it will no longer be possible to create UWP applications on Windows 10.

                            If you want 32 bit Qt6, you will have to build Qt6 from sources


                            Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                            Q: What's that?
                            A: It's blue light.
                            Q: What does it do?
                            A: It turns blue.

                            H 1 Reply Last reply
                            1
                            • J.HilkJ J.Hilk

                              @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                              I am aware of all that, it just feels like walking backwards that's all. Hope the support for 32-bit in Qt 6 starts soon.

                              Unlikely:

                              This means that we will not have 32bit Windows support available. Additionally, it will no longer be possible to create UWP applications on Windows 10.

                              If you want 32 bit Qt6, you will have to build Qt6 from sources

                              H Offline
                              H Offline
                              hbatalha
                              wrote on last edited by hbatalha
                              #26

                              @J-Hilk said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                              Unlikely:

                              ooh too bad then. Does this mean they are discouraging the development of 32-bit programs on windows? Is there any good reason to provide only the 64-bit version of my program.
                              Edit: From what I gathered providing only the 32-bit is the best option(I might've gotten it wrong though) since it will run happily on both versions so it is not looking clear to me why Qt would discontinue it.

                              If you want 32 bit Qt6, you will have to build Qt6 from sources

                              Could you elaborate on that?!

                              jsulmJ 1 Reply Last reply
                              0
                              • H hbatalha

                                @J-Hilk said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                                Unlikely:

                                ooh too bad then. Does this mean they are discouraging the development of 32-bit programs on windows? Is there any good reason to provide only the 64-bit version of my program.
                                Edit: From what I gathered providing only the 32-bit is the best option(I might've gotten it wrong though) since it will run happily on both versions so it is not looking clear to me why Qt would discontinue it.

                                If you want 32 bit Qt6, you will have to build Qt6 from sources

                                Could you elaborate on that?!

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

                                @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                                Is there any good reason to provide only the 64-bit version of my program.

                                Well, the question is: how many computers are still in use with 32bit OS?

                                QtCompany does not provide 32bit Windows builds anymore simply because hardly anybody needs them (not many downloads in last years) and each additional build means additional work (like testing).

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

                                H 1 Reply Last reply
                                0
                                • jsulmJ jsulm

                                  @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                                  Is there any good reason to provide only the 64-bit version of my program.

                                  Well, the question is: how many computers are still in use with 32bit OS?

                                  QtCompany does not provide 32bit Windows builds anymore simply because hardly anybody needs them (not many downloads in last years) and each additional build means additional work (like testing).

                                  H Offline
                                  H Offline
                                  hbatalha
                                  wrote on last edited by
                                  #28

                                  @jsulm As I plan to continue developing in Qt and following (and hopefully having soon enough knowledge to contribute) its evolution should I also push for 64-bit only programs on windows?

                                  jsulmJ 1 Reply Last reply
                                  0
                                  • H hbatalha

                                    @jsulm As I plan to continue developing in Qt and following (and hopefully having soon enough knowledge to contribute) its evolution should I also push for 64-bit only programs on windows?

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

                                    @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                                    should I also push for 64-bit only programs on windows?

                                    I can't answer this questions as I don't know who is going to use your apps and on which OS. If you have customers who still use 32bit Windows then you need to provide 32bit app. If you do not have such customers then forget about 32bit.

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

                                    H 1 Reply Last reply
                                    0
                                    • H hbatalha

                                      @JKSH

                                      You just need to modify your connect() statements

                                      Yeah I know, when I said "rewrite everything" I meant only the code that is triggering compiler errors. I think I misspoke.

                                      When your code fully compiles in Qt 5, it will also compile in Qt 6. It will work for 32-bit AND 64-bit.
                                      Please understand: This is not a difference between 32-bit and 64-bit. This is a difference between Qt 5 and Qt 6.
                                      Your current code will have the same errors with Qt 5 64-bit.

                                      I am aware of all that, it just feels like walking backwards that's all. Hope the support for 32-bit in Qt 6 starts soon.

                                      JKSHJ Offline
                                      JKSHJ Offline
                                      JKSH
                                      Moderators
                                      wrote on last edited by
                                      #30

                                      @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                                      it just feels like walking backwards that's all.

                                      Well, the problem has existed since the start of Qt 5.0, when the new signal-slot syntax was introduced: https://doc.qt.io/qt-5/signalsandslots-syntaxes.html#selecting-overloaded-signals-and-slots

                                      Qt 6 removed this annoyance. In this sense, Qt 6 is a step forward. That's why moving from Qt 6 to Qt 5 feels like a step backward ;-)

                                      Does this mean they are discouraging the development of 32-bit programs on windows?

                                      Microsoft is discouraging the distribution of 32-bit Windows (although they will continue to support it in the near future): https://www.engadget.com/windows-10-32-bit-oem-173055990.html

                                      If you want 32 bit Qt6, you will have to build Qt6 from sources

                                      Could you elaborate on that?!

                                      You can use your 32-bit compiler to produce 32-bit Qt 6 DLLs: https://wiki.qt.io/Building_Qt_6_from_Git

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

                                      H 1 Reply Last reply
                                      2
                                      • JKSHJ JKSH

                                        @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                                        it just feels like walking backwards that's all.

                                        Well, the problem has existed since the start of Qt 5.0, when the new signal-slot syntax was introduced: https://doc.qt.io/qt-5/signalsandslots-syntaxes.html#selecting-overloaded-signals-and-slots

                                        Qt 6 removed this annoyance. In this sense, Qt 6 is a step forward. That's why moving from Qt 6 to Qt 5 feels like a step backward ;-)

                                        Does this mean they are discouraging the development of 32-bit programs on windows?

                                        Microsoft is discouraging the distribution of 32-bit Windows (although they will continue to support it in the near future): https://www.engadget.com/windows-10-32-bit-oem-173055990.html

                                        If you want 32 bit Qt6, you will have to build Qt6 from sources

                                        Could you elaborate on that?!

                                        You can use your 32-bit compiler to produce 32-bit Qt 6 DLLs: https://wiki.qt.io/Building_Qt_6_from_Git

                                        H Offline
                                        H Offline
                                        hbatalha
                                        wrote on last edited by
                                        #31

                                        @JKSH thank you for all the info, really useful.

                                        1 Reply Last reply
                                        0
                                        • jsulmJ jsulm

                                          @hbatalha said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                                          should I also push for 64-bit only programs on windows?

                                          I can't answer this questions as I don't know who is going to use your apps and on which OS. If you have customers who still use 32bit Windows then you need to provide 32bit app. If you do not have such customers then forget about 32bit.

                                          H Offline
                                          H Offline
                                          hbatalha
                                          wrote on last edited by
                                          #32

                                          @jsulm said in Qt 5.15.2 MinGW 32-bit throwing errors but 64-bit version working fine.:

                                          If you do not have such customers

                                          I am hoping I don't.

                                          Thank you for your insight.

                                          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