I'm in the process of porting a large C++ application from Linux (gcc) to Windows (Visual C++ 2008) and am having linker issues with plugins. On Linux this wasn't an issue, as .so supports runtime symbol lookup, but dll does not seem to support this.

Some background information: The application (the host), which hosts a scripting environment, provides interfaces to plugins (shared libraries that are loaded at runtime by script API calls), allowing the host and the scripting API to be extended without recompiling the host application. On Linux this is just a matter of including the host application's headers in the plugin source, but on Windows I'm receiving linker errors. I'm not sure exactly what I need to link with for Visual C++ to resolve these symbols.

One of our dependencies (open source, LGPL) has preprocessor declarations that it uses to insert __declspec(dllexport) and __declspec(dllimport) into it's headers. Some prior research indicates that I may have to do this as well, but I'd like to be sure before I go modifying a whole bunch of core headers. (I was previously able to get this working on MinGW, but we've decided that supporting Visual Studio is a requirement for this sort of commercial project.)

My question, in a nutshell: How do I link runtime-loaded dlls against a host exe in Visual C++?

Edit: To clarify the problem with an example, I have a class in my host application, Object, which represents the base type of an object that may be accessed by a script. In my plugins I have a number of classes which extend Object to perform other functions, such as integrating networking support or new visual elements. This means that my dll must link with symbols in the host exe, and I am not sure how to do that.

link|improve this question

I am having a bit of trouble wrapping my head around this. If you have a concrete example and simplify it to a few lines of code maybe that might help everyone help you. – ojblass Apr 20 '09 at 23:36
feedback

4 Answers

up vote 5 down vote accepted

What do you mean by "runtime symbol lookup"? Do you mean dynamically loading libraries using dlopen and dlsym and so on? The equivalents in Windows are called LoadLibrary and GetProcAddress.

In windows, you don't export symbols from a executable. You should only export them from a dll. The right way to solve your problem is to rearchitect so that the exported symbols are in a dll that the executable and other plugin dlls can link against.

link|improve this answer
That's exactly it, and I am able to do that fine, but I can't figure out how to compile that dll against symbols defined in my host executable (See my recent edit) – Sean Edwards Apr 20 '09 at 22:40
1  
You can export symbols from an EXE; just use GetProcAddress(GetModuleHandle(NULL), "MyProc)) to pick them up. – Roger Lipscombe Dec 9 '09 at 14:35
...but the Windows loader won't do this automatically for you. – Roger Lipscombe Dec 9 '09 at 15:25
feedback

You can't, easily. The windows loader isn't designed to export symbols out of an EXE and bind them to symbols in a DLL.

One pattern that I have seen is the DLL export a certain function that the EXE calls. It takes as a parameter a structure which contains addresses of functions in the EXE for the DLL to call.

link|improve this answer
feedback

As 1800 INFORMATION says, don't do it like that. Move Object out of the executable and into a "third" DLL. Link the plugins and the executable against that.

link|improve this answer
feedback

sorry for bump this old topic, but I do meet the same problem. I would like to implement a gcc plugin under windows. but you know, dll has not the ability to access all the exe symbols. (gcc plugin has such mechanism to access the application under linux)

any good ideas?

I found on page may help: http://edll.sourceforge.net/

I have not tested it, but I do hope someone can have a good solution. Thanks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.