diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-09-11 07:35:01 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-09-11 07:35:01 +0000 |
commit | f51c8ea9de12ee498f41bd58038a6bb907e5f54b (patch) | |
tree | 27d2a7d8eb22278a121d35bb840dd89a828c4e4a /lib/System | |
parent | cbad701d0b6fd42112e121e2d7af9c70aaee7440 (diff) | |
download | external_llvm-f51c8ea9de12ee498f41bd58038a6bb907e5f54b.zip external_llvm-f51c8ea9de12ee498f41bd58038a6bb907e5f54b.tar.gz external_llvm-f51c8ea9de12ee498f41bd58038a6bb907e5f54b.tar.bz2 |
Correct the dynamic lib suffix on Darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16293 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System')
-rw-r--r-- | lib/System/Darwin/Path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Darwin/Path.cpp b/lib/System/Darwin/Path.cpp index 33d15d1..1edb154 100644 --- a/lib/System/Darwin/Path.cpp +++ b/lib/System/Darwin/Path.cpp @@ -45,7 +45,7 @@ Path::GetTemporaryDirectory() { std::string Path::GetDLLSuffix() { - return "dyld"; + return "dylib"; } } |