56

I'm trying to statically compile something and I'm trying to get a handle on what all these dependencies are. I know that .dll files are for dynamically linked dependencies that will be required by the final output, but what are .a and .lib files and when do you need each of those?

Nantucket
  • 1,647
  • 3
  • 14
  • 25

4 Answers4

59

.a is an archive of code: compiled but not linked. You would link statically with it during your program's final link step.

.lib can be either the same as .a, or a magical so-called "import library": a thin placeholder which causes you to require a .dll at runtime.

crazyscot
  • 11,819
  • 2
  • 39
  • 40
  • 1
    I'm compiling the QT framework with a .a OpenSSL library, but somehow my final executable produced by QT is still requiring an external OpenSSL dll in order to run. Do you have any idea how this could be the case given that I'm using a .a library? – Nantucket Feb 26 '10 at 00:09
  • How were the contents of the OpenSSL .a compiled? How are you linking your final executable? – crazyscot Feb 26 '10 at 08:52
  • I am not sure about "require a .dll at runtime". You will not need .dll if your project is using .lib static libraries (unless there are .dll dependencies which you haven't identified correctly). – ha9u63a7 Aug 26 '14 at 07:10
  • Huh? Even import libraries are ar files, it's merely their contents that differs. Another difference are the paths that may occur for contained "members". – 0xC0000022L Dec 15 '22 at 22:33
38

On Unix systems you have the .a files. These are simple archives of object files (.o).

On Windows, there are .lib files, which are quite the same thing, but for Windows instead of Unix.

An additional subtlety is that in order to link some code against a DLL (on Windows), you have to link against a .lib file which contains simple wrappers which invoke the DLL. On Unix system, traditionally, there is no need for such wrappers (the linker is smart enough to generate them on the fly).

Thomas Pornin
  • 72,986
  • 14
  • 147
  • 189
12

Usually, .a is for static libraries under Linux whereas .lib are for the same but on Windows. But of course it is just a convention.

jldupont
  • 93,734
  • 56
  • 203
  • 318
11

Something I don't see mentioned here yet is the surprising fact that, at least some of the time, .a files and .lib files are actually the same binary format. Although I couldn't find anything saying as much on the mingw website, I noticed that when trying to get MS Visual C++'s 64-bit compiler cl.exe to link in a .dll file produced using the mingw-w64 g++ compiler, it happily accepted the command line

cl /EHsc /Ipath\to\include gmp_test.cpp path\to\lib\libgmp.dll.a

and the resulting .exe file ran correctly as soon as I put a copy of the corresponding .dll file in the current directory. (It did mumble the warning "Command line warning D9024 : unrecognized source file type 'path\to\lib\gmp-6.0.0\lib\libgmp.dll.a', object file assumed".)

Further evidence is that the Linux file command reported "current ar archive" for several files of each extension (.lib or .a) I tried.

j_random_hacker
  • 50,331
  • 10
  • 105
  • 169