Top "Shared-libraries" questions

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

Cannot open shared object file libpng12.so.0

I am trying to run Quartus 13.0 in the following machine: parrot 4.18.0-parrot10-amd64 #1 SMP Debian 4.18.10-1parrot10 (2018-10-06) x86_64 …

shared-libraries libpng quartus debian-based parrot-os
How to set the path that a .so library will search for other .so libraries?

I have a libA.so that depends on libB.so, which is located at ../libB/ (from libA.c). I'm trying …

linux macos shared-libraries dynamic-linking cc
CMake output name for dynamic-loaded library?

I'm trying to write cmake rules to build dynamic-loaded library for python using boost.python on linux. I'd like to …

python cmake shared-libraries boost-python
How to see the object file contents of a .so file

how to see what .o files constitute .so file? Means how to notice what are the object files are used …

gcc shared-libraries object-files
Library path order for alternate glibc dynamic linker (ld.so)

I need to use an alternate glibc version, newer than the one installed on my system (2.18 vs 2.15). Several related issues …

linux shared-libraries ld glibc dynamic-linking
How to know the given shared library is built with debug symbols or not?

I have some compiled libraries i.e. shared library (*.so) on x86 Linux and I want to quickly determine whether …

linux debugging shared-libraries debug-symbols
Tool for Library Dependency

I'm looking for the tool/command on Unix platform to detect the library dependencies of the .so and .o files. …

unix shared-libraries solaris ldd nm
making gcc prefer static libs to shared objects when linking?

When linking against libraries using the -l option (say -lfoo), gcc will prefer a shared object to a static library …

linux gcc shared-libraries static-linking
Cannot run Code::Blocks: libwx_gtk2u-2.8.so.0 not found

I am trying to install Code::Blocks 10.05 from (non-SVN) sources (codeblocks-10.05-src.tar.bz2). My OS is Ubuntu 11.04. I needed …

shared-libraries wxwidgets codeblocks ubuntu-11.04
Using a shared library in another shared library

I am creating a shared library from a class from an example I got here C++ Dynamic Shared Library on …

c++ linux c++11 shared-libraries shared-objects