Top "Dlopen" questions

POSIX function to dynamically load a library or binary into memory

Undefined symbol when trying to load a library with dlopen

I'm trying to load a shared library (plugin) I was provided (closed source) with dlopen under a Linux ARM platform. …

c++ compilation linker shared-libraries dlopen
C++: Undefined symbols when loading shared library with dlopen()

I have an issue when I try to use dlopen() to load a shared library into another shared library. I …

c++ shared-libraries dlopen undefined-symbol
dlopen() search path

is there a way to find out programmatically which paths are searched by dlopen() for shared objects? I always thought …

c linux dlopen
Cannot load any more object with static TLS

I have an application that use dlopen() to load additional modules. The application and modules are built on Ubuntu 12.04 x86_64 …

c++ linux gcc ubuntu dlopen
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
Memory leak reported by valgrind in dlopen?

I've been debugging some app lately with valgrind, and I'm getting very weird reports from dlopen. ==1987== 32 bytes in 1 blocks are …

memory-leaks valgrind dlopen
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
What can cause dlopen: no suitable image found (can't map)?

What can cause the following error when loading an additional bundle using dlopen: dlopen($(OBJ_DIR)/Test-20091217211256.ob, 6): no suitable …

macos dlopen
dlclose doesn't really unload shared object, no matter how many times it is called

My program uses dlopen to load a shared object and later dlclose to unload it. Sometimes this shared object is …

c++ c linux gcc dlopen