mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 09:00:33 +03:00
26 lines
723 B
C++
26 lines
723 B
C++
//===-- gen/programs.h - External tool discovery ----------------*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// Functions for discovering the external tools used for linking, etc.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef LDC_GEN_PROGRAMS_H
|
||
#define LDC_GEN_PROGRAMS_H
|
||
|
||
#include "llvm/Support/Path.h"
|
||
|
||
llvm::sys::Path getGcc();
|
||
llvm::sys::Path getArchiver();
|
||
|
||
// For Windows with MS tool chain
|
||
llvm::sys::Path getLink();
|
||
llvm::sys::Path getLib();
|
||
|
||
#endif
|