commit | f51c8ea9de12ee498f41bd58038a6bb907e5f54b | [log] [tgz] |
---|---|---|
author | Reid Spencer <rspencer@reidspencer.com> | Sat Sep 11 07:35:01 2004 +0000 |
committer | Reid Spencer <rspencer@reidspencer.com> | Sat Sep 11 07:35:01 2004 +0000 |
tree | 27d2a7d8eb22278a121d35bb840dd89a828c4e4a | |
parent | cbad701d0b6fd42112e121e2d7af9c70aaee7440 [diff] [blame] |
Correct the dynamic lib suffix on Darwin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16293 91177308-0d34-0410-b5e6-96231b3b80d8
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 @@ std::string Path::GetDLLSuffix() { - return "dyld"; + return "dylib"; } }