OSDN Git Service

Correct the dynamic lib suffix on Darwin.
authorReid Spencer <rspencer@reidspencer.com>
Sat, 11 Sep 2004 07:35:01 +0000 (07:35 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 11 Sep 2004 07:35:01 +0000 (07:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16293 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Darwin/Path.cpp

index 33d15d1..1edb154 100644 (file)
@@ -45,7 +45,7 @@ Path::GetTemporaryDirectory() {
 
 std::string
 Path::GetDLLSuffix() {
-  return "dyld";
+  return "dylib";
 }
 
 }