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

Reid Spencer reid at x10sys.com
Wed Dec 15 14:21:52 PST 2004



Changes in directory llvm/lib/System/Unix:

Path.cpp updated: 1.23 -> 1.24
---
Log message:

Remove automatic insertion of CFE's lib directory into the bytecode path
because LLVM should be agnostic to the needs of specific front ends.


---
Diffs of the changes:  (+0 -7)

Index: llvm/lib/System/Unix/Path.cpp
diff -u llvm/lib/System/Unix/Path.cpp:1.23 llvm/lib/System/Unix/Path.cpp:1.24
--- llvm/lib/System/Unix/Path.cpp:1.23	Wed Dec 15 02:32:45 2004
+++ llvm/lib/System/Unix/Path.cpp	Wed Dec 15 16:21:42 2004
@@ -85,13 +85,6 @@
   if (env_var != 0) {
     getPathList(env_var,Paths);
   }
-#ifdef LLVMGCCDIR
-  {
-    Path tmpPath(std::string(LLVMGCCDIR) + "lib/");
-    if (tmpPath.readable())
-      Paths.push_back(tmpPath);
-  }
-#endif
 #ifdef LLVM_LIBDIR
   {
     Path tmpPath;






More information about the llvm-commits mailing list