About 82 results
Open links in new tab
  1. What's the difference between .lib and .a files? - Stack Overflow

    Feb 25, 2010 · 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 …

  2. DLL and LIB files - what and why? - Stack Overflow

    May 27, 2009 · There are static libraries (LIB) and dynamic libraries (DLL) - but note that .LIB files can be either static libraries (containing object files) or import libraries (containing symbols to allow the …

  3. К чему относятся .lib и .dll? - Stack Overflow на ...

    Jan 16, 2013 · Формат .lib -- это принятый MSVC (возможно, и другими компиляторами) формат статической библиотеки, то есть, библиотеки, которая будет вкомпилирована компоновщиком …

  4. c++ - LNK1104: cannot open file 'libboost_program_options-vc143-mt …

    Nov 2, 2025 · LNK1104: cannot open file 'libboost_program_options-vc143-mt-s-x64-1_89.lib' Asked 4 months ago Modified 4 months ago Viewed 384 times

  5. Why a shared library on Windows ('.dll') has additional '.lib' file for ...

    Feb 14, 2025 · The a sepratate .lib is used is mainly for historical reasons, so that you could link against a library without having the actual library present; which matters as different versions of Windows …

  6. c++ - What is inside .lib file of Static library, Statically linked ...

    A lib file is just a collection of related obj files, much like putting obj files in a directory. That is essentially what a lib file is, a library of obj files.

  7. Qual a diferença de DLL e lib? - Stack Overflow em Português

    Nov 29, 2016 · Sei que .dll e .lib são bibliotecas, a primeira é dinâmica e a segunda é estática. Mas o que isso realmente quer dizer? Como cada uma funciona? Se eu tiver que gerar uma biblioteca a …

  8. Difference between lib, lib32, lib64, libx32, and libexec

    My 64 bit Ubuntu 13.04 system has the following directories in /: lib lib32 lib64 libx32 libexec In the /usr directory there is: lib lib32 libx32 libexec This seemed like something that could be ...

  9. What's the differences between .dll , .lib, .h files?

    Feb 11, 2017 · LIB Either declares the binary interface to a dynamic library (DLL) or contains the binary code of a library. DLL A dynamic library - your application shares these with the system or you use …

  10. windows - Linking : .a, .lib and .def files - Stack Overflow

    .lib is the extension used for static library on Windows, and according to wikipedia, is also used as "import library" under windows, so I strongly suspect they're just another name for what the binutils …