Top "Dynamic-linking" questions

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

libpng warning: Incompatible libpng version in application and library

I have an application which depends on a plethora of libraries (don't we all). Most of these libraries are installed …

c++ linux opencv png dynamic-linking
Is it possible to statically link against a shared object?

My question is not the same as this question. I'm working on a project with a standalone binary that has …

shared-libraries dynamic-linking static-linking
iOS is it a static or a dynamic framework?

This might sound like a silly question but If you have a thirdParty.framework file, can you tell if it's …

ios objective-c static-linking dynamic-linking
How to link host code with a static CUDA library after separable compilation?

Alright, I have a really troubling CUDA 5.0 question about how to link things properly. I'd be really grateful for any …

cuda g++ static-linking dynamic-linking nvcc
C: Correct Way to Statically / Dynamically Link with MinGW-w64

Intuitively: MinGW-w64 is a Windows port of the GNU compiler tools (GCC, etc.). Pre-compiled binaries for Windows are .dll (dynamic …

windows gcc dynamic-linking mingw-w64
dlopen from memory?

I'm looking for a way to load generated object code directly from memory. I understand that if I write it …

c dynamic-linking ld dlopen
How to have LLDB print the locations of shared libraries in memory?

I am trying to gather as much information as I can about an apparent infinite loop issue seen when using …

macos debugging dynamic-linking lldb address-space
What is the difference between .got and .got.plt section?

What is the difference between .got and .got.plt section in ELF format?

linux elf dynamic-linking
Android Static Linking vs Dynamic Linking against glibc

I have been cross-compiling some Linux tools (and some of my own C code) to Android and one of the …

android android-ndk static-linking dynamic-linking libc
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