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. undefined reference to qt_static _plugin
Forum Updated to NodeBB v4.3 + New Features

undefined reference to qt_static _plugin

Scheduled Pinned Locked Moved Unsolved General and Desktop
qt 5.5staticplugin
14 Posts 3 Posters 6.2k Views 1 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.
  • NIXINN NIXIN

    Hi,

    I am trying to load a static plugin in Qt for which I have tried the below code. My project name is "static_plugin_qmake".
    I am creating a static plugin called "plugin_qmake" and trying to load it through a application "launcher"

    static_plugin_qmake.pro

    TEMPLATE = subdirs
    
    SUBDIRS  = plugin_qmake \
                     launcher
    
    
    launcher.pro
    
    TEMPLATE = app
    QT      += widgets
    
    HEADERS  = interface.h
    
    SOURCES += main.cpp
    
    LIBS    += "/home/uidm9805/Qt Projects/static_plugin_qmake/build/plugin_qmake/libplugin_qmake.a"
    

    interface.h

    #ifndef INTERFACE_H
    #define INTERFACE_H
    
    #include <QtPlugin>
    
    class Interface
    {
    public:
        virtual ~Interface() {}
    
        virtual void setValue(int value) = 0;
    
        virtual int getValue() = 0;
    };
    
    #define Interface_iid "interface_identifier_id"
    Q_DECLARE_INTERFACE(Interface, Interface_iid)
    
    #endif // INTERFACE_H
    

    main.cpp

    #include <QApplication>
    #include <QtPlugin>
    
    #include <QDebug>
    
    Q_IMPORT_PLUGIN(plugin_qmake)
    
    int main(int argc, char *argv[])
    {
        QApplication app(argc, argv);
    
        qDebug() << "Hello World";
    
        return app.exec();
    }
    

    plugin_qmake.pro

    TEMPLATE      = lib
    CONFIG       += plugin static
    QT           += widgets
    
    INCLUDEPATH  += ../..
    
    HEADERS       = pluginqmake.h
    
    SOURCES       = pluginqmake.cpp
    
    TARGET        = $$qtLibraryTarget(plugin_qmake)
    

    pluginqmake.h

    #ifndef PLUGINQMAKE_H
    #define PLUGINQMAKE_H
    
    #include <QObject>
    #include <QtPlugin>
    
    #include "../launcher/interface.h"
    
    class PluginQmake : public QObject,
                        public Interface
    {
        Q_OBJECT
        Q_PLUGIN_METADATA(IID Interface_iid)
        Q_INTERFACES(Interface)
    
     public:
        void setValue(int value);
    
        int getValue();
    
    private:
        int mValue;
    };
    
    #endif // PLUGINQMAKE_H
    

    pluginqmake.cpp

    #include "pluginqmake.h"
    
    void PluginQmake::setValue(int value)
    {
        mValue = value;
    }
    
    int PluginQmake::getValue()
    {
        return mValue;
    }
    

    But when I build this project, I get following errors:

    /home/uidm9805/Qt Projects/static_plugin_qmake/launcher/main.cpp:6: error: undefined reference to 'qt_static_plugin_plugin_qmake()'
    collect2: error: ld returned 1 exit status
    

    I don't understand why I am getting this error? I need help to make it work.....

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

    @NIXIN I think you forgot "QTPLUGIN += " in your pro file as described here: http://doc.qt.io/qt-5/plugins-howto.html#static-plugins

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

    NIXINN 1 Reply Last reply
    0
    • jsulmJ jsulm

      @NIXIN I think you forgot "QTPLUGIN += " in your pro file as described here: http://doc.qt.io/qt-5/plugins-howto.html#static-plugins

      NIXINN Offline
      NIXINN Offline
      NIXIN
      wrote on last edited by
      #3

      @jsulm what should I add with QTPLUGIN +=

      because I am creating my own plugin

      jsulmJ 1 Reply Last reply
      0
      • NIXINN NIXIN

        @jsulm what should I add with QTPLUGIN +=

        because I am creating my own plugin

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

        @NIXIN Sorry, my post was wrong.
        "Link your application with your plugin library using LIBS in the .pro file." - so, using LIBS is correct. But you're using it wrongly, it should be:

        LIBS    += -L"/home/uidm9805/Qt Projects/static_plugin_qmake/build/plugin_qmake" -lplugin_qmake
        

        Better to use relative paths, see http://doc.qt.io/qt-5/qtwidgets-tools-plugandpaint-app-example.html

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

        NIXINN 1 Reply Last reply
        0
        • jsulmJ jsulm

          @NIXIN Sorry, my post was wrong.
          "Link your application with your plugin library using LIBS in the .pro file." - so, using LIBS is correct. But you're using it wrongly, it should be:

          LIBS    += -L"/home/uidm9805/Qt Projects/static_plugin_qmake/build/plugin_qmake" -lplugin_qmake
          

          Better to use relative paths, see http://doc.qt.io/qt-5/qtwidgets-tools-plugandpaint-app-example.html

          NIXINN Offline
          NIXINN Offline
          NIXIN
          wrote on last edited by NIXIN
          #5

          @jsulm I tried using LIBS += the way you suggested, however still it is not working...
          getting same errors again

          jsulmJ 1 Reply Last reply
          0
          • NIXINN NIXIN

            @jsulm I tried using LIBS += the way you suggested, however still it is not working...
            getting same errors again

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

            @NIXIN Can you show your LIBS line from your pro file?

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

            NIXINN 1 Reply Last reply
            0
            • jsulmJ jsulm

              @NIXIN Can you show your LIBS line from your pro file?

              NIXINN Offline
              NIXINN Offline
              NIXIN
              wrote on last edited by
              #7

              @jsulm

              TEMPLATE = app
              QT      += widgets
              
              HEADERS  = interface.h
              
              SOURCES += main.cpp
              
              #LIBS    += "/home/uidm9805/Qt Projects/static_plugin_qmake/build/plugin_qmake/libplugin_qmake.a"
              
              LIBS    += -L"/home/uidm9805/Qt Projects/static_plugin_qmake/build/plugin_qmake" -lplugin_qmake
              
              jsulmJ 1 Reply Last reply
              0
              • NIXINN NIXIN

                @jsulm

                TEMPLATE = app
                QT      += widgets
                
                HEADERS  = interface.h
                
                SOURCES += main.cpp
                
                #LIBS    += "/home/uidm9805/Qt Projects/static_plugin_qmake/build/plugin_qmake/libplugin_qmake.a"
                
                LIBS    += -L"/home/uidm9805/Qt Projects/static_plugin_qmake/build/plugin_qmake" -lplugin_qmake
                
                jsulmJ Offline
                jsulmJ Offline
                jsulm
                Lifetime Qt Champion
                wrote on last edited by
                #8

                @NIXIN You should check the linker call as you have a space in your path which can cause issues (you should avoid spaces in paths).

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

                NIXINN 1 Reply Last reply
                0
                • jsulmJ jsulm

                  @NIXIN You should check the linker call as you have a space in your path which can cause issues (you should avoid spaces in paths).

                  NIXINN Offline
                  NIXINN Offline
                  NIXIN
                  wrote on last edited by
                  #9

                  @jsulm I tried same thing with this example http://doc.qt.io/qt-5/qtwidgets-tools-plugandpaint-app-example.html and its working fine there

                  LIBS += "/home/uidm9805/Qt Projects/plugandpaint/build/plugandpaint/plugins/libpnp_basictools.a"
                  

                  don't know why this project is behaving in odd manner

                  jsulmJ 1 Reply Last reply
                  0
                  • NIXINN NIXIN

                    @jsulm I tried same thing with this example http://doc.qt.io/qt-5/qtwidgets-tools-plugandpaint-app-example.html and its working fine there

                    LIBS += "/home/uidm9805/Qt Projects/plugandpaint/build/plugandpaint/plugins/libpnp_basictools.a"
                    

                    don't know why this project is behaving in odd manner

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

                    @NIXIN Is your plug-in really located here: /home/uidm9805/Qt Projects/static_plugin_qmake/build/plugin_qmake? And was it build with exact same compiler and Qt version?

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

                    NIXINN 1 Reply Last reply
                    0
                    • jsulmJ jsulm

                      @NIXIN Is your plug-in really located here: /home/uidm9805/Qt Projects/static_plugin_qmake/build/plugin_qmake? And was it build with exact same compiler and Qt version?

                      NIXINN Offline
                      NIXINN Offline
                      NIXIN
                      wrote on last edited by
                      #11

                      @jsulm yes plugin is located in the given path and compiler versions are same

                      1 Reply Last reply
                      0
                      • NIXINN Offline
                        NIXINN Offline
                        NIXIN
                        wrote on last edited by
                        #12

                        can anybody help me with this issue??

                        1 Reply Last reply
                        0
                        • NIXINN Offline
                          NIXINN Offline
                          NIXIN
                          wrote on last edited by
                          #13

                          After lot of hit and trial, I got the mistake I was doing

                          Q_IMPORT_PLUGIN(plugin_qmake)
                          

                          this line should have the class name of plugin

                          Q_IMPORT_PLUGIN(PluginQmake)
                          

                          now it works fine....

                          1 Reply Last reply
                          2
                          • Ni.SumiN Offline
                            Ni.SumiN Offline
                            Ni.Sumi
                            wrote on last edited by
                            #14

                            If it's solved, Please set it to "Solved" from unsolved.

                            1 Reply Last reply
                            1

                            • Login

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