ldc/driver/tool.h
2013-02-13 00:07:48 +01:00

24 lines
777 B
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.

//===-- driver/tool.h - External tool invocation helpers ---------*- C++ -*-===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// Functionaliy for invoking external tools executables, such as the system
// assembler, linker, ...
//
//===----------------------------------------------------------------------===//
#ifndef LDC_DRIVER_TOOL_H
#define LDC_DRIVER_TOOL_H
#include "llvm/Support/PathV1.h"
#include <vector>
#include <string>
int executeToolAndWait(llvm::sys::Path tool, std::vector<std::string> const & args, bool verbose = false);
#endif