From: Alp Toker Date: Wed, 22 Jan 2014 22:17:51 +0000 (+0000) Subject: Tweak r199835 to use can_execute() instead of exists() X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ac2d2e0a3db575c216e0a6f8f5dae59adcf08e07;p=oota-llvm.git Tweak r199835 to use can_execute() instead of exists() The execution code path crashes if it can't execute the binary so we might as well take precautions here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199844 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index e6d4087476f..e36d9179584 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -668,8 +668,9 @@ int main(int argc, char **argv, char * const *envp) { << " Defaulting to simulated remote execution\n"; Target.reset(RemoteTarget::createRemoteTarget()); } else { - if (!sys::fs::exists(ChildExecPath)) { - errs() << "Unable to find child target: '" << ChildExecPath << "'\n"; + if (!sys::fs::can_execute(ChildExecPath)) { + errs() << "Unable to find usable child executable: '" << ChildExecPath + << "'\n"; return -1; } Target.reset(RemoteTarget::createExternalRemoteTarget(ChildExecPath));