Top "Shared-libraries" questions

Shared libraries are libraries that are loaded by programs when they start.

Convert a Static Library to a Shared Library?

I have a third-party library which consists mainly of a large number of static (.a) library files. I can compile …

c linux shared-libraries static-libraries
How to extract C source code from .so file?

I am working on previously developed software and source code is compiled as linux shared libraries (.so) and source code …

c linux extract decompiling shared-libraries
How to check what shared libraries are loaded at run time for a given process?

Is there a way to check which libraries is a running process using? To be more specific, if a program …

c++ c linux shared-libraries
Easy check for unresolved symbols in shared libraries?

I am writing a fairly large C++ shared-object library, and have run into a small issue that makes debugging a …

c++ linker shared-libraries
What is armeabi and why they use it?

I see this library (armeabi) many times when I explore open sources. I net searched for an explanation of it, …

android shared-libraries
Purging and rebuilding ldconfig cache?

I am trying to purge the ldconfig cache of links to libraries to link against. I have a local folder …

linux shared-libraries
What's the difference between -rpath and -L?

gcc and ld provide many ways to specify a search path for libraries—among them the -rpath and -L flags. …

gcc linker shared-libraries ld
CMake: how create a single shared library from all static libraries of subprojects?

I have the following layout: top_project + subproject1 + subproject2 Each of subproject1 and subproject2 creates a static library. I would …

cmake shared-libraries