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

Chris Lattner lattner at cs.uiuc.edu
Sun Feb 13 15:14:01 PST 2005



Changes in directory llvm/lib/Support:

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

Move helper function here.


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

 ToolRunner.cpp |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+)


Index: llvm/lib/Support/ToolRunner.cpp
diff -u llvm/lib/Support/ToolRunner.cpp:1.37 llvm/lib/Support/ToolRunner.cpp:1.38
--- llvm/lib/Support/ToolRunner.cpp:1.37	Sun Dec 19 12:00:21 2004
+++ llvm/lib/Support/ToolRunner.cpp	Sun Feb 13 17:13:47 2005
@@ -14,6 +14,7 @@
 #define DEBUG_TYPE "toolrunner"
 #include "llvm/Support/ToolRunner.h"
 #include "llvm/Config/config.h"   // for HAVE_LINK_R
+#include "llvm/System/Program.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/Support/FileUtilities.h"
 #include <fstream>
@@ -22,6 +23,26 @@
 
 ToolExecutionError::~ToolExecutionError() throw() { }
 
+/// RunProgramWithTimeout - This function provides an alternate interface to the
+/// sys::Program::ExecuteAndWait interface.
+/// @see sys:Program::ExecuteAndWait
+static int RunProgramWithTimeout(const sys::Path &ProgramPath,
+                                 const char **Args,
+                                 const sys::Path &StdInFile,
+                                 const sys::Path &StdOutFile,
+                                 const sys::Path &StdErrFile,
+                                 unsigned NumSeconds = 0) {
+  const sys::Path* redirects[3];
+  redirects[0] = &StdInFile;
+  redirects[1] = &StdOutFile;
+  redirects[2] = &StdErrFile;
+  
+  return 
+    sys::Program::ExecuteAndWait(ProgramPath, Args, 0, redirects, NumSeconds);
+}
+
+
+
 static void ProcessFailure(sys::Path ProgPath, const char** Args) {
   std::ostringstream OS;
   OS << "\nError running tool:\n ";
@@ -370,6 +391,10 @@
   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)
@@ -385,6 +410,9 @@
   }
 
   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
   for (unsigned i=0, e = Args.size(); i != e; ++i)






More information about the llvm-commits mailing list