- Some questions about shared library import library in Linux
- Posted by Bo Yang on November 14th, 2007
Hi all,
I hope this is the right group to post this message.
In Windows, there are .lib file used to import the function in DLL
file to the binary application. I have come across many .a file in
Mingw. Generally, .a files are binary archive file. But I am wondering
is that kind of file can be used as import library in Mingw? Thanks
very much!
Regards!
Bo
- Posted by Ben Bacarisse on November 14th, 2007
Bo Yang <struggleyb@gmail.com> writes:
A more specific group will give you more detailed answers.
Probably. "Import" is not a very good word in this context because
its meaning is very abstract. The process by which a piece of code
that uses some functions get combined with the code the implements
those functions is usually called "linking" and can be done, broadly
speaking, either statically (when the program is built) or dynamically
(when the program runs).
..DLL files are Dynamic Link Libraries and .a files are usually used to
hold static libraries.
--
Ben.
- Using C++ in Shared Library/Dll (Development Resources) by Olga Wepper
- application linking with expat library - run time library - strange problem (Development Resources) by pankajtakawale
- Shared ipod - Shared PC - Shared Music Library - Multiple Users (Audio, MP3 & Music) by Kent Smith
- making shared library with gcc (Programming) by nipspu
- Linking DLL Without Import Library? (Development Resources) by Larry Lindstrom

