Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/lli/
H A Dlli.cpp166 ChildExecPath("mcjit-remote-process", variable
706 if (ChildExecPath.empty()) { in main()
710 } else if (!sys::fs::can_execute(ChildExecPath)) { in main()
712 << "unable to find usable child executable: '" << ChildExecPath in main()
1209 ChildPath.reset(new char[ChildExecPath.size() + 1]); in launchRemote()
1210 std::copy(ChildExecPath.begin(), ChildExecPath.end(), &ChildPath[0]); in launchRemote()
1211 ChildPath[ChildExecPath.size()] = '\0'; in launchRemote()
1223 int rc = execv(ChildExecPath.c_str(), args); in launchRemote()