vote up 0 vote down star

I have multiple source files in C++ using which i want to create a Dynamic link library.

I see this happening in linux with gcc -shared and ln

however for Windows i suppose i would have to modify source files to generate a DLL.

Is there a way to generate DLL (a file similar to *.so in linux) with provided source files. Please correct me if i m wrong, i think *so is dll for linux.

The reason for needing this is to use SWIG for calling C++ functions in python in Windows Platfrom. I am stuck at the step that requires me to generate a dll in windows.

flag

74% accept rate

4 Answers

vote up 2 vote down

The exact approach depends on which compiler you are using, but the procedure is probably documented. For example, if you want to create a DLL using Visual Studio, a walkthrough is available here.

link|flag
The process of creating a DLL depends on which EDITOR you use? Huh? – swillden Oct 23 at 23:55
Durr, compiler. Fixed. – David Seiler Oct 24 at 0:01
vote up 1 vote down

Here the step-by-step for you Create Your First Test Project

link|flag
vote up 1 vote down

DLL functions that are callable from outside the DLL have special macro keywords

__declspec(dllexport) void __cdecl SomeFunction(int a, int b);

link|flag
Either that, or you have to create a .def file with export definitions. – Thomas Nov 12 at 20:21
vote up 0 vote down

What compiler are you using? For Visual C++ the command line that creates a dynamic library from the given object files looks like this:

link -nologo -dll -out:mylib.dll -implib:mylib.lib myobj1.obj myobj2.obj ...

Also while compiling your source files into object files you will need to use the -D option to define any macros necessary to ensure that your dynamic library's symbols will be exported.

link|flag

Your Answer

Get an OpenID
or

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