2004-06-18 23:38:49 +08:00
|
|
|
//===- SystemUtils.cpp - Utilities for low-level system tasks -------------===//
|
2005-04-22 06:55:34 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 06:55:34 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-24 07:50:16 +08:00
|
|
|
//
|
|
|
|
// This file contains functions used to do a variety of low-level, often
|
|
|
|
// system-specific, tasks.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-02 06:55:40 +08:00
|
|
|
#include "llvm/Support/SystemUtils.h"
|
2005-01-02 07:56:20 +08:00
|
|
|
#include "llvm/System/Process.h"
|
2005-04-23 03:13:22 +08:00
|
|
|
#include "llvm/System/Program.h"
|
2009-08-24 06:45:37 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2003-12-15 05:35:53 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2009-08-24 05:36:09 +08:00
|
|
|
bool llvm::CheckBitcodeOutputToConsole(raw_ostream &stream_to_check,
|
2009-07-16 01:04:50 +08:00
|
|
|
bool print_warning) {
|
2009-09-12 04:46:33 +08:00
|
|
|
if (stream_to_check.is_displayed()) {
|
2009-07-16 01:04:50 +08:00
|
|
|
if (print_warning) {
|
2009-08-24 05:36:09 +08:00
|
|
|
errs() << "WARNING: You're attempting to print out a bitcode file.\n"
|
|
|
|
<< "This is inadvisable as it may cause display problems. If\n"
|
|
|
|
<< "you REALLY want to taste LLVM bitcode first-hand, you\n"
|
|
|
|
<< "can force output with the `-f' option.\n\n";
|
2005-01-02 08:10:03 +08:00
|
|
|
}
|
2005-01-02 07:56:20 +08:00
|
|
|
return true;
|
|
|
|
}
|
2004-04-03 05:26:04 +08:00
|
|
|
return false;
|
2004-04-02 13:04:03 +08:00
|
|
|
}
|
|
|
|
|
2003-08-08 05:34:25 +08:00
|
|
|
/// FindExecutable - Find a named executable, giving the argv[0] of program
|
2009-08-06 04:21:17 +08:00
|
|
|
/// being executed. This allows us to find another LLVM tool if it is built in
|
|
|
|
/// the same directory. If the executable cannot be found, return an
|
|
|
|
/// empty string.
|
|
|
|
/// @brief Find a named executable.
|
2004-05-28 09:20:58 +08:00
|
|
|
#undef FindExecutable // needed on windows :(
|
2004-12-14 07:41:37 +08:00
|
|
|
sys::Path llvm::FindExecutable(const std::string &ExeName,
|
2009-08-06 04:21:17 +08:00
|
|
|
const char *Argv0, void *MainAddr) {
|
|
|
|
// Check the directory that the calling program is in. We can do
|
2009-07-01 23:26:13 +08:00
|
|
|
// this if ProgramPath contains at least one / character, indicating that it
|
2009-07-13 04:23:56 +08:00
|
|
|
// is a relative path to the executable itself.
|
2009-08-06 04:21:17 +08:00
|
|
|
sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr);
|
2005-07-08 07:21:43 +08:00
|
|
|
Result.eraseComponent();
|
2004-12-14 07:41:37 +08:00
|
|
|
if (!Result.isEmpty()) {
|
2005-07-08 07:21:43 +08:00
|
|
|
Result.appendComponent(ExeName);
|
2005-07-08 02:21:42 +08:00
|
|
|
if (Result.canExecute())
|
2004-12-20 02:00:09 +08:00
|
|
|
return Result;
|
2002-12-24 07:50:16 +08:00
|
|
|
}
|
|
|
|
|
2009-08-06 04:21:17 +08:00
|
|
|
return sys::Path();
|
2002-12-24 07:50:16 +08:00
|
|
|
}
|