What is the difference between these two file types. I see that my C++ app links against both types during the construction of the executable.
How to build .a files? links, references, and especially examples, are highly appreciated.
|
|
What is the difference between these two file types. I see that my C++ app links against both types during the construction of the executable. How to build .a files? links, references, and especially examples, are highly appreciated. |
|||
|
|
|
|
Additional Content I didn't notice the "examples" part of your question. Generally you will be using a makefile to generate static libraries.
This will compile An interesting side note: |
|||
|
|
|
|
D Shawley's answer is good, I just wanted to add a couple of points because other answers reflect an incomplete understanding of what's going on. Keep in mind that archive files (.a) are not restricted to containing object files (.o). They may contain arbitrary files. Not often useful, but see http://stackoverflow.com/questions/573163/dynamic-linker-dependenciy-info-embedded-in-an-archive/ for a stupid linker trick. Also notice that object files (.o) are not necessarily the result of a single compilation unit. It is possible to partially link several smaller object files into a single larger file. http://www.mihaiu.name/2002/library_development_linux/ -- search in this page for "partial" |
||
|
|
|
|
You can use See |
||
|
|
|
|
A .o file is the result of compiling a single compilation unit (essentially a source-code file, with associated header files) while a .a file is one or more .o files packaged up as a library. |
||
|
|
|
|
I believe an .a file is an archive that can contain multiple object files. |
||
|
|