Top "Dynamic-linking" questions

Dynamic linking is a system which allows libraries to remain separate from programs until loaded, contrast static linking.

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 set RPATH and RUNPATH with GCC/LD?

I recently encountered this problem after an upgrade of the system: using the GCC -Wl,-rpath= option works differently than …

linux gcc shared-libraries ld dynamic-linking
Can I trick libc (GLIBC_2.13) into loading a symbol it doesn't have (from GLIBC_2.15)?

In my attempt to get "Steam for Linux" working on Debian, I've run into an issue. libcef (Chromium Embedded Framework) …

ld glibc dynamic-linking fortify-source
Linking opencv nonfree components (SIFT features and OCL specifically)

I am having trouble compiling some code after a OS upgrade (Ubuntu 12.04 to 14.04) and a re-install of opencv. The general …

opencv dynamic-linking sift ros ocl
how do I remove `GLIBC_2.27' requirement at compile time?

I've been using a docker image for c++ compilation. It's based on Ubuntu 18.04. When I attempt to run on some …

gcc glibc dynamic-linking ldd
@rpath for a dynamic library embedded in a framework

I have an app, call it Animal.app. Inside its Contents/Frameworks folder is a framework, say Mammal.framework. And …

macos dynamic-linking rpath
Linking Rust application with a dynamic library not in the runtime linker search path

I have a shared library that I'd like to dynamically link into several separate binary Cargo applications. I include its …

rust dynamic-linking dynamic-library rust-cargo ldd
How to distribute a Mac OS X with dependent libraries?

I have a program (specifically my entry for the SO DevDays Countdown app challenge) which relies on several dynamic libraries, …

macos software-distribution dynamic-linking dyld
How do I link to cppunit?

I think I'm missing something really stupid here. I have libcppunit installed: (I'm using Ubuntu 12.04) $ apt-cache policy libcppunit-dev libcppunit-dev: Installed: 1.12.1…

ubuntu dynamic-linking cppunit
Mixing static libraries and shared libraries

I have a project where I have one static library libhelper.a and another with my actual shared object library, …

linux shared-libraries static-libraries dynamic-linking fpic