Top "Dynamic-library" questions

Compiled binaries capable to be loaded in the process address space in runtime.

CMake: how to produce binaries "as static as possible"

I would like to have control over the type of the libraries that get found/linked with my binaries in …

linker shared-libraries cmake static-linking dynamic-library
Is there a downside to using -Bsymbolic-functions?

I recently discovered the linker option "-Bsymbolic-functions" in GNU ld: -Bsymbolic When creating a shared library, bind references to global …

linker visibility elf dynamic-library
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
dlopen() error image not found

I have software that first loads a .dylib lets call libFirst.dylib using the following command: void* handle = dlopen(path.…

dylib dlopen dynamic-library
Is the function 'dlopen()' private API?

I want use function 'dlopen()' to invoke a dynamic library on iOS platform, is the function 'dlopen()' private …

ios dynamic-linking dlopen dynamic-library
How to debug dylib with Xcode?

I have a Xcode project for library arith. I could build it with debug configuration, and I need to debug …

xcode debugging xcodebuild dynamic-library
Compiling Lua - create .so files?

I am compiling Lua 5.2.3 on Centos 6.5, and the compilation / install works fine. However, I also need the development libraries for …

linux lua makefile centos dynamic-library
Xcode linking against static and dynamic library

I have some problems with linking my macOS app against C libraries. I have several question related to this issue. …

c++ xcode static-libraries dylib dynamic-library
Can I export functions of a static library when building a dynamic library linking against that static library?

On win32, I built a dynamic library called A.dll which linked against a static library called B.lib, and …

c++ static-libraries dynamic-library
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