aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bugpoint/ToolRunner.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-09-09 06:11:26 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-09-09 06:11:26 +0000
commit70f684fcf92e5cdd11a3b3fc9bf3519f8b745857 (patch)
tree983a3db29dd68e04324f1f6bcc44419b8b884947 /tools/bugpoint/ToolRunner.h
parentcf01f7a78c18224866595b4b493d03a3de305e1f (diff)
downloadexternal_llvm-70f684fcf92e5cdd11a3b3fc9bf3519f8b745857.zip
external_llvm-70f684fcf92e5cdd11a3b3fc9bf3519f8b745857.tar.gz
external_llvm-70f684fcf92e5cdd11a3b3fc9bf3519f8b745857.tar.bz2
Allow use of ssh to perform remote execution.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55979 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ToolRunner.h')
-rw-r--r--tools/bugpoint/ToolRunner.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/bugpoint/ToolRunner.h b/tools/bugpoint/ToolRunner.h
index 0cc5426..c7ec1c5 100644
--- a/tools/bugpoint/ToolRunner.h
+++ b/tools/bugpoint/ToolRunner.h
@@ -44,9 +44,9 @@ public:
//
class GCC {
sys::Path GCCPath; // The path to the gcc executable
- sys::Path RSHPath; // The path to the rsh executable
- GCC(const sys::Path &gccPath, const sys::Path &rshPath)
- : GCCPath(gccPath), RSHPath(rshPath) { }
+ sys::Path RemoteClientPath; // The path to the rsh / ssh executable
+ GCC(const sys::Path &gccPath, const sys::Path &RemotePath)
+ : GCCPath(gccPath), RemoteClientPath(RemotePath) { }
public:
enum FileType { AsmFile, CFile };