Searched refs:GCCPath (Results 1 – 2 of 2) sorted by relevance
/external/llvm/tools/bugpoint/ |
D | ToolRunner.cpp | 684 GCCArgs.push_back(GCCPath.c_str()); in ExecuteProgram() 747 if (RunProgramWithTimeout(GCCPath, &GCCArgs[0], "", "", "")) { in ExecuteProgram() 748 *Error = ProcessFailure(GCCPath, &GCCArgs[0]); in ExecuteProgram() 837 GCCArgs.push_back(GCCPath.c_str()); in MakeSharedObject() 897 if (RunProgramWithTimeout(GCCPath, &GCCArgs[0], "", "", "")) { in MakeSharedObject() 898 Error = ProcessFailure(GCCPath, &GCCArgs[0]); in MakeSharedObject() 909 std::string GCCPath = sys::FindProgramByName(GCCBinary); in create() local 910 if (GCCPath.empty()) { in create() 919 Message = "Found gcc: " + GCCPath + "\n"; in create() 920 return new GCC(GCCPath, RemoteClientPath, Args); in create()
|
D | ToolRunner.h | 39 std::string GCCPath; // The path to the gcc executable. variable 44 : GCCPath(gccPath), RemoteClientPath(RemotePath) { in GCC()
|