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. Shared library on windows fails when using moc
Forum Updated to NodeBB v4.3 + New Features

Shared library on windows fails when using moc

Scheduled Pinned Locked Moved Solved General and Desktop
41 Posts 4 Posters 11.0k Views 2 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.
  • MesrineM Mesrine

    @Christian-Ehrlicher

    To build shared library you just say to cmake

    qt-cmake -G Ninja -DCMAKE_BUILD_TYPE="release"   -DCMAKE_INSTALL_PREFIX="../install" -DBUILD_SHARED_LIBS=ON ../
    

    All my shared libraries work for windows it only fail when using MOC. The later is not a question is an affirmation.

    Christian EhrlicherC Online
    Christian EhrlicherC Online
    Christian Ehrlicher
    Lifetime Qt Champion
    wrote on last edited by
    #8

    @Mesrine said in Shared library on windows fails when using moc:

    -DBUILD_SHARED_LIBS=ON ..

    I don't see how this should affect any code in e.g. https://github.com/EddyTheCo/Qpow-IOTA/blob/main/CMakeLists.txt apart from the naming of the library.

    Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
    Visit the Qt Academy at https://academy.qt.io/catalog

    MesrineM 1 Reply Last reply
    0
    • Christian EhrlicherC Christian Ehrlicher

      @Mesrine said in Shared library on windows fails when using moc:

      -DBUILD_SHARED_LIBS=ON ..

      I don't see how this should affect any code in e.g. https://github.com/EddyTheCo/Qpow-IOTA/blob/main/CMakeLists.txt apart from the naming of the library.

      MesrineM Offline
      MesrineM Offline
      Mesrine
      wrote on last edited by
      #9

      @Christian-Ehrlicher
      Cmake will let know the compiler that I want a shared library.

      Christian EhrlicherC 1 Reply Last reply
      0
      • MesrineM Mesrine

        @Christian-Ehrlicher
        Cmake will let know the compiler that I want a shared library.

        Christian EhrlicherC Online
        Christian EhrlicherC Online
        Christian Ehrlicher
        Lifetime Qt Champion
        wrote on last edited by
        #10

        @Mesrine said in Shared library on windows fails when using moc:

        Cmake will let know the compiler that I want a shared library.

        ah, correct

        But you should add the correct defines then as described in the Qt documentation.

        Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
        Visit the Qt Academy at https://academy.qt.io/catalog

        MesrineM 1 Reply Last reply
        0
        • Christian EhrlicherC Christian Ehrlicher

          @Mesrine said in Shared library on windows fails when using moc:

          Cmake will let know the compiler that I want a shared library.

          ah, correct

          But you should add the correct defines then as described in the Qt documentation.

          MesrineM Offline
          MesrineM Offline
          Mesrine
          wrote on last edited by
          #11

          @Christian-Ehrlicher
          I have tried but did not work either, maybe is another problem not related with the export macros.

          So if someone has been able to produce shared libraries on Windows while using MOC compiled sources it will be good to know how to do it in CMake.

          Christian EhrlicherC JoeCFDJ 2 Replies Last reply
          0
          • MesrineM Mesrine

            @Christian-Ehrlicher
            I have tried but did not work either, maybe is another problem not related with the export macros.

            So if someone has been able to produce shared libraries on Windows while using MOC compiled sources it will be good to know how to do it in CMake.

            Christian EhrlicherC Online
            Christian EhrlicherC Online
            Christian Ehrlicher
            Lifetime Qt Champion
            wrote on last edited by Christian Ehrlicher
            #12

            @Mesrine said in Shared library on windows fails when using moc:

            I have tried but did not work either, maybe is another problem not related with the export macros.

            Then finally show us what you tried...

            Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
            Visit the Qt Academy at https://academy.qt.io/catalog

            1 Reply Last reply
            0
            • MesrineM Mesrine

              @Christian-Ehrlicher
              I have tried but did not work either, maybe is another problem not related with the export macros.

              So if someone has been able to produce shared libraries on Windows while using MOC compiled sources it will be good to know how to do it in CMake.

              JoeCFDJ Offline
              JoeCFDJ Offline
              JoeCFD
              wrote on last edited by JoeCFD
              #13

              @Mesrine It does not matter what you have done. You have to add MYSHAREDLIB_EXPORT into your class definition
              class MYSHAREDLIB_EXPORT MyClass

              But it does not exist in your classes.

              #include <QtCore/QtGlobal>
              
              #if defined(MYSHAREDLIB_LIBRARY)  
              # define MYSHAREDLIB_EXPORT Q_DECL_EXPORT
              #else
              #define MYSHAREDLIB_EXPORT Q_DECL_IMPORT
              #endif
              
              

              When you build your lib, add target_compile_definitions(mysharedlib PRIVATE MYSHAREDLIB_LIBRARY). This means your lib exports these classes
              while MYSHAREDLIB_EXPORT=Q_DECL_EXPORT since MYSHAREDLIB_LIBRARY is defined.

              But in your main application, do not add it. However, the headers of all classes in your main application which use the lib have to have MYSHAREDLIB_EXPORT as well. That means these classes import the lib while MYSHAREDLIB_EXPORT=Q_DECL_IMPORT
              since MYSHAREDLIB_LIBRARY is not defined .

              Christian EhrlicherC MesrineM 4 Replies Last reply
              0
              • JoeCFDJ JoeCFD

                @Mesrine It does not matter what you have done. You have to add MYSHAREDLIB_EXPORT into your class definition
                class MYSHAREDLIB_EXPORT MyClass

                But it does not exist in your classes.

                #include <QtCore/QtGlobal>
                
                #if defined(MYSHAREDLIB_LIBRARY)  
                # define MYSHAREDLIB_EXPORT Q_DECL_EXPORT
                #else
                #define MYSHAREDLIB_EXPORT Q_DECL_IMPORT
                #endif
                
                

                When you build your lib, add target_compile_definitions(mysharedlib PRIVATE MYSHAREDLIB_LIBRARY). This means your lib exports these classes
                while MYSHAREDLIB_EXPORT=Q_DECL_EXPORT since MYSHAREDLIB_LIBRARY is defined.

                But in your main application, do not add it. However, the headers of all classes in your main application which use the lib have to have MYSHAREDLIB_EXPORT as well. That means these classes import the lib while MYSHAREDLIB_EXPORT=Q_DECL_IMPORT
                since MYSHAREDLIB_LIBRARY is not defined .

                Christian EhrlicherC Online
                Christian EhrlicherC Online
                Christian Ehrlicher
                Lifetime Qt Champion
                wrote on last edited by
                #14

                @JoeCFD said in Shared library on windows fails when using moc:

                #if defined(_WIN32) || defined(WIN32)

                This is not needed and even counter-productive when you want to hide the symbols on linux.

                Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                Visit the Qt Academy at https://academy.qt.io/catalog

                JoeCFDJ 1 Reply Last reply
                0
                • Christian EhrlicherC Christian Ehrlicher

                  @JoeCFD said in Shared library on windows fails when using moc:

                  #if defined(_WIN32) || defined(WIN32)

                  This is not needed and even counter-productive when you want to hide the symbols on linux.

                  JoeCFDJ Offline
                  JoeCFDJ Offline
                  JoeCFD
                  wrote on last edited by JoeCFD
                  #15

                  @Christian-Ehrlicher Got it, thanks. Q_DECL_EXPORT and Q_DECL_IMPORT have it already. But for non Qt code, this is needed.

                  Christian EhrlicherC 1 Reply Last reply
                  0
                  • JoeCFDJ JoeCFD

                    @Christian-Ehrlicher Got it, thanks. Q_DECL_EXPORT and Q_DECL_IMPORT have it already. But for non Qt code, this is needed.

                    Christian EhrlicherC Online
                    Christian EhrlicherC Online
                    Christian Ehrlicher
                    Lifetime Qt Champion
                    wrote on last edited by
                    #16

                    @JoeCFD said in Shared library on windows fails when using moc:

                    But for non Qt code, this is needed.

                    Even then I would use the correct attribution. Hiding the symbols by default on linux will help the linker and startup time and (iirc) also the optimizer in the linker since it can remove unused functions / inline stuff when it's not visible from outside.

                    Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                    Visit the Qt Academy at https://academy.qt.io/catalog

                    JoeCFDJ 1 Reply Last reply
                    1
                    • JoeCFDJ JoeCFD

                      @Mesrine It does not matter what you have done. You have to add MYSHAREDLIB_EXPORT into your class definition
                      class MYSHAREDLIB_EXPORT MyClass

                      But it does not exist in your classes.

                      #include <QtCore/QtGlobal>
                      
                      #if defined(MYSHAREDLIB_LIBRARY)  
                      # define MYSHAREDLIB_EXPORT Q_DECL_EXPORT
                      #else
                      #define MYSHAREDLIB_EXPORT Q_DECL_IMPORT
                      #endif
                      
                      

                      When you build your lib, add target_compile_definitions(mysharedlib PRIVATE MYSHAREDLIB_LIBRARY). This means your lib exports these classes
                      while MYSHAREDLIB_EXPORT=Q_DECL_EXPORT since MYSHAREDLIB_LIBRARY is defined.

                      But in your main application, do not add it. However, the headers of all classes in your main application which use the lib have to have MYSHAREDLIB_EXPORT as well. That means these classes import the lib while MYSHAREDLIB_EXPORT=Q_DECL_IMPORT
                      since MYSHAREDLIB_LIBRARY is not defined .

                      MesrineM Offline
                      MesrineM Offline
                      Mesrine
                      wrote on last edited by
                      #17

                      @JoeCFD said in Shared library on windows fails when using moc:

                      MYSHAREDLIB_LIBRARY

                      Yes, I tried that and give the same error.

                      Then my question is when should i define MYSHAREDLIB_LIBRARY in cmake?
                      When compiling the library?
                      If compiling the client should i set MYSHAREDLIB_LIBRARY?

                      In my case compiling the client download the source code of the library and compile the source code.
                      The target resulting from that shared library is linked to the client using cmake .

                      Maybe i found my problem while writing this.
                      I will do what Qt says(exactly :)) and try again, I llet you know the result and the code.

                      Thanks.

                      Christian EhrlicherC JoeCFDJ 2 Replies Last reply
                      0
                      • MesrineM Mesrine

                        @JoeCFD said in Shared library on windows fails when using moc:

                        MYSHAREDLIB_LIBRARY

                        Yes, I tried that and give the same error.

                        Then my question is when should i define MYSHAREDLIB_LIBRARY in cmake?
                        When compiling the library?
                        If compiling the client should i set MYSHAREDLIB_LIBRARY?

                        In my case compiling the client download the source code of the library and compile the source code.
                        The target resulting from that shared library is linked to the client using cmake .

                        Maybe i found my problem while writing this.
                        I will do what Qt says(exactly :)) and try again, I llet you know the result and the code.

                        Thanks.

                        Christian EhrlicherC Online
                        Christian EhrlicherC Online
                        Christian Ehrlicher
                        Lifetime Qt Champion
                        wrote on last edited by
                        #18

                        @Mesrine said in Shared library on windows fails when using moc:

                        Then my question is when should i define MYSHAREDLIB_LIBRARY in cmake?
                        When compiling the library?

                        add target_compile_definitions(mysharedlib PRIVATE MYSHAREDLIB_LIBRARY)

                        And instead 'MYSHAREDLIB' you should use your library name...

                        Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                        Visit the Qt Academy at https://academy.qt.io/catalog

                        1 Reply Last reply
                        0
                        • Christian EhrlicherC Christian Ehrlicher

                          @JoeCFD said in Shared library on windows fails when using moc:

                          But for non Qt code, this is needed.

                          Even then I would use the correct attribution. Hiding the symbols by default on linux will help the linker and startup time and (iirc) also the optimizer in the linker since it can remove unused functions / inline stuff when it's not visible from outside.

                          JoeCFDJ Offline
                          JoeCFDJ Offline
                          JoeCFD
                          wrote on last edited by
                          #19

                          @Christian-Ehrlicher
                          Good to know, Thanks. I have not used Windows for ages.

                            #if __GNUC__ >= 4
                              #define DLL_PUBLIC __attribute__ ((visibility ("default")))
                              #define DLL_LOCAL  __attribute__ ((visibility ("hidden")))
                            #else
                              #define DLL_PUBLIC
                              #define DLL_LOCAL
                            #endif
                          
                          Christian EhrlicherC 1 Reply Last reply
                          0
                          • JoeCFDJ JoeCFD

                            @Christian-Ehrlicher
                            Good to know, Thanks. I have not used Windows for ages.

                              #if __GNUC__ >= 4
                                #define DLL_PUBLIC __attribute__ ((visibility ("default")))
                                #define DLL_LOCAL  __attribute__ ((visibility ("hidden")))
                              #else
                                #define DLL_PUBLIC
                                #define DLL_LOCAL
                              #endif
                            
                            Christian EhrlicherC Online
                            Christian EhrlicherC Online
                            Christian Ehrlicher
                            Lifetime Qt Champion
                            wrote on last edited by
                            #20

                            @JoeCFD You have then compile with -fvisibility-inlines-hidden -fvisibility=hiddenand get the same behavior like the (default) windows behavior. See CMAKE_CXX_VISIBILITY_PRESET for more information on how to use it platform independent with cmake.

                            Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                            Visit the Qt Academy at https://academy.qt.io/catalog

                            JoeCFDJ 1 Reply Last reply
                            1
                            • MesrineM Mesrine

                              @JoeCFD said in Shared library on windows fails when using moc:

                              MYSHAREDLIB_LIBRARY

                              Yes, I tried that and give the same error.

                              Then my question is when should i define MYSHAREDLIB_LIBRARY in cmake?
                              When compiling the library?
                              If compiling the client should i set MYSHAREDLIB_LIBRARY?

                              In my case compiling the client download the source code of the library and compile the source code.
                              The target resulting from that shared library is linked to the client using cmake .

                              Maybe i found my problem while writing this.
                              I will do what Qt says(exactly :)) and try again, I llet you know the result and the code.

                              Thanks.

                              JoeCFDJ Offline
                              JoeCFDJ Offline
                              JoeCFD
                              wrote on last edited by JoeCFD
                              #21

                              @Mesrine Take a look at the source code of any Qt module. You do the same thing.

                              1 Reply Last reply
                              0
                              • Christian EhrlicherC Christian Ehrlicher

                                @JoeCFD You have then compile with -fvisibility-inlines-hidden -fvisibility=hiddenand get the same behavior like the (default) windows behavior. See CMAKE_CXX_VISIBILITY_PRESET for more information on how to use it platform independent with cmake.

                                JoeCFDJ Offline
                                JoeCFDJ Offline
                                JoeCFD
                                wrote on last edited by
                                #22

                                @Christian-Ehrlicher Thanks. Learn more things from you.

                                1 Reply Last reply
                                0
                                • JoeCFDJ JoeCFD

                                  @Mesrine It does not matter what you have done. You have to add MYSHAREDLIB_EXPORT into your class definition
                                  class MYSHAREDLIB_EXPORT MyClass

                                  But it does not exist in your classes.

                                  #include <QtCore/QtGlobal>
                                  
                                  #if defined(MYSHAREDLIB_LIBRARY)  
                                  # define MYSHAREDLIB_EXPORT Q_DECL_EXPORT
                                  #else
                                  #define MYSHAREDLIB_EXPORT Q_DECL_IMPORT
                                  #endif
                                  
                                  

                                  When you build your lib, add target_compile_definitions(mysharedlib PRIVATE MYSHAREDLIB_LIBRARY). This means your lib exports these classes
                                  while MYSHAREDLIB_EXPORT=Q_DECL_EXPORT since MYSHAREDLIB_LIBRARY is defined.

                                  But in your main application, do not add it. However, the headers of all classes in your main application which use the lib have to have MYSHAREDLIB_EXPORT as well. That means these classes import the lib while MYSHAREDLIB_EXPORT=Q_DECL_IMPORT
                                  since MYSHAREDLIB_LIBRARY is not defined .

                                  MesrineM Offline
                                  MesrineM Offline
                                  Mesrine
                                  wrote on last edited by Mesrine
                                  #23

                                  @JoeCFD said in Shared library on windows fails when using moc:

                                  MYSHAREDLIB_EXPORT

                                  But still i have to define MYSHAREDLIB_EXPORT to nothing if compiling in other system apart from windows?

                                  JoeCFDJ Christian EhrlicherC 2 Replies Last reply
                                  0
                                  • JoeCFDJ JoeCFD

                                    @Mesrine It does not matter what you have done. You have to add MYSHAREDLIB_EXPORT into your class definition
                                    class MYSHAREDLIB_EXPORT MyClass

                                    But it does not exist in your classes.

                                    #include <QtCore/QtGlobal>
                                    
                                    #if defined(MYSHAREDLIB_LIBRARY)  
                                    # define MYSHAREDLIB_EXPORT Q_DECL_EXPORT
                                    #else
                                    #define MYSHAREDLIB_EXPORT Q_DECL_IMPORT
                                    #endif
                                    
                                    

                                    When you build your lib, add target_compile_definitions(mysharedlib PRIVATE MYSHAREDLIB_LIBRARY). This means your lib exports these classes
                                    while MYSHAREDLIB_EXPORT=Q_DECL_EXPORT since MYSHAREDLIB_LIBRARY is defined.

                                    But in your main application, do not add it. However, the headers of all classes in your main application which use the lib have to have MYSHAREDLIB_EXPORT as well. That means these classes import the lib while MYSHAREDLIB_EXPORT=Q_DECL_IMPORT
                                    since MYSHAREDLIB_LIBRARY is not defined .

                                    MesrineM Offline
                                    MesrineM Offline
                                    Mesrine
                                    wrote on last edited by
                                    #24

                                    @JoeCFD

                                    grep on the sources of qt gives:

                                    grep -r "Q_DECL_IMPORT"
                                    qcompilerdetection.qdoc:    \sa Q_DECL_IMPORT
                                    qcompilerdetection.qdoc:    \macro Q_DECL_IMPORT
                                    qtconfigmacros.h:#    define Q_AUTOTEST_EXPORT Q_DECL_IMPORT
                                    qversiontagging.h:    extern "C" Q_DECL_IMPORT const char sym; \
                                    qcompilerdetection.h:#  define Q_DECL_IMPORT __declspec(dllimport)
                                    qcompilerdetection.h:#    define Q_DECL_IMPORT     __attribute__((visibility("default")))
                                    qcompilerdetection.h:#    define Q_DECL_IMPORT     __declspec(dllimport)
                                    qcompilerdetection.h:#    define Q_DECL_IMPORT     __declspec(dllimport)
                                    qcompilerdetection.h:#    define Q_DECL_IMPORT     __attribute__((visibility("default")))
                                    qcompilerdetection.h:#ifndef Q_DECL_IMPORT
                                    qcompilerdetection.h:#  define Q_DECL_IMPORT
                                    
                                    1 Reply Last reply
                                    0
                                    • MesrineM Mesrine

                                      @JoeCFD said in Shared library on windows fails when using moc:

                                      MYSHAREDLIB_EXPORT

                                      But still i have to define MYSHAREDLIB_EXPORT to nothing if compiling in other system apart from windows?

                                      JoeCFDJ Offline
                                      JoeCFDJ Offline
                                      JoeCFD
                                      wrote on last edited by
                                      #25

                                      @Mesrine Q_DECL_IMPORT and Q_DECL_EXPORT are hidden for example on Linux. No worries.

                                      1 Reply Last reply
                                      0
                                      • MesrineM Mesrine

                                        @JoeCFD said in Shared library on windows fails when using moc:

                                        MYSHAREDLIB_EXPORT

                                        But still i have to define MYSHAREDLIB_EXPORT to nothing if compiling in other system apart from windows?

                                        Christian EhrlicherC Online
                                        Christian EhrlicherC Online
                                        Christian Ehrlicher
                                        Lifetime Qt Champion
                                        wrote on last edited by
                                        #26

                                        @Mesrine said in Shared library on windows fails when using moc:

                                        But still i have to define MYSHAREDLIB_EXPORT to nothing if compiling in other system apart from windows?

                                        Why? Simply use it as explained in the Qt documentation...

                                        Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                                        Visit the Qt Academy at https://academy.qt.io/catalog

                                        SGaistS 1 Reply Last reply
                                        0
                                        • Christian EhrlicherC Christian Ehrlicher

                                          @Mesrine said in Shared library on windows fails when using moc:

                                          But still i have to define MYSHAREDLIB_EXPORT to nothing if compiling in other system apart from windows?

                                          Why? Simply use it as explained in the Qt documentation...

                                          SGaistS Offline
                                          SGaistS Offline
                                          SGaist
                                          Lifetime Qt Champion
                                          wrote on last edited by
                                          #27

                                          Hi,

                                          You are over complicating things.

                                          As already suggested by @Christian-Ehrlicher, just follow the doc:

                                          • create one header with the macro definition as shown in the documentation
                                          • in your code include that header in all the classes you want to export and use the macro there
                                          • update your CMakeLists.txt as shown
                                          • rebuild

                                          And you should be good to go. There's really nothing more to it than that.

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

                                          MesrineM 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