Home
last modified time | relevance | path

Searched refs:GCCPath (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/tools/bugpoint/
DToolRunner.cpp740 GCCArgs.push_back(GCCPath.c_str()); in ExecuteProgram()
801 if (RunProgramWithTimeout(GCCPath, &GCCArgs[0], sys::Path(), sys::Path(), in ExecuteProgram()
803 *Error = ProcessFailure(GCCPath, &GCCArgs[0]); in ExecuteProgram()
891 GCCArgs.push_back(GCCPath.c_str()); in MakeSharedObject()
952 if (RunProgramWithTimeout(GCCPath, &GCCArgs[0], sys::Path(), sys::Path(), in MakeSharedObject()
954 Error = ProcessFailure(GCCPath, &GCCArgs[0]); in MakeSharedObject()
965 sys::Path GCCPath = sys::Program::FindProgramByName(GCCBinary); in create() local
966 if (GCCPath.isEmpty()) { in create()
975 Message = "Found gcc: " + GCCPath.str() + "\n"; in create()
976 return new GCC(GCCPath, RemoteClientPath, Args); in create()
DToolRunner.h40 sys::Path GCCPath; // The path to the gcc executable. variable
45 : GCCPath(gccPath), RemoteClientPath(RemotePath) { in GCC()