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. Error message when running qmake -spec linux-g++-32

Error message when running qmake -spec linux-g++-32

Scheduled Pinned Locked Moved Unsolved General and Desktop
20 Posts 2 Posters 6.4k 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.
  • jsulmJ Offline
    jsulmJ Offline
    jsulm
    Lifetime Qt Champion
    wrote on last edited by
    #4

    As I sad you need to install x86 Qt first and then use its qmake:
    /path/to/qt_x86/bin/qmake -spec linux-g++-32

    Why do you want to build for x86? Your system seems to be x86_64.

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

    R 1 Reply Last reply
    0
    • jsulmJ jsulm

      As I sad you need to install x86 Qt first and then use its qmake:
      /path/to/qt_x86/bin/qmake -spec linux-g++-32

      Why do you want to build for x86? Your system seems to be x86_64.

      R Offline
      R Offline
      Renn
      wrote on last edited by
      #5

      @jsulm I have a duty to make cross-compile from 64bit to 32bit. So I asked. I was confused when cross-compiling, the problem is I do not know what to prepare for. From some of my reference when searching, I have installed these libraries they recommend to cross compile, but in reality it does not help at all.

      1 Reply Last reply
      0
      • jsulmJ Offline
        jsulmJ Offline
        jsulm
        Lifetime Qt Champion
        wrote on last edited by
        #6

        You need x86 compiler (how to install depends on your Linux distribution, on Ubuntu 14.04 it is g++-4.8:i386) and x86 Qt (http://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-linux-x86-5.5.1.run) and probably some other libraries as x86.
        As alternative you can set up an x86 Linux either directly on a PC or in a virtual machine, then install Qt there.

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

        R 1 Reply Last reply
        0
        • jsulmJ jsulm

          You need x86 compiler (how to install depends on your Linux distribution, on Ubuntu 14.04 it is g++-4.8:i386) and x86 Qt (http://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-linux-x86-5.5.1.run) and probably some other libraries as x86.
          As alternative you can set up an x86 Linux either directly on a PC or in a virtual machine, then install Qt there.

          R Offline
          R Offline
          Renn
          wrote on last edited by
          #7

          @jsulm If after I installed it, I was able to use it? What else might need libraries?

          1 Reply Last reply
          0
          • jsulmJ Offline
            jsulmJ Offline
            jsulm
            Lifetime Qt Champion
            wrote on last edited by
            #8

            If you installed it try to build your application and see what happens.
            I don't know which other libraries may be needed. You will see it if you build/run your application.

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

            1 Reply Last reply
            0
            • jsulmJ Offline
              jsulmJ Offline
              jsulm
              Lifetime Qt Champion
              wrote on last edited by
              #9

              One tip: if you're using Ubuntu then you should install build-essential:i386 package.

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

              R 1 Reply Last reply
              0
              • jsulmJ jsulm

                One tip: if you're using Ubuntu then you should install build-essential:i386 package.

                R Offline
                R Offline
                Renn
                wrote on last edited by
                #10

                @jsulm What has the build-essential depends? If it has anything to be installed?

                1 Reply Last reply
                0
                • jsulmJ Offline
                  jsulmJ Offline
                  jsulm
                  Lifetime Qt Champion
                  wrote on last edited by
                  #11

                  Before asking such questions you actually could just try to install the package:
                  apt-get install build-essential:i386

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

                  1 Reply Last reply
                  0
                  • jsulmJ Offline
                    jsulmJ Offline
                    jsulm
                    Lifetime Qt Champion
                    wrote on last edited by
                    #12

                    You can use -s parameter to see what is going to happen if you install the package without installing it:
                    apt-get install -s build-essential:i386

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

                    R 1 Reply Last reply
                    0
                    • jsulmJ jsulm

                      You can use -s parameter to see what is going to happen if you install the package without installing it:
                      apt-get install -s build-essential:i386

                      R Offline
                      R Offline
                      Renn
                      wrote on last edited by
                      #13

                      @jsulm To be honest, I've never tried to install it, but it is not installed, which I can only notification. The following notification that I can:
                      Reading package lists... Done
                      Building dependency tree
                      Reading state information... Done
                      Some packages could not be installed. This may mean that you have
                      requested an impossible situation or if you are using the unstable
                      distribution that some required packages have not yet been created
                      or been moved out of Incoming.
                      The following information may help to resolve the situation:

                      The following packages have unmet dependencies:
                      build-essential:i386 : Depends: libc6-dev:i386 but it is not going to be installed or
                      libc-dev:i386
                      Depends: gcc:i386 (>= 4:4.4.3) but it is not going to be installed
                      Depends: g++:i386 (>= 4:4.4.3) but it is not going to be installed
                      Depends: make:i386 but it is not going to be installed
                      E: Unable to correct problems, you have held broken packages.

                      1 Reply Last reply
                      0
                      • jsulmJ Offline
                        jsulmJ Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on last edited by
                        #14

                        OK. Forget it.
                        I'm not sure why but if you try to install it (or g++ for x86) then the package manager wants to remove x86_64 version!
                        This is really bad, it should be possible to install both version in parallel but it isn't.
                        So, probably it will be easier to install a x86 Ubuntu (for example in a virtual machine).

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

                        R 1 Reply Last reply
                        0
                        • jsulmJ jsulm

                          OK. Forget it.
                          I'm not sure why but if you try to install it (or g++ for x86) then the package manager wants to remove x86_64 version!
                          This is really bad, it should be possible to install both version in parallel but it isn't.
                          So, probably it will be easier to install a x86 Ubuntu (for example in a virtual machine).

                          R Offline
                          R Offline
                          Renn
                          wrote on last edited by
                          #15

                          @jsulm Lol, then do not make it more complicated? Complicated in the sense should be used only to compile the first virtual course?

                          1 Reply Last reply
                          0
                          • jsulmJ Offline
                            jsulmJ Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on last edited by
                            #16

                            What do you mean by "compile the first virtual course"?

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

                            R 1 Reply Last reply
                            0
                            • jsulmJ jsulm

                              What do you mean by "compile the first virtual course"?

                              R Offline
                              R Offline
                              Renn
                              wrote on last edited by
                              #17

                              @Renn Sorry, I typo. I mean if you want to build the binary 32bit it must use a virtual machine.

                              1 Reply Last reply
                              0
                              • jsulmJ Offline
                                jsulmJ Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on last edited by
                                #18

                                Well, you don't have to use a virtual machine, but then you have to set up x86 development environment on your x86_64 machine.

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

                                R 1 Reply Last reply
                                0
                                • jsulmJ jsulm

                                  Well, you don't have to use a virtual machine, but then you have to set up x86 development environment on your x86_64 machine.

                                  R Offline
                                  R Offline
                                  Renn
                                  wrote on last edited by
                                  #19

                                  @jsulm The point?

                                  1 Reply Last reply
                                  0
                                  • jsulmJ Offline
                                    jsulmJ Offline
                                    jsulm
                                    Lifetime Qt Champion
                                    wrote on last edited by
                                    #20

                                    The point?
                                    The point is: either you use a x86 Linux to build your application for x86 or you have to set up x86 compiler and x86 Qt on your x86_64 machine.

                                    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