About 82 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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.

  4. What is the difference between /lib and /usr/lib and /var/lib?

    Nov 30, 2021 · Files in /lib and /usr/lib are supposed to be mostly read only and identical between systems. (If it was a container image, they could be fully read only and shared between …

  5. PyTorch Error loading "\\lib\\site-packages\\torch\\lib\\shm.dll" or ...

    Nov 27, 2022 · Does \lib\site-packages\torch\lib\shm.dll exist? Do you have sufficient privileges to load it?

  6. Visual Studio: What exactly are lib files (used for)?

    Mar 3, 2010 · In simple terms, yes - .lib files are just a collection of .obj files. There is a slight complication on Windows that you can have two classes of lib files. Static lib files essentially …

  7. 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 …

  8. How to See the Contents of Windows library (*.lib)

    Nov 20, 2008 · I have a binary file - Windows static library (*.lib). Is there a simple way to find out names of the functions and their interface from that library ? Something similar to emfar and …

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

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

  10. 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 …