Top "Static-libraries" questions

A static library is an archive of object files.

How to force inclusion of an object file in a static library when linking into executable?

I have a C++ project that due to its directory structure is set up as a static library A, which …

c++ linux linker static-libraries
What is the difference between .LIB and .OBJ files? (Visual Studio C++)

I know .OBJ is the result of compiling a unit of compilation and .LIB is a static library that can …

c++ linker static-libraries static-variables object-files
How to use function from static library if I don't have header file

Is it a way to use function from static lib, if I don't have header file, only *.a file, but …

c++ c static-libraries
Cocoapods - can't locate file for: -lPods / -lPods is not an object file (not allowed in a library)

I have an iOS static library that isn't building. It uses cocoapods to manage a number of dependencies as well …

ios static-libraries static-linking cocoapods
Xcode custom build configuration causes "library/file not found" for static libraries

I have a workspace with a project which links with the static libraries in another project (which is also in …

xcode4 build linker static-libraries
How to manually add a library to a visual studio 2017 project?

My apologies for this very basic question that has assuredly been asked and answered before, also for my very dated …

c# c++ visual-studio static-libraries dynamic-library
Add static library to podspec

My podspec requires a static library (OpenSSL). For convenience, I'm shipping the library with the pod. The static library contains: …

ios openssl static-libraries cocoapods
Convert a Static Library to a Shared Library (create libsome.so from libsome.a): where's my symbols?

the title of this question is an exact dupe, but the answers in that question don't help me. I have …

c++ g++ shared-libraries static-libraries ld
Link error: "Cannot find -ltinfo" on Ubuntu 12.04 on a 32-bit arm processor

I get the following link error when I'm compiling a small function using ncurses for an Ubuntu 12.04 running on arm. …

c++ ubuntu arm static-libraries ubuntu-12.04
SCons to make a shared library (.so) with a static library (.a)

I'm trying to get SCons to make a shared library. One of the items going into the .so is a .…

static static-libraries portability static-linking scons