From: Reid Spencer Date: Sat, 11 Sep 2004 07:35:01 +0000 (+0000) Subject: Correct the dynamic lib suffix on Darwin. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f51c8ea9de12ee498f41bd58038a6bb907e5f54b;p=oota-llvm.git 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 33d15d1fb97..1edb15450b7 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"; } }