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. Absolute paths to EGL library in libQt5Gui.so since Qt 5.12.1

Absolute paths to EGL library in libQt5Gui.so since Qt 5.12.1

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
qmakecross-compilingeglfs
15 Posts 5 Posters 4.6k 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 Offline
    S Offline
    SGaist
    Lifetime Qt Champion
    wrote on 9 Apr 2019, 20:45 last edited by
    #2

    Hi,

    I would try running the python script to patch Qt from https://codereview.qt-project.org/#/c/256308/ linked in the bug reported you mentioned.

    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
    1
    • E Offline
      E Offline
      eglimi
      wrote on 10 Apr 2019, 06:47 last edited by
      #3

      Hello @SGaist,

      Thank you for the suggestion. I forgot to mention it in my original post, but I already tried that script. What it does is removing all the absolute paths from .pri, .prl, .la, .pc, and cmake files.

      I'm not sure how the script will help here, since Qt5Gui is built as part of qtbase. What I do is the following sequence.

      1. Download and unpack qtbase-everywhere-src-5.12.2.tar.xz
      2. ./configure <options>
      3. make && make install

      After this, Qt5Gui is built and has the absolute paths as dependencies as shown above. As far as I can see, the script doesn't change this. What I would need is a way to patch the shared object files after they have been built (something like patchelf for ARM). But I suspect this is not the intention, and I'm missing something else.

      1 Reply Last reply
      0
      • S Offline
        S Offline
        SGaist
        Lifetime Qt Champion
        wrote on 10 Apr 2019, 21:51 last edited by
        #4

        From the looks of it, I think the script should be run prior to configure and build.

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

        E 1 Reply Last reply 11 Apr 2019, 06:07
        0
        • S SGaist
          10 Apr 2019, 21:51

          From the looks of it, I think the script should be run prior to configure and build.

          E Offline
          E Offline
          eglimi
          wrote on 11 Apr 2019, 06:07 last edited by
          #5

          These absolute paths are only constructed at configure time. Therefore, prior to configure, they are not yet there. I also tried to replace the paths between configure and build, but this didn't work either.

          I'll add my issue to the Qt bug report linked above, and report back if I find any solution.

          Thank you for your help!

          1 Reply Last reply
          2
          • S Offline
            S Offline
            SupervisedThinking
            wrote on 19 Jun 2019, 17:49 last edited by SupervisedThinking
            #6

            @eglimi @SGaist
            Are there any news about this topic? Since Qt v5.12.1 & it's absolute path handling it's basically broken for all of my Mali based builds for SBCs (Amlogic S905 / Rockchip RK3399) since libQt5Gui.so is linked against the absolute path to my buildroot and after it's included in an image this path is obviously broken and libGLESv2.so is "missing". I tried now every new LTS build so 5.12.2/3/4 and it's still messed up.

            Correct me if I'm wrong but this https://codereview.qt-project.org/c/qtsdk/qtsdk/+/256308 provides probably no solution for this problem since it patches the build config files afterwards to make sure other packages link against a proper path to Qt libs but this won't help us once the Qt lib itself uses a screwed up path.

            1 Reply Last reply
            0
            • E Offline
              E Offline
              eglimi
              wrote on 20 Jun 2019, 07:11 last edited by
              #7

              Hello @SupervisedThinking,

              Unfortunately, there is no update on this topic. The absolute path handling also breaks all versions since 5.12.1 for me.

              It works for Yocto based images, but not when Qt is cross compiled directly without such an environment. I'm surprised this issue doesn't come up more often or more prominently. I'm not aware of any solutions, and there is no response from Qt.

              The issue is described in the following bug report. Maybe you want to add that this is a problem for you as well.

              https://bugreports.qt.io/browse/QTBUG-75098

              1 Reply Last reply
              2
              • I Offline
                I Offline
                Ignacio_Alvarez
                wrote on 20 Jun 2019, 10:27 last edited by
                #8

                Please check if my solution in https://forum.qt.io/topic/104015/cross-compilation-generates-full-paths-in-libqt5gui-so-for-libglesv2-so-and-libgl-so-then-cannot-be-found-in-execution-time is valid for your case.

                S 1 Reply Last reply 20 Jun 2019, 10:51
                1
                • I Ignacio_Alvarez
                  20 Jun 2019, 10:27

                  Please check if my solution in https://forum.qt.io/topic/104015/cross-compilation-generates-full-paths-in-libqt5gui-so-for-libglesv2-so-and-libgl-so-then-cannot-be-found-in-execution-time is valid for your case.

                  S Offline
                  S Offline
                  SupervisedThinking
                  wrote on 20 Jun 2019, 10:51 last edited by SupervisedThinking
                  #9

                  @Ignacio_Alvarez I checked my output for my Mali libs and indeed the SONAME tag is missing while Broadcom vendor libs like the bcm2835-driver have this tag and link properly. So either Qt fixes the dependency on these tags or we manually add them and fix the binaries.
                  The main problem is that ARM ships a single Mali lib that features everything you need for egl gbm glesv1 glesv2 and you have to create symlinks with proper names like libGLESv2.so to this file. So you can't just add a TAG to fix this you would have to copy this whole-in-one lib more than one time and patch the SONAME every single time.

                  arm-linux-gnueabihf-readelf output:
                  https://pastebin.com/MWVF2Pf1

                  @eglimi
                  Can you run arm-linux-gnueabihf-readelf -d libGLESv2.so | grep SONAME to check if SONAME is missing on your libs too?

                  1 Reply Last reply
                  0
                  • E Offline
                    E Offline
                    eglimi
                    wrote on 20 Jun 2019, 12:26 last edited by
                    #10

                    Hello @SupervisedThinking and @Ignacio_Alvarez,

                    Thank you for the information about the SONAME. I haven't thought about this. And indeed, the SONAME is missing from the libs in question in my installation as well.

                    I'm not sure patching the libs is the correct solution though, but it might at least provide a workaround.

                    S R 2 Replies Last reply 20 Jun 2019, 12:30
                    0
                    • E eglimi
                      20 Jun 2019, 12:26

                      Hello @SupervisedThinking and @Ignacio_Alvarez,

                      Thank you for the information about the SONAME. I haven't thought about this. And indeed, the SONAME is missing from the libs in question in my installation as well.

                      I'm not sure patching the libs is the correct solution though, but it might at least provide a workaround.

                      S Offline
                      S Offline
                      SupervisedThinking
                      wrote on 20 Jun 2019, 12:30 last edited by SupervisedThinking
                      #11

                      @eglimi
                      The problem is what will you add? The unified mali lib I use has a size of 16.8 MB so if I have to patch this lib for EGL / GBM / GLESv2 etc I'm probably not able use symlinks anymore and this will quite increase the image size.

                      R 1 Reply Last reply 30 Aug 2019, 23:39
                      0
                      • S Offline
                        S Offline
                        SupervisedThinking
                        wrote on 11 Jul 2019, 12:50 last edited by
                        #12

                        Well another three weeks and no news about this topic?

                        1 Reply Last reply
                        0
                        • E eglimi
                          20 Jun 2019, 12:26

                          Hello @SupervisedThinking and @Ignacio_Alvarez,

                          Thank you for the information about the SONAME. I haven't thought about this. And indeed, the SONAME is missing from the libs in question in my installation as well.

                          I'm not sure patching the libs is the correct solution though, but it might at least provide a workaround.

                          R Offline
                          R Offline
                          ruisebastiao
                          wrote on 29 Aug 2019, 23:52 last edited by
                          #13

                          @eglimi as an workaround you can use patchelf with --replace-needed to fix the needed path.
                          in your case the command will be:

                          patchelf --replace-needed /home/work/sdk/sysroot/usr/lib/libEGL.so libEGL.so libQt5Gui.so
                          
                          1 Reply Last reply
                          0
                          • S SupervisedThinking
                            20 Jun 2019, 12:30

                            @eglimi
                            The problem is what will you add? The unified mali lib I use has a size of 16.8 MB so if I have to patch this lib for EGL / GBM / GLESv2 etc I'm probably not able use symlinks anymore and this will quite increase the image size.

                            R Offline
                            R Offline
                            ruisebastiao
                            wrote on 30 Aug 2019, 23:39 last edited by
                            #14

                            @supervisedthinking you can create multiple copies to EGL / GBM / GLESv2 etc... in the staging dir and then patch them with the soname, they will not be in target image, there will be the sym links

                            S 1 Reply Last reply 2 Sept 2019, 23:14
                            0
                            • R ruisebastiao
                              30 Aug 2019, 23:39

                              @supervisedthinking you can create multiple copies to EGL / GBM / GLESv2 etc... in the staging dir and then patch them with the soname, they will not be in target image, there will be the sym links

                              S Offline
                              S Offline
                              SupervisedThinking
                              wrote on 2 Sept 2019, 23:14 last edited by SupervisedThinking 9 Mar 2019, 11:31
                              #15

                              @ruisebastiao well this is a rather hacky workaround to fix something Qt has broken within a LTS version. The thing is that libmali uses a unified lib which contains all symbols for EGL, OpenGL ES etc. so it would be wrong to apply a single .so name. It worked fine in 5.12.0 so it's probably time to come up with a solution for this "use absolute paths" nonsense has introduced.

                              it works once you duplicate the unified lib & patch it. So Qt needs to deal with this kind of libs instead of forcing users to patch stuff.

                              https://forum.qt.io/topic/104015/cross-compilation-generates-full-paths-in-libqt5gui-so-for-libglesv2-so-and-libgl-so-then-cannot-be-found-in-execution-time/3

                              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