enum DynamicLibrary::SearchOrdering

Declared at: llvm/include/llvm/Support/DynamicLibrary.h:90

Enumerators

NameValueComment
SO_Linker0SO_Linker - Search as a call to dlsym(dlopen(NULL)) would when DynamicLibrary::getPermanentLibrary(NULL) has been called or search the list of explcitly loaded symbols if not.
SO_LoadedFirst1SO_LoadedFirst - Search all loaded libraries, then as SO_Linker would.
SO_LoadedLast2SO_LoadedLast - Search as SO_Linker would, then loaded libraries. Only useful to search if libraries with RTLD_LOCAL have been added.
SO_LoadOrder4SO_LoadOrder - Or this in to search libraries in the ordered loaded. The default bahaviour is to search loaded libraries in reverse.