aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bugpoint/ToolRunner.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-05-03 18:36:15 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-05-03 18:36:15 +0000
commit34e400ebe655160874f27d803811118a168599e1 (patch)
tree89655df6a9e4fa176485dc742c1b5611c6cdb247 /tools/bugpoint/ToolRunner.h
parent82493289e0234e0172313e845fb87306cf3687ac (diff)
downloadexternal_llvm-34e400ebe655160874f27d803811118a168599e1.zip
external_llvm-34e400ebe655160874f27d803811118a168599e1.tar.gz
external_llvm-34e400ebe655160874f27d803811118a168599e1.tar.bz2
Added -rsh-host and -rsh-user to support remote execution.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36685 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ToolRunner.h')
-rw-r--r--tools/bugpoint/ToolRunner.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/bugpoint/ToolRunner.h b/tools/bugpoint/ToolRunner.h
index 1ebccd8..a4dc915 100644
--- a/tools/bugpoint/ToolRunner.h
+++ b/tools/bugpoint/ToolRunner.h
@@ -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 };