diff options
Diffstat (limited to 'lib/System/Path.cpp')
-rw-r--r-- | lib/System/Path.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/System/Path.cpp b/lib/System/Path.cpp index 1a6d030f89..d0ee1a3ae8 100644 --- a/lib/System/Path.cpp +++ b/lib/System/Path.cpp @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #include "llvm/System/Path.h" +#include "llvm/Config/config.h" #include <cassert> namespace llvm { @@ -80,6 +81,11 @@ Path::FindLibrary(std::string& name) { return sys::Path(); } +std::string +Path::GetDLLSuffix() { + return LTDL_SHLIB_EXT; +} + } // Include the truly platform-specific parts of this class. |