From: Devang Patel Date: Mon, 9 Oct 2006 21:16:05 +0000 (+0000) Subject: Use FindProgramByName instead of FindExecutable. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dc4c38279f6bf3b001515e6723e7b6d79ed378b0;p=oota-llvm.git Use FindProgramByName instead of FindExecutable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30846 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lto/lto.cpp b/tools/lto/lto.cpp index a64130dc7ad..c4face2712a 100644 --- a/tools/lto/lto.cpp +++ b/tools/lto/lto.cpp @@ -386,7 +386,7 @@ LTO::optimizeModules(const std::string &OutputFilename, // We can't just assemble and link the file with the system assembler // and linker because we don't know where to put the _start symbol. // GCC mysteriously knows how to do it. - const sys::Path gcc = FindExecutable("gcc", "/"); + const sys::Path gcc = sys::Program::FindProgramByName("gcc"); if (gcc.isEmpty()) { tmpAsmFilePath.eraseFromDisk(); TempDir.eraseFromDisk(true);