mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Use FindProgramByName instead of FindExecutable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30846 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d3eea90a9b
commit
dc4c38279f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user