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. Link to QT statically
Forum Updated to NodeBB v4.3 + New Features

Link to QT statically

Scheduled Pinned Locked Moved Unsolved General and Desktop
12 Posts 5 Posters 14.7k 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.
  • K Offline
    K Offline
    Khalid80
    wrote on last edited by
    #1

    is there how-to build QT binaries statically, I need to static link so i dont need to ship any QT binaries to windows, Mac-OS and linux.

    1 Reply Last reply
    0
    • yuvaramY Offline
      yuvaramY Offline
      yuvaram
      wrote on last edited by yuvaram
      #2

      Hi @Khalid80

      Project A should link Project B library statically.

      In Project B
      projectB.pro file add CONFIG += staticlib

      In project A
      projectA.pro file add LIBS += -L$$PWD/-lprojectA

      Yuvaram Aligeti
      Embedded Qt Developer
      : )

      1 Reply Last reply
      1
      • L Offline
        L Offline
        Leonardo
        wrote on last edited by
        #3

        You'll need to compile Qt yourself. Just add the "-static" flag to the "configure" command line.

        1 Reply Last reply
        3
        • mrjjM Offline
          mrjjM Offline
          mrjj
          Lifetime Qt Champion
          wrote on last edited by
          #4

          Hi
          Please be aware that using Qt as static library requires you to
          1: release the source code as open source
          Or
          own a Qt license.

          Also to use static on all platforms, you will need to build Qt as static lib on all platforms.

          I used this for Qt5.7 and mingw
          https://wiki.qt.io/Building_a_static_Qt_for_Windows_using_MinGW

          1 Reply Last reply
          3
          • K Offline
            K Offline
            Khalid80
            wrote on last edited by
            #5

            Thanks all, is there any diff between building it on windows using MinGW and linux or Mac?

            yuvaramY 1 Reply Last reply
            0
            • K Khalid80

              Thanks all, is there any diff between building it on windows using MinGW and linux or Mac?

              yuvaramY Offline
              yuvaramY Offline
              yuvaram
              wrote on last edited by
              #6

              @Khalid80
              Qt source code can be used in multiple platform to compile but the same binary or library cannot be used in all the OS.
              Qt great advantage is code once, but compile for all the platforms.

              Yuvaram Aligeti
              Embedded Qt Developer
              : )

              1 Reply Last reply
              1
              • K Offline
                K Offline
                Khalid80
                wrote on last edited by
                #7

                yes, but I am talking about how to build QT statically on Linux or mac-os, @mrjj mention he did it for windows using https://wiki.qt.io/Building_a_static_Qt_for_Windows_using_MinGW tutorial, is there any tutorial for Linux and macos?

                yuvaramY 1 Reply Last reply
                0
                • K Khalid80

                  yes, but I am talking about how to build QT statically on Linux or mac-os, @mrjj mention he did it for windows using https://wiki.qt.io/Building_a_static_Qt_for_Windows_using_MinGW tutorial, is there any tutorial for Linux and macos?

                  yuvaramY Offline
                  yuvaramY Offline
                  yuvaram
                  wrote on last edited by
                  #8

                  @Khalid80
                  all the steps are common for all the platforms.
                  As specified earlier .pro file CONFIG is specified staticlib.

                  Yuvaram Aligeti
                  Embedded Qt Developer
                  : )

                  K 1 Reply Last reply
                  4
                  • yuvaramY yuvaram

                    @Khalid80
                    all the steps are common for all the platforms.
                    As specified earlier .pro file CONFIG is specified staticlib.

                    K Offline
                    K Offline
                    Khalid80
                    wrote on last edited by
                    #9

                    @yuvaram I am talking on building the QT binaries as static libs, not linking my project statically. my project will link to QT static libraries, so I have to build all the QT statically

                    K 1 Reply Last reply
                    0
                    • K Khalid80

                      @yuvaram I am talking on building the QT binaries as static libs, not linking my project statically. my project will link to QT static libraries, so I have to build all the QT statically

                      K Offline
                      K Offline
                      Khalid80
                      wrote on last edited by
                      #10

                      @Khalid80 so far I built QT statically using https://wiki.qt.io/Building_a_static_Qt_for_Windows_using_MinGW tutorial, and then I created a static lib (Core.a) which is linking statically to QT, after that I created a test app the link to core.a but getting Core.cpp:-1: error: undefined reference to `QArrayData::shared_null'.

                      jsulmJ 1 Reply Last reply
                      0
                      • K Khalid80

                        @Khalid80 so far I built QT statically using https://wiki.qt.io/Building_a_static_Qt_for_Windows_using_MinGW tutorial, and then I created a static lib (Core.a) which is linking statically to QT, after that I created a test app the link to core.a but getting Core.cpp:-1: error: undefined reference to `QArrayData::shared_null'.

                        jsulmJ Offline
                        jsulmJ Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on last edited by
                        #11

                        @Khalid80 said in Link to QT statically:

                        linking statically to QT

                        to which parts of Qt?

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

                        1 Reply Last reply
                        0
                        • K Offline
                          K Offline
                          Khalid80
                          wrote on last edited by
                          #12

                          I built all QT platform statically and I am linking for now to QT5Core and QT5Network

                          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