[PATCH] D33529: Allow clients to specify search order of DynamicLibraries.
Frederich Munch via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon May 29 13:59:23 PDT 2017
marsupial added inline comments.
================
Comment at: include/llvm/Support/DynamicLibrary.h:96
+ SO_Linker,
+ /// SO_LoadedFirst - Search all loaded libraries then as SO_Linker would
+ SO_LoadedFirst,
----------------
pcanal wrote:
> Did you mean "Search all loaded libraries as the SO_Linker would" ?
No, its what I think you are for.
The process does not have priority.
BTW, In case it wasn't clear: using this on Windows can cause real problems as a lot of C++ runtime can be exported via the binary (though I understand you want to preserve behavior ROOT has on Unix).
https://reviews.llvm.org/D33529
More information about the llvm-commits
mailing list