Trouble with shared object
-
Hello,
I am trying to dynamically load a shared object into my application. Both the application and the shared object are compiled with Qt. The shared object contains one class- a subclass of a class defined in the application (which is itself a subclass of QObject). I am exporting symbols in the application by adding -Wl,export-dynamic to the compile flags so that symbols in the shared object will be resolved when it's loaded in. Whether I use QLibrary or dlopen, I am always getting the following error when loading it.
undefined symbol: _ZNK3Orb9Component9Component10metaObjectEv
If I put the Q_OBJECT macro in the subclass (which I don't really want), a moc object is also created and linked into the library, and I get the following error when loading it:
undefined symbol: _ZN3Orb9Component9Component16staticMetaObjectE
Note: Component is the name of the parent class.
Thanks for your help!
-
Did I understand correct:
you have an executable (the app) that vtries to export classes, that should be used by other binaries (exes, dynamic libraries)?
That is not possible!
You can export stuff from dynamic libraries and use them in executables, but not the other way round.
-
That's what I originally thought. But apparently, a shared library can have unresolved symbols that the application can fill in. You can check here: "http://www.informit.com/articles/article.aspx?p=22435&rll=1":http://www.informit.com/articles/article.aspx?p=22435&rll=1
I've made a simple example program before where the shared object contains a subclass of an object in the main app. The shared object does not contain the parent class's definition (only the header), but is resolved when loaded into the main app.
-
YES.
That would create double defined methods and not really 2 static members. On windows, it would have 2 members, on linux only one. The last one wins. If one is of type int and one of type string, the last loaded one is the existing one. Same appears to initialization.
If the member is called static ... inside the cpp file, then it will appear twice, it it's a static member in the class, it will appear once on Linux, twice on windows.
But definitely not what you expect :-(
-
I see, thanks for clearing that up!
I would still really like to get it working where the shared object only has the subclass definition. The idea is that there will be many shared objects to work like plugins. They return a pointer to the base class and the main app uses it through polymorphism. I know this is possible but something just isn't working with Qt. I'm quite sure it has to do with moc objects. From what I can see, the base class moc is compiled in with the main app and the subclass moc is compiled into the .so. Why are there undefined symbols?
-
Interesting. After compiling the project with and without Wl,--export-dynamic, I checked the output of nm on the executable. I used nm -D to show the dynamic symbols and the output was the same in both cases. So does this mean Wl,--export-dynamic is not doing anything?
I've been including it under QMAKE_CXXFLAGS in my .pro file.