Top "Dlsym" questions

POSIX function for accessing code or data in a dynamically-loaded library using the code's name.

Alternatives to dlsym() and dlopen() in C++

I have an application a part of which uses shared libraries. These libraries are linked at compile time. At Runtime …

c++ shared-libraries dynamic-loading dlsym
What is Linux utility to mangle a C++ symbol name?

I have c++filt command to demangle a symbol, what is the tool to do the opposite and mangle a …

c++ compiler-construction dlsym demangler
Setting my lib for LD_PRELOAD makes some processes produce loader errors

I get the following error when I try to run a script I have only execution access for: uname: symbol …

c++ c linux linker dlsym
How to correctly assign a pointer returned by dlsym into a variable of function pointer type?

I am trying to use dlopen() and dlsym() in my code and compile it with gcc. Here is the first …

c pointers dlopen dlsym