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. Issue building qt 5.12 from latest git repo
Forum Updated to NodeBB v4.3 + New Features

Issue building qt 5.12 from latest git repo

Scheduled Pinned Locked Moved Solved General and Desktop
38 Posts 3 Posters 6.2k Views 3 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.
  • kshegunovK kshegunov

    Just be sure to run git submodule foreach --recursive "git clean -dfx" && git clean -dfx before each configure, to be completely certain there's no *.cache files left over from the previous attempt.

    C Offline
    C Offline
    code_fodder
    wrote on last edited by
    #21

    @kshegunov good idea - I will do that.

    While I am doing that, did you see this before: https://forum.qt.io/topic/95040/build-qt5-from-git-with-msys2-fails-on-wrong-includes

    I just wander if its relevant. But I am not using msys or anything... just wanted to get your thoughts...

    kshegunovK 1 Reply Last reply
    0
    • C code_fodder

      @kshegunov good idea - I will do that.

      While I am doing that, did you see this before: https://forum.qt.io/topic/95040/build-qt5-from-git-with-msys2-fails-on-wrong-includes

      I just wander if its relevant. But I am not using msys or anything... just wanted to get your thoughts...

      kshegunovK Offline
      kshegunovK Offline
      kshegunov
      Moderators
      wrote on last edited by
      #22

      I don't know, it may be. I too use strawberry pearl when I do my windows testing (I develop and use Linux principally). You could try it if anything else doesn't work. It'd also allow you to run the repo's perl init script.

      Read and abide by the Qt Code of Conduct

      1 Reply Last reply
      2
      • C Offline
        C Offline
        code_fodder
        wrote on last edited by
        #23

        @kshegunov well, i just did the super squeaky clean, I even opened using dos cmd.exe just in case conemu was causing an issue (using mingw-w64.bat to set the tool chain path) ... it was a thoroughly horrid experience, I don't recommend it! (why Microsoft, oh why is your command prompt the same one from the 1980's?!?)

        but alas, I got the same result (I was following what you did this time - i.e. exactly the same config. As mentioned in that other post (if I change #include <QVector> to #include "qvector.h" that file does compile - but then I just hit another issue later...

        I am sort of out of ideas - I have had this all working on linux many times, but I just can't seem to get to grips with the windows builds of late : (

        btw guys your support / ideas are much appreciated (and @SGaist)

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

          Did you check whether the QXXXX files were generated ?
          Also, can you test if you have the same problem with 5.12.1 ?

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

          C 1 Reply Last reply
          3
          • SGaistS SGaist

            Did you check whether the QXXXX files were generated ?
            Also, can you test if you have the same problem with 5.12.1 ?

            C Offline
            C Offline
            code_fodder
            wrote on last edited by
            #25

            @SGaist Where would these be? (I mean where should I look)

            I am about to do somthing a bit crazy - and install windows 10!... juuuuust in case... that might take me a little while, but I should still be able to check these QXXX files...

            Once I do that, yes I will try to build 5.12.1 (I assume that is a git branch)

            1 Reply Last reply
            0
            • C Offline
              C Offline
              code_fodder
              wrote on last edited by code_fodder
              #26

              In my build directory I did this (in the qtbase sub folder):

              D:\install\Qt\qt5_static_build\qtbase>find -name "QVector*"
              
              D:\install\Qt\qt5_static_build\qtbase>find -name "qvector*"
              ./include/QtCore/qvector.h
              

              so I found qvector.h, but not QVector

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

                So this means that the forward headers are not generated.

                Do you have perl installed ?

                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
                • C Offline
                  C Offline
                  code_fodder
                  wrote on last edited by code_fodder
                  #28

                  @SGaist yes:

                  D:\install\Qt\qt5_static_build\qtbase>perl --version
                  
                  This is perl 5, version 22, subversion 1 (v5.22.1) built for x86_64-msys-thread-multi
                  
                  Copyright 1987-2015, Larry Wall
                  
                  Perl may be copied only under the terms of either the Artistic License or the
                  GNU General Public License, which may be found in the Perl 5 source kit.
                  
                  Complete documentation for Perl, including FAQ lists, should be found on
                  this system using "man perl" or "perldoc perl".  If you have access to the
                  Internet, point your browser at http://www.perl.org/, the Perl Home Page.
                  
                  1 Reply Last reply
                  0
                  • C Offline
                    C Offline
                    code_fodder
                    wrote on last edited by
                    #29

                    So I am currently doing: perl init-repository --module-subset=essential

                    I had assumed that was just the equivalent of git submodule update --init --recurive

                    1 Reply Last reply
                    0
                    • C Offline
                      C Offline
                      code_fodder
                      wrote on last edited by
                      #30

                      @SGaist ... damn, that did not compile still. Also in my out of source build folder I still can't find "QVector*" ... Is there some way to force the generation of QXXX files?

                      kshegunovK 1 Reply Last reply
                      0
                      • C code_fodder

                        @SGaist ... damn, that did not compile still. Also in my out of source build folder I still can't find "QVector*" ... Is there some way to force the generation of QXXX files?

                        kshegunovK Offline
                        kshegunovK Offline
                        kshegunov
                        Moderators
                        wrote on last edited by
                        #31

                        Would you try strawberry pearl? I imagine this is related to the link you posted (about msys) after all.

                        Read and abide by the Qt Code of Conduct

                        1 Reply Last reply
                        2
                        • C Offline
                          C Offline
                          code_fodder
                          wrote on last edited by
                          #32

                          @kshegunov yes I would try that! - I was just about to try 5.12.1... but that is probably not the issue. I will go look for strawberry perl...

                          1 Reply Last reply
                          0
                          • C Offline
                            C Offline
                            code_fodder
                            wrote on last edited by
                            #33

                            @kshegunov I assume (just downloading it) that you want me to run the perl init repo line again with strawberry perl?

                            1 Reply Last reply
                            1
                            • C Offline
                              C Offline
                              code_fodder
                              wrote on last edited by
                              #34

                              So I just did the init repo with strawberry perl. it did stuff, but gave me a strange warning at the end. Anyway, I am continuing with the config / build...

                              D:\install\Qt\qt5_git_repo>perl init-repository -f
                              + git submodule init qt3d qtactiveqt qtandroidextras qtbase qtcanvas3d qtcharts qtconnectivity qtdatavis3d qtdeclarative qtdoc qtgamepad qtgraphicaleffects qtimageformats qtlocation qtmacextras qtmultimedia qtnetworkauth qtpurchasing qtqa qtquickcontrols qtquickcontrols2 qtremoteobjects qtrepotools qtscript qtscxml qtsensors qtserialbus qtserialport qtspeech qtsvg qttools qttranslations qtvirtualkeyboard qtwayland qtwebchannel qtwebengine qtwebglplugin qtwebsockets qtwebview qtwinextras qtx11extras qtxmlpatterns
                              Submodule 'qt3d' (https://github.com/qt/qt3d.git) registered for path 'qt3d'
                              Submodule 'qtactiveqt' (https://github.com/qt/qtactiveqt.git) registered for path 'qtactiveqt'
                              Submodule 'qtandroidextras' (https://github.com/qt/qtandroidextras.git) registered for path 'qtandroidextras'
                              Submodule 'qtcanvas3d' (https://github.com/qt/qtcanvas3d.git) registered for path 'qtcanvas3d'
                              Submodule 'qtcharts' (https://github.com/qt/qtcharts.git) registered for path 'qtcharts'
                              Submodule 'qtconnectivity' (https://github.com/qt/qtconnectivity.git) registered for path 'qtconnectivity'
                              Submodule 'qtdatavis3d' (https://github.com/qt/qtdatavis3d.git) registered for path 'qtdatavis3d'
                              Submodule 'qtgamepad' (https://github.com/qt/qtgamepad.git) registered for path 'qtgamepad'
                              Submodule 'qtgraphicaleffects' (https://github.com/qt/qtgraphicaleffects.git) registered for path 'qtgraphicaleffects'
                              Submodule 'qtimageformats' (https://github.com/qt/qtimageformats.git) registered for path 'qtimageformats'
                              Submodule 'qtlocation' (https://github.com/qt/qtlocation.git) registered for path 'qtlocation'
                              Submodule 'qtmacextras' (https://github.com/qt/qtmacextras.git) registered for path 'qtmacextras'
                              Submodule 'qtnetworkauth' (https://github.com/qt/qtnetworkauth.git) registered for path 'qtnetworkauth'
                              Submodule 'qtpurchasing' (https://github.com/qt/qtpurchasing.git) registered for path 'qtpurchasing'
                              Submodule 'qtquickcontrols' (https://github.com/qt/qtquickcontrols.git) registered for path 'qtquickcontrols'
                              Submodule 'qtremoteobjects' (https://github.com/qt/qtremoteobjects.git) registered for path 'qtremoteobjects'
                              Submodule 'qtscript' (https://github.com/qt/qtscript.git) registered for path 'qtscript'
                              Submodule 'qtscxml' (https://github.com/qt/qtscxml.git) registered for path 'qtscxml'
                              Submodule 'qtsensors' (https://github.com/qt/qtsensors.git) registered for path 'qtsensors'
                              Submodule 'qtserialbus' (https://github.com/qt/qtserialbus.git) registered for path 'qtserialbus'
                              Submodule 'qtserialport' (https://github.com/qt/qtserialport.git) registered for path 'qtserialport'
                              Submodule 'qtspeech' (https://github.com/qt/qtspeech.git) registered for path 'qtspeech'
                              Submodule 'qtsvg' (https://github.com/qt/qtsvg.git) registered for path 'qtsvg'
                              Submodule 'qtvirtualkeyboard' (https://github.com/qt/qtvirtualkeyboard.git) registered for path 'qtvirtualkeyboard'
                              Submodule 'qtwayland' (https://github.com/qt/qtwayland.git) registered for path 'qtwayland'
                              Submodule 'qtwebchannel' (https://github.com/qt/qtwebchannel.git) registered for path 'qtwebchannel'
                              Submodule 'qtwebengine' (https://github.com/qt/qtwebengine.git) registered for path 'qtwebengine'
                              Submodule 'qtwebglplugin' (https://github.com/qt/qtwebglplugin.git) registered for path 'qtwebglplugin'
                              Submodule 'qtwebsockets' (https://github.com/qt/qtwebsockets.git) registered for path 'qtwebsockets'
                              Submodule 'qtwebview' (https://github.com/qt/qtwebview.git) registered for path 'qtwebview'
                              Submodule 'qtwinextras' (https://github.com/qt/qtwinextras.git) registered for path 'qtwinextras'
                              Submodule 'qtx11extras' (https://github.com/qt/qtx11extras.git) registered for path 'qtx11extras'
                              Submodule 'qtxmlpatterns' (https://github.com/qt/qtxmlpatterns.git) registered for path 'qtxmlpatterns'
                              + git config commit.template D:/install/Qt/qt5_git_repo/.commit-template
                              + git config remote.origin.url https://github.com/qt/qt3d.git
                              + git fetch origin
                              + git config commit.template D:/install/Qt/qt5_git_repo/.commit-template
                              + git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qt3d.git
                              + git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
                              + git config remote.origin.url https://github.com/qt/qtactiveqt.git
                              + git fetch origin
                              + git config commit.template D:/install/Qt/qt5_git_repo/.commit-template
                              + git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtactiveqt.git
                              + git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
                              + git config remote.origin.url https://github.com/qt/qtandroidextras.git
                              + git fetch origin
                              + git config commit.template D:/install/Qt/qt5_git_repo/.commit-template
                              + git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtandroidextras.git
                              + git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
                              + git config remote.origin.url https://github.com/qt/qtbase.git
                              + git fetch origin
                              + git config commit.template D:/install/Qt/qt5_git_repo/.commit-template
                              + git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtbase.git
                              + git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
                              warning: remote.gerrit.fetch has multiple values
                              git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/ exited with status 1280 at init-repository line 198.
                                      Qt::InitRepository::exe(Qt::InitRepository=HASH(0x7fa328), "git", "config", "remote.gerrit.fetch", "+refs/heads/*:refs/remotes/gerrit/*", "/heads/") called at init-repository line 462
                                      Qt::InitRepository::git_add_remotes(Qt::InitRepository=HASH(0x7fa328), "qtbase.git") called at init-repository line 566
                                      Qt::InitRepository::git_clone_one_submodule(Qt::InitRepository=HASH(0x7fa328), "qtbase", "qtbase.git", 0, "") called at init-repository line 409
                                      Qt::InitRepository::git_clone_all_submodules(Qt::InitRepository=HASH(0x7fa328), "qt5", 0, "", "preview", "essential", "addon", "deprecated") called at init-repository line 645
                                      Qt::InitRepository::run(Qt::InitRepository=HASH(0x7fa328)) called at init-repository line 656
                              
                              1 Reply Last reply
                              0
                              • C Offline
                                C Offline
                                code_fodder
                                wrote on last edited by
                                #35

                                Ok, so configured (statically as before without -no-pch) and hit make -j8... now the build has been going for far longer then before!

                                After the config I still could not see the QXXX files, but once the build started (its still going) I got:

                                D:\install\Qt\qt5_static_build>find -name "QVector*"
                                ./qtbase/include/QtCore/QVector
                                ./qtbase/include/QtCore/QVectorIterator
                                ./qtbase/include/QtGui/QVector2D
                                ./qtbase/include/QtGui/QVector3D
                                ./qtbase/include/QtGui/QVector4D
                                

                                So, this looks like the issue... what the difference its between the two perls - I have no idea! - but its looking very good at the moment. I think I can close this issue becuase the specific build error I had is gone (I may still have other troubles - but they can be in a new issue if required).

                                Guys @SGaist @kshegunov - you have both been great - can't upvote enough...

                                1 Reply Last reply
                                2
                                • C Offline
                                  C Offline
                                  code_fodder
                                  wrote on last edited by
                                  #36

                                  btw - I did get another error few minutes later... but I have a few things I can try (its another file that can't be found) but if I struggle I will start a bew post! - setting this as resovled

                                  1 Reply Last reply
                                  1
                                  • C Offline
                                    C Offline
                                    code_fodder
                                    wrote on last edited by
                                    #37

                                    err.... actually one last one - I forgot how you set the question to "resovled" - I am sure it used to be a tag in the heading...?

                                    C 1 Reply Last reply
                                    0
                                    • C code_fodder

                                      err.... actually one last one - I forgot how you set the question to "resovled" - I am sure it used to be a tag in the heading...?

                                      C Offline
                                      C Offline
                                      code_fodder
                                      wrote on last edited by
                                      #38

                                      @code_fodder found it!....

                                      1 Reply Last reply
                                      1

                                      • Login

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