[llvm-commits] CVS: llvm/lib/System/Darwin/Path.cpp

Reid Spencer reid at x10sys.com
Sat Sep 11 00:35:12 PDT 2004



Changes in directory llvm/lib/System/Darwin:

Path.cpp updated: 1.3 -> 1.4
---
Log message:

Correct the dynamic lib suffix on Darwin.


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/System/Darwin/Path.cpp
diff -u llvm/lib/System/Darwin/Path.cpp:1.3 llvm/lib/System/Darwin/Path.cpp:1.4
--- llvm/lib/System/Darwin/Path.cpp:1.3	Fri Sep 10 23:59:30 2004
+++ llvm/lib/System/Darwin/Path.cpp	Sat Sep 11 02:35:01 2004
@@ -45,7 +45,7 @@
 
 std::string
 Path::GetDLLSuffix() {
-  return "dyld";
+  return "dylib";
 }
 
 }






More information about the llvm-commits mailing list