Top "Static-libraries" questions

A static library is an archive of object files.

gcc will not properly include math.h

Here is a minimal example outlining my problem test.c: #include <stdio.h> #include <math.h> …

c gcc linker static-libraries
How to compile a static library using the Android NDK?

I'm trying to compile a static library to use on Android but I can't figure out how to compile it. …

android static-libraries android-ndk
Linking libstdc++ statically: any gotchas?

I need to deploy a C++ application built on Ubuntu 12.10 with GCC 4.7's libstdc++ to systems running Ubuntu 10.04, which comes …

c++ linux gcc static-libraries libstdc++
What is inside .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library?

What is inside of a .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library? How …

c++ dll linker static-libraries
C: Creating static library and linking using a Makefile

I am trying to understand static and shared Libraries. I want to do the following to create a makefile that …

c makefile static-libraries
Library? Static? Dynamic? Or Framework? Project inside another project

I have an existing iOS app and want to add a large chunk of code that I've been developing as …

ios xcode frameworks static-libraries
Contents of a static library

I have a static library, say mystaticlib.a. I want to see its contents, such as the number of object …

c++ c gcc static-libraries object-files
After update to Xcode 5 - ld: symbol(s) not found for architecture armv7 or armv7s linker error

I just updated my iPhone 4S software to iOS 7 Beta 2 while I was in the middle of putting the final …

cordova static-libraries cpu-architecture ios7 xcode5
g++ linker: force static linking if static library exists?

I've a program which links to many libraries. g++, by default, prefers to link to shared libraries, even if the …

c++ c linker g++ static-libraries
Android NDK: Link using a pre-compiled static library

I'm trying to port Jnetpcap to Android in order to use it for parsing .pcap files. Jnetpcap is a java …

android linker android-ndk static-libraries