Added -rsh-host and -rsh-user to support remote execution.
[oota-llvm.git] / tools / bugpoint / ToolRunner.h
index 1ebccd860a0a166c3027962572ab167cc0f70685..a4dc9150ca0b789d8d9f4e6c527dceb09fc388c3 100644 (file)
@@ -44,7 +44,9 @@ public:
 //
 class GCC {
   sys::Path GCCPath;          // The path to the gcc executable
-  GCC(const sys::Path &gccPath) : GCCPath(gccPath) { }
+  sys::Path RSHPath;          // The path to the rsh executable
+  GCC(const sys::Path &gccPath, const sys::Path &rshPath)
+    : GCCPath(gccPath), RSHPath(rshPath) { }
 public:
   enum FileType { AsmFile, CFile };