dlopen - man pages section 3: Basic Library Functions
docs.oracle.com › cd › E86824_01The search path can also be affected from a runpath setting within the object from which the call to dlopen() originates. These search rules will only be applied to path names that do not contain an embedded '/'. Objects whose names resolve to the same absolute path name or relative path name can be opened any number of times using dlopen ...
c - dlopen() search path - Stack Overflow
https://stackoverflow.com/questions/819364018.11.2011 · I always thought dlopen() would only look in /lib and /usr/lib but now I've seen that on Linux Mint several core components like libglib-2.0.so are in a wholly different folders, namely in /rofs/lib/i386-gnu-linux and some others. Is there a way to get to know all these paths that dlopen() will search through for a shared object?
dlopen() — Gain access to a dynamic link library
www.ibm.com › com › dlopenThe mode parameter describes how dlopen () operates on a file with respect to the processing of dependent DLLs and the scope of visibility of the symbols provided within file. If a file is specified in multiple invocations, mode is interpreted at each invocation. The mode is a bitwise-OR of the values specified. When a DLL is loaded, it may ...
dlopen(3) - Linux man page
https://linux.die.net/man/3/dlopendlopen () The function dlopen () loads the dynamic library file named by the null-terminated string filename and returns an opaque "handle" for the dynamic library. If filename is NULL, then the returned handle is for the main program. If filename contains a slash ("/"), then it is interpreted as a (relative or absolute) pathname.
dlopen() — Gain access to a dynamic link library
www.ibm.com › docs › enMakes the dynamic link library (DLL) specified by file available to the calling program. If the file argument contains a single slash ("/"), it is used as the z/OS UNIX file system path name for the DLL. If the environment variable LIBPATH is set, each directory that is listed is searched for the DLL. Otherwise, the current directory is searched.