Top "Dlopen" questions

POSIX function to dynamically load a library or binary into memory

MatLab error: cannot open with static TLS

Since a couple of days, I constantly receive the same error while using MATLAB which happens at some point with …

matlab libraries lapack blas dlopen
Automatically executed functions when loading shared libraries

When loading shared libraries in Windows, LoadLibrary() call causes DllMain in library to execute for each new process and thread …

posix shared-libraries d dlopen
dlsym/dlopen with runtime arguments

I am trying to do something like the following enum types {None, Bool, Short, Char, Integer, Double, Long, Ptr}; int …

c dlopen
Receive "undefined symbol" error when loading library with dlopen

I'm writing some code that uses dynamic shared libraries as plugins. My command line for building the shared libraries looks …

shared-libraries dlopen
Error: dlopen() Library not loaded Reason: image not found

I am a newbie in this field. My laptop is Macbook air, Software: OS X 10.8.5 (12F45). I am running a …

macos error-handling ipython dlopen
Difference between linking OpenMP with -fopenmp and -lgomp

I've been struggling a weird problem the last few days. We create some libraries using GCC 4.8 which link some of …

c++ openmp static-linking dlopen
Multiple instances of singleton across shared libraries on Linux

My question, as the title mentioned, is obvious, and I describe the scenario in details. There is a class named …

c++ singleton dlopen
dlopen - Undefined symbol error

I'm using dlopen to load a shared library at run time dlopen("SharedLibarary1.so", RTLD_NOW | RTLD_GLOBAL); In that …

c++ c linux dlopen shared-libraries
Compile C program using dlopen and dlsym with -fPIC

I am having a problem about a wrong symbol resolution. My main program loads a shared library with dlopen and …

c linux gcc elf dlopen
library path when dynamically loaded?

How can I get the path of the shared library from within the library itself? In other words, let's say …

linux shared-libraries dlopen