[llvm-commits] CVS: llvm/lib/Support/ToolRunner.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Feb 26 20:32:50 PST 2005



Changes in directory llvm/lib/Support:

ToolRunner.cpp updated: 1.38 -> 1.39
---
Log message:

Remove some stuff I checked in accidentally


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

 ToolRunner.cpp |    6 ------
 1 files changed, 6 deletions(-)


Index: llvm/lib/Support/ToolRunner.cpp
diff -u llvm/lib/Support/ToolRunner.cpp:1.38 llvm/lib/Support/ToolRunner.cpp:1.39
--- llvm/lib/Support/ToolRunner.cpp:1.38	Sun Feb 13 17:13:47 2005
+++ llvm/lib/Support/ToolRunner.cpp	Sat Feb 26 22:32:35 2005
@@ -391,10 +391,6 @@
   sys::Path OutputBinary (ProgramFile+".gcc.exe");
   OutputBinary.makeUnique();
   GCCArgs.push_back(OutputBinary.c_str()); // Output to the right file...
-  GCCArgs.push_back("-L/home/vadve/shared/localtools/x86/lib");
-  GCCArgs.push_back("-lf2c");                // Hard-code the math library...
-  GCCArgs.push_back("-lpng");                // Hard-code the math library...
-  GCCArgs.push_back("-lz");                // Hard-code the math library...
   GCCArgs.push_back("-lm");                // Hard-code the math library...
   GCCArgs.push_back("-O2");                // Optimize the program a bit...
 #if defined (HAVE_LINK_R)
@@ -410,8 +406,6 @@
   }
 
   std::vector<const char*> ProgramArgs;
-  //ProgramArgs.push_back("valgrind");
-  //ProgramArgs.push_back("--tool=memcheck");
 
   ProgramArgs.push_back(OutputBinary.c_str());
   // Add optional parameters to the running program from Argv






More information about the llvm-commits mailing list