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. Reinstall Qt5 with QtMultimedia using Ubuntu Mate

Reinstall Qt5 with QtMultimedia using Ubuntu Mate

Scheduled Pinned Locked Moved Unsolved General and Desktop
moduleinstall
44 Posts 4 Posters 22.5k 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.
  • J jsulm
    21 Dec 2017, 08:47

    @Xenoshell As you can see from what you posted those errors are coming from examples. As @SGaist suggested there is no need to build examples and tests (so, no these errors are not important). Use -skip to not to build examples and tests.

    X Offline
    X Offline
    Xenoshell
    wrote on 21 Dec 2017, 08:49 last edited by
    #34

    @jsulm yeah, since make is now finished its a little bit too late to skip the examples. But its good to know that those errors dont matter

    1 Reply Last reply
    0
    • X Offline
      X Offline
      Xenoshell
      wrote on 21 Dec 2017, 09:10 last edited by
      #35

      @jsulm , @JonB somehow in the qt5 folder there is no qtmultimedia. I think i am going mental

      J 1 Reply Last reply 21 Dec 2017, 09:24
      0
      • X Xenoshell
        21 Dec 2017, 09:10

        @jsulm , @JonB somehow in the qt5 folder there is no qtmultimedia. I think i am going mental

        J Offline
        J Offline
        jsulm
        Lifetime Qt Champion
        wrote on 21 Dec 2017, 09:24 last edited by
        #36

        @Xenoshell make install ?

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

        X 1 Reply Last reply 21 Dec 2017, 09:38
        0
        • J jsulm
          21 Dec 2017, 09:24

          @Xenoshell make install ?

          X Offline
          X Offline
          Xenoshell
          wrote on 21 Dec 2017, 09:38 last edited by
          #37

          @jsulm yeah already did that

          J 1 Reply Last reply 21 Dec 2017, 09:40
          0
          • X Xenoshell
            21 Dec 2017, 09:38

            @jsulm yeah already did that

            J Offline
            J Offline
            jsulm
            Lifetime Qt Champion
            wrote on 21 Dec 2017, 09:40 last edited by jsulm
            #38

            @Xenoshell Do you mean there is no libQt5Multimedia.* in lib directory and no header files?

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

            X 1 Reply Last reply 21 Dec 2017, 09:46
            0
            • J jsulm
              21 Dec 2017, 09:40

              @Xenoshell Do you mean there is no libQt5Multimedia.* in lib directory and no header files?

              X Offline
              X Offline
              Xenoshell
              wrote on 21 Dec 2017, 09:46 last edited by Xenoshell
              #39

              @jsulm nope in the lib folder there is only just everything else. Here is my command i used ./configure -opengl desktop -gui -widgets -gstreamer -pulseaudio -alsa -ffmpeg -dbus-linked, Do i maybe have to also add -multimedia?? I dont think there even is that command, but what do i have to do to install QtMultimedia

              1 Reply Last reply
              0
              • S Offline
                S Offline
                SGaist
                Lifetime Qt Champion
                wrote on 21 Dec 2017, 10:19 last edited by
                #40

                Are you calling configure from the top folder ?
                If so, did you clean everything before calling configure again ?

                As I suggest every time: use out of source builds, that way if something goes wrong or you want to use a different set of option, you can simply nuke everything or change the folder and you know for sure you start from a clean state.

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

                X 1 Reply Last reply 21 Dec 2017, 10:31
                0
                • S SGaist
                  21 Dec 2017, 10:19

                  Are you calling configure from the top folder ?
                  If so, did you clean everything before calling configure again ?

                  As I suggest every time: use out of source builds, that way if something goes wrong or you want to use a different set of option, you can simply nuke everything or change the folder and you know for sure you start from a clean state.

                  X Offline
                  X Offline
                  Xenoshell
                  wrote on 21 Dec 2017, 10:31 last edited by
                  #41

                  @SGaist i called configure from the top folder i got from the .tar.gz file. I just deleted config.cache before calling configure again. How would i go about cleaning everything before calling configure again? What are out of source builds?

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on 21 Dec 2017, 11:00 last edited by
                    #42

                    make distclean or make confclean

                    As the name suggests: builds that happens out of the source tree.

                    Basically:

                    mkdir /home/your_user/build_qt5
                    pushd /home/your_user/build_qt5
                    /path/to/Qt_sources/configure -nomake tests -nomake examples
                    make -j (number_of_cores * 2 + 1)
                    make install
                    popd
                    

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

                    X 1 Reply Last reply 21 Dec 2017, 11:32
                    0
                    • S SGaist
                      21 Dec 2017, 11:00

                      make distclean or make confclean

                      As the name suggests: builds that happens out of the source tree.

                      Basically:

                      mkdir /home/your_user/build_qt5
                      pushd /home/your_user/build_qt5
                      /path/to/Qt_sources/configure -nomake tests -nomake examples
                      make -j (number_of_cores * 2 + 1)
                      make install
                      popd
                      
                      X Offline
                      X Offline
                      Xenoshell
                      wrote on 21 Dec 2017, 11:32 last edited by Xenoshell
                      #43

                      @SGaist Ok, is this even useful now? I mean i already installed Qt5 so isnt it a little bit too late?
                      Btw in my other post about my code are some new outputs since i installed Qt5.

                      1 Reply Last reply
                      0
                      • S Offline
                        S Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on 21 Dec 2017, 20:28 last edited by
                        #44

                        It will be in the future when you'll build Qt again.

                        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

                        43/44

                        21 Dec 2017, 11:32

                        • Login

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