diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-29 04:43:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-29 04:43:42 +0000 |
commit | c0474013cb3fc200e5087d126d6cbf9b08aab45a (patch) | |
tree | c0429160767865b5c2359553ab15493986c3a302 /llvm/lib/System/DynamicLibrary.cpp | |
parent | 76a2736c74561ee13a8b3eadc92766fa555eee49 (diff) | |
download | bcm5719-llvm-c0474013cb3fc200e5087d126d6cbf9b08aab45a.tar.gz bcm5719-llvm-c0474013cb3fc200e5087d126d6cbf9b08aab45a.zip |
Fix PR3424, a static constructor ordering issue. Patch by Robert Schuster!
llvm-svn: 63269
Diffstat (limited to 'llvm/lib/System/DynamicLibrary.cpp')
-rw-r--r-- | llvm/lib/System/DynamicLibrary.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/llvm/lib/System/DynamicLibrary.cpp b/llvm/lib/System/DynamicLibrary.cpp index 970266f3438..3bf172c22b3 100644 --- a/llvm/lib/System/DynamicLibrary.cpp +++ b/llvm/lib/System/DynamicLibrary.cpp @@ -18,11 +18,14 @@ #include <map> // Collection of symbol name/value pairs to be searched prior to any libraries. -static std::map<std::string, void *> g_symbols; +std::map<std::string, void *> &g_symbols() { + static std::map<std::string, void *> symbols; + return symbols; +} void llvm::sys::DynamicLibrary::AddSymbol(const char* symbolName, void *symbolValue) { - g_symbols[symbolName] = symbolValue; + g_symbols()[symbolName] = symbolValue; } // It is not possible to use ltdl.c on VC++ builds as the terms of its LGPL @@ -76,8 +79,8 @@ void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) { // check_ltdl_initialization(); // First check symbols added via AddSymbol(). - std::map<std::string, void *>::iterator I = g_symbols.find(symbolName); - if (I != g_symbols.end()) + std::map<std::string, void *>::iterator I = g_symbols().find(symbolName); + if (I != g_symbols().end()) return I->second; // Now search the libraries. |