ldc/gen/programs.cpp
2012-12-16 17:19:14 +01:00

80 lines
1.8 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//===-- programs.cpp ------------------------------------------------------===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
#include "gen/programs.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Program.h"
#include "root.h" // error(char*)
#include "mars.h" // fatal()
using namespace llvm;
static cl::opt<std::string> gcc("gcc",
cl::desc("GCC to use for assembling and linking"),
cl::Hidden,
cl::ZeroOrMore);
static cl::opt<std::string> ar("ar",
cl::desc("Archiver"),
cl::Hidden,
cl::ZeroOrMore);
static cl::opt<std::string> mslink("ms-link",
cl::desc("LINK to use for linking on Windows"),
cl::Hidden,
cl::ZeroOrMore);
static cl::opt<std::string> mslib("ms-lib",
cl::desc("Library Manager to use on Windows"),
cl::Hidden,
cl::ZeroOrMore);
sys::Path getProgram(const char *name, const cl::opt<std::string> &opt, const char *envVar = 0)
{
sys::Path path;
const char *prog = NULL;
if (opt.getNumOccurrences() > 0 && opt.length() > 0 && (prog = opt.c_str()))
path = sys::Program::FindProgramByName(prog);
if (path.empty() && envVar && (prog = getenv(envVar)))
path = sys::Program::FindProgramByName(prog);
if (path.empty())
path = sys::Program::FindProgramByName(name);
if (path.empty()) {
error("failed to locate %s", name);
fatal();
}
return path;
}
sys::Path getGcc()
{
return getProgram("gcc", gcc, "CC");
}
sys::Path getArchiver()
{
return getProgram("ar", ar);
}
sys::Path getLink()
{
return getProgram("link.exe", mslink);
}
sys::Path getLib()
{
return getProgram("lib.exe", mslib);
}