Top "Dynamic-linking" questions

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

Linking boost library with Boost_USE_STATIC_LIB OFF on Windows

My CMakeFiles.txt looks like this: cmake_minimum_required ( VERSION 2.6 ) # Set warnings on and enable debugging SET( CMAKE_C_FLAGS "…

c++ boost visual-studio-2013 cmake dynamic-linking
error LNK1104: cannot open file 'libboost_thread-vc100-mt-gd-1_55.lib'

I'm trying to link the shared library of boost thread into my application. System: Windows8 IDE: Visual Studio 2010 I build …

visual-studio-2010 boost linker-errors dynamic-linking boost-build
How do I specify the linker path in Rust?

I'm trying to link a Rust program with libsoundio. I'm using Windows and there's a GCC binary download available. I …

rust static-linking dynamic-linking rust-cargo
About the -ldl flag while compiling and linking C++ files

With reference to the following code test_linker.cpp int main() { srand(time(0)); for (int i = 0; i < 10; ++i) { cout &…

c++ linux c++11 dynamic-linking
Linking freetype with cmake

I'm having troubles with linking freetype 2 under linux using cmake when building a C++11 project with an extern C library. …

c++ cmake dynamic-linking freetype
How can an autotools user specify a combination of static & dynamic linking?

I'm building a program with autoconf, automake, and libtool. My work requires that I statically link (most) libraries. This hasn't …

autotools static-linking dynamic-linking libtool
C/C++ How Does Dynamic Linking Work On Different Platforms?

How does dynamic linking work generally? On Windows (LoadLibrary), you need a .dll to call at runtime, but at link …

c++ c compilation dynamic-linking loadlibrary
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
Forcing a binary to use a specific (newer) version of a shared library (.so)

I have an older binary executable (utserver, closed source) that I'm trying to run on a system running Fedora 22. utserver …

linux shared-libraries elf dynamic-linking ldd
MySQL Improperly Configured Reason: unsafe use of relative path

I'm using Django, and when I run python manage.py runserver I receive the following error: ImproperlyConfigured: Error loading MySQLdb …

python mysql django dynamic-linking osx-elcapitan