Top "Static-libraries" questions

A static library is an archive of object files.

Difference between static and shared libraries?

What is the difference between static and shared libraries? I use Eclipse and there are several project types including Static …

c++ c shared-libraries static-libraries
Telling gcc directly to link a library statically

It feels strange to me to use -Wl,-Bstatic in order to tell gcc which libraries I want to link …

gcc linker static-libraries dynamic-linking
How do I tell CMake to link in a static library in the source directory?

I have a small project with a Makefile which I'm trying to convert to CMake, mostly just to get experience …

cmake static-libraries
How to resolve 'unrecognized selector sent to instance'?

In the AppDelegate, I'm alloc'ing an instance defined in a static library. This instance has an NSString property set a "…

objective-c iphone cocoa-touch memory-management static-libraries
How to See the Contents of Windows library (*.lib)

I have a binary file - Windows static library (*.lib). Is there a simple way to find out names of …

windows static-libraries libraries
How to compile a static library in Linux?

I have a question: How to compile a static library in Linux with gcc, i.e. I need to compile …

c gcc static-libraries
File is universal (three slices), but it does not contain a(n) ARMv7-s slice error for static libraries on iOS, anyway to bypass?

I upgraded Xcode version and when using external static libraries, I get this message: ld: file is universal (3 slices) but …

ios objective-c xcode ios6 static-libraries
static linking only some libraries

How can I statically link only a some specific libraries to my binary when linking with GCC? gcc ... -static ... tries …

gcc linker static-libraries
DLL and LIB files - what and why?

I know very little about DLL's and LIB's other than that they contain vital code required for a program to …

dll static-libraries
What's the difference between .so, .la and .a library files?

I know an .so file is a kind of dynamic library (lots of threads can share such libraries so there …

linux memory-management static-libraries ld shared-libraries