Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a dll with all symbols exported. It must be usable in visual studio, and use .lib from it. As I don't want to add __declspec(dllexport) I though I could wrap a .lib compiled with vs and make a dll from it with mingw gcc-ld wich exports all symbols.

I tried gcc -shared directly and nm reveals that my dll is empty, so I am wondering if it is possible to do that.

If you have a way to export all the symbols of a dll in vs7.1 it's also good for me. (tried the linker option to force export symbols with "all" as value, it's not recognizied).

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.