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. error : undefined reference to `qt_resourceFeatureZlib'

error : undefined reference to `qt_resourceFeatureZlib'

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
27 Posts 3 Posters 5.3k 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.
  • S sberkantgulen

    @jsulm said in error : undefined reference to `qt_resourceFeatureZlib':

    build

    error3.png

    Is there any difference between PKG_CONFIG ?

    export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig/
    source ~/.bashrc
    echo $PKG_CONFIG_PATH

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

    @sberkantgulen This is not the whole compile output. Please do a complete rebuild and post the compile output (delete build folder, run qmake and build).

    There shouldn't be any need to set PKG_CONFIG_PATH.

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

    1 Reply Last reply
    0
    • S Offline
      S Offline
      sberkantgulen
      wrote on last edited by
      #7

      It is so long, you can download from link below.

      https://s5.dosya.tc/server4/f78313/qt_build.odt.html

      jsulmJ 1 Reply Last reply
      0
      • S sberkantgulen

        It is so long, you can download from link below.

        https://s5.dosya.tc/server4/f78313/qt_build.odt.html

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

        @sberkantgulen Please upload a simple text file, not Open Office one (I will not open office files)...

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

        1 Reply Last reply
        0
        • S Offline
          S Offline
          sberkantgulen
          wrote on last edited by
          #9

          Uh, sorry..

          https://s5.dosya.tc/server4/smn9tn/err.txt.html

          jsulmJ 1 Reply Last reply
          0
          • S sberkantgulen

            Uh, sorry..

            https://s5.dosya.tc/server4/smn9tn/err.txt.html

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

            @sberkantgulen Linker cannot find your libs:

            /usr/bin/ld: cannot find -lBL
            /usr/bin/ld: cannot find -lDL
            

            You should check how you handle the dependencies between your subfolders.
            g++ -Wl,-rpath,/home/kkvyz1/Qt5.14.2/5.14.2/gcc_64/lib -o PL main.o qrc_qml.o -L/usr/lib/x86_64-linux-gnu/ -L/home/kkvyz1/Desktop/dQGCS/dev/build-YKI-Desktop_Qt_5_14_2_GCC_64bit-Debug/PL/../BL/ -lBL -L/home/kkvyz1/Desktop/dQGCS/dev/build-YKI-Desktop_Qt_5_14_2_GCC_64bit-Debug/PL/../DL/ -lDL -lcairo -lQt5GStreamerQuick-1.0 -lQt5Quick -lQt5Gui -lQt5Qml -lQt5Network -lgstvideo-1.0 -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0 -lQt5GStreamer-1.0 -lQt5GLib-2.0 -lQt5Core /home/kkvyz1/Qt5.14.2/5.14.2/gcc_64/lib/libQt5Quick.so /home/kkvyz1/Qt5.14.2/5.14.2/gcc_64/lib/libQt5Gui.so /home/kkvyz1/Qt5.14.2/5.14.2/gcc_64/lib/libQt5QmlModels.so /home/kkvyz1/Qt5.14.2/5.14.2/gcc_64/lib/libQt5Qml.so /home/kkvyz1/Qt5.14.2/5.14.2/gcc_64/lib/libQt5Network.so /home/kkvyz1/Qt5.14.2/5.14.2/gcc_64/lib/libQt5Core.so -lGL -lpthread

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

            1 Reply Last reply
            1
            • S Offline
              S Offline
              sberkantgulen
              wrote on last edited by
              #11

              @jsulm said in error : undefined reference to `qt_resourceFeatureZlib':

              how you handle the dependencies between your subfolders.

              My project's pro file like this:

              TEMPLATE = subdirs
              
              SUBDIRS += \
                  DL \
                  BL \
                  PL
              

              And other .pro files like this:

              error4.png

              How exactly should I make a change?
              Also this project works when I auto-install with 5.9.

              jsulmJ 1 Reply Last reply
              0
              • S sberkantgulen

                @jsulm said in error : undefined reference to `qt_resourceFeatureZlib':

                how you handle the dependencies between your subfolders.

                My project's pro file like this:

                TEMPLATE = subdirs
                
                SUBDIRS += \
                    DL \
                    BL \
                    PL
                

                And other .pro files like this:

                error4.png

                How exactly should I make a change?
                Also this project works when I auto-install with 5.9.

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

                @sberkantgulen Take a look at https://doc.qt.io/qt-5/qmake-variable-reference.html#subdirs, especially the *.depends part. You need to specify the dependencies between your subdirs.

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

                1 Reply Last reply
                0
                • S Offline
                  S Offline
                  sberkantgulen
                  wrote on last edited by
                  #13

                  Thank you, I will do some more research on these issues.

                  But i still can not understand. Everything works when i use cmd.
                  If there is a problem about dependencies how project works on Qt 5.9 ?

                  What is the difference between offline installation and command line installation ?
                  I can not understand. Qt 5.12 and Qt 5.14 give me error..

                  jsulmJ 1 Reply Last reply
                  0
                  • S sberkantgulen

                    Thank you, I will do some more research on these issues.

                    But i still can not understand. Everything works when i use cmd.
                    If there is a problem about dependencies how project works on Qt 5.9 ?

                    What is the difference between offline installation and command line installation ?
                    I can not understand. Qt 5.12 and Qt 5.14 give me error..

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

                    @sberkantgulen I don't know why it works with Qt 5.9, maybe that version handles build folders with subdirs projects differently than newer version and you were simply lucky.

                    "What is the difference between offline installation and command line installation ?" - I guess by "command line installation" you mean installing using apt? Using apt you install Qt built and packaged by your Linux distribution. If you use offline/online installer you use official Qt builds from Qt Company.

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

                    1 Reply Last reply
                    0
                    • S Offline
                      S Offline
                      sberkantgulen
                      wrote on last edited by sberkantgulen
                      #15

                      Yes, i mean when i install from terminal with command:

                      sudo apt-get install qt5-default   
                      

                      It installs Qt 5.9.5.
                      And everything is okey. For example i can run qtcreator from terminal with:

                      sudo ./qtcreator
                      

                      But, when i install qt with offline installer i can't do same things.
                      Terminal can not find qtcreator when i run:

                      sudo ./qtcreator
                      

                      I thought there might be a problem with the paths. But no matter what I did, I couldn't solve it.

                      jsulmJ 1 Reply Last reply
                      0
                      • S sberkantgulen

                        Yes, i mean when i install from terminal with command:

                        sudo apt-get install qt5-default   
                        

                        It installs Qt 5.9.5.
                        And everything is okey. For example i can run qtcreator from terminal with:

                        sudo ./qtcreator
                        

                        But, when i install qt with offline installer i can't do same things.
                        Terminal can not find qtcreator when i run:

                        sudo ./qtcreator
                        

                        I thought there might be a problem with the paths. But no matter what I did, I couldn't solve it.

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

                        @sberkantgulen said in error : undefined reference to `qt_resourceFeatureZlib':

                        sudo ./qtcreator

                        Why do you start QtCreator with sudo?! This is not needed at all!

                        To start QtCreator installed using offline/online installer you simply have to use absolute path. On my machine it is:

                        ~/Qt/Tools/QtCreator/bin/qtcreator
                        

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

                        1 Reply Last reply
                        0
                        • S Offline
                          S Offline
                          sberkantgulen
                          wrote on last edited by
                          #17

                          Yes, i mean;

                          Maybe problem can be about file association . I wanted to point this out .
                          It's like it can't see the libraries and therefore cannot mount sub-directories.
                          AM i wrong?

                          jsulmJ 1 Reply Last reply
                          0
                          • S sberkantgulen

                            Yes, i mean;

                            Maybe problem can be about file association . I wanted to point this out .
                            It's like it can't see the libraries and therefore cannot mount sub-directories.
                            AM i wrong?

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

                            @sberkantgulen Not sure what you mean. QtCreator has nothing to do with building of your app (you can build in a terminal without QtCreator). Also, nothing is mounted. The problem is that linker can't find the libraries. That means those libraries are not located in the folders you pass to the linker (like here: -L/home/kkvyz1/Desktop/dQGCS/dev/build-YKI-Desktop_Qt_5_14_2_GCC_64bit-Debug/PL/../DL). So, I suggest you really take a look at the link I gave you and define the dependencies between your subfolders properly.

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

                            1 Reply Last reply
                            0
                            • S Offline
                              S Offline
                              sberkantgulen
                              wrote on last edited by sberkantgulen
                              #19

                              I mean, my problem can be like this topic:
                              https://forum.qt.io/topic/107933/undefined-reference-to-qt_resourcefeaturezlib

                              And i don't know how can i change libraries.

                              jsulmJ 1 Reply Last reply
                              0
                              • S sberkantgulen

                                I mean, my problem can be like this topic:
                                https://forum.qt.io/topic/107933/undefined-reference-to-qt_resourcefeaturezlib

                                And i don't know how can i change libraries.

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

                                @sberkantgulen The problem from your last compile log has nothing to do with resourcefeaturezlib...

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

                                1 Reply Last reply
                                1
                                • S Offline
                                  S Offline
                                  sberkantgulen
                                  wrote on last edited by
                                  #21

                                  @jsulm said in error : undefined reference to `qt_resourceFeatureZlib':

                                  The problem from your last compile log has nothing to do with resourcefeaturezlib...

                                  You are right. I built my project step by step. And i added every code block line by line.

                                  Problem is about gstreamer.

                                  PKGCONFIG += gstreamer-1.0 gstreamer-video-1.0 #Qt5GStreamer-1.0 #Qt5GStreamerQuick-1.0
                                  

                                  When i add this line there is no error in my project.
                                  But i uncomment 2 packages which are #Qt5GStreamer-1.0 #Qt5GStreamerQuick-1.0 , and they cause an error.

                                  PKGCONFIG += gstreamer-1.0 gstreamer-video-1.0 Qt5GStreamer-1.0 Qt5GStreamerQuick-1.0
                                  

                                  Probably qt can't find the path for gstreamer.

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

                                    Hi,

                                    Might be a silly question but did you install the corresponding development packages ?

                                    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
                                    • S Offline
                                      S Offline
                                      sberkantgulen
                                      wrote on last edited by
                                      #23

                                      Of course,

                                      Maybe i coludn't explain properly.

                                      When i install qt from terminal (Default Qt 5.9 for Ubuntu 18.04) and install packages, everything is ok.
                                      When i install qt from offline source (Qt 5.12 or Qt 5.14) and install same package like above, qt can't see same libraries.
                                      When i install qt from terminal (Default Qt 5.12 for Ubuntu 20.04) and install packages, everything is ok again.

                                      So, i think the problem is about path or something else about location on system.
                                      Maybe additional settings are required for offline installation but i couldn't find anything.

                                      ...

                                      jsulmJ 1 Reply Last reply
                                      0
                                      • S sberkantgulen

                                        Of course,

                                        Maybe i coludn't explain properly.

                                        When i install qt from terminal (Default Qt 5.9 for Ubuntu 18.04) and install packages, everything is ok.
                                        When i install qt from offline source (Qt 5.12 or Qt 5.14) and install same package like above, qt can't see same libraries.
                                        When i install qt from terminal (Default Qt 5.12 for Ubuntu 20.04) and install packages, everything is ok again.

                                        So, i think the problem is about path or something else about location on system.
                                        Maybe additional settings are required for offline installation but i couldn't find anything.

                                        ...

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

                                        @sberkantgulen The question was: did you install development packages for GStreamer?

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

                                        1 Reply Last reply
                                        0
                                        • S Offline
                                          S Offline
                                          sberkantgulen
                                          wrote on last edited by sberkantgulen
                                          #25

                                          @sberkantgulen said in error : undefined reference to `qt_resourceFeatureZlib':

                                          packages

                                          Yes, In all 3 cases I installed all required packages the same way. Gstreamer and everything else.

                                          When i install qt from terminal (Default Qt 5.9 for Ubuntu 18.04) and install packages, everything is ok.
                                          When i install qt from offline source (Qt 5.12 or Qt 5.14) and install same package like above, qt can't see same libraries. (Error - My problem is this topic)
                                          When i install qt from terminal (Default Qt 5.12 for Ubuntu 20.04) and install packages, everything is ok again.

                                          jsulmJ 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