Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp165 ChildExecPath("mcjit-remote-process", variable
653 if (ChildExecPath.empty()) { in main()
657 } else if (!sys::fs::can_execute(ChildExecPath)) { in main()
659 << "unable to find usable child executable: '" << ChildExecPath in main()
1234 ChildPath.reset(new char[ChildExecPath.size() + 1]); in launchRemote()
1235 std::copy(ChildExecPath.begin(), ChildExecPath.end(), &ChildPath[0]); in launchRemote()
1236 ChildPath[ChildExecPath.size()] = '\0'; in launchRemote()
1248 int rc = execv(ChildExecPath.c_str(), args); in launchRemote()