1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
//===-- driver/linker.h - Linker invocation ---------------------*- C++ -*-===//
//
// LDC – the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// Handles locating and executing the system linker for generating
// libraries/executables.
//
//===----------------------------------------------------------------------===//
#pragma once
#include "llvm/Support/CommandLine.h" // for llvm::cl::boolOrDefault
namespace llvm {
class Module;
class LLVMContext;
}
template <typename TYPE> struct Array;
/**
* Indicates whether -link-internally is enabled.
*/
bool useInternalLLDForLinking();
/**
* Indicates the status of the -static command-line option.
*/
llvm::cl::boolOrDefault linkFullyStatic();
/**
* Indicates whether the command-line options select shared druntime/Phobos for
* linking.
*/
bool linkAgainstSharedDefaultLibs();
/**
* Returns the -platformlib library names, if specified.
*/
llvm::Optional<std::vector<std::string>> getExplicitPlatformLibs();
/**
* Returns the value of -mscrtlib.
*/
llvm::StringRef getExplicitMscrtLibName();
/**
* Returns the name of the MS C runtime library to link with.
*/
llvm::StringRef getMscrtLibName(const bool *useInternalToolchain = nullptr);
/**
* Inserts bitcode files passed on the commandline into a module.
*/
void insertBitcodeFiles(llvm::Module &M, llvm::LLVMContext &Ctx,
Array<const char *> &bitcodeFiles);
/**
* Link an executable only from object files.
* @return 0 on success.
*/
int linkObjToBinary();
/**
* Returns the path to the binary previously linked with linkObjToBinary.
*/
const char *getPathToProducedBinary();
/**
* Delete the executable that was previously linked with linkObjToBinary.
*/
void deleteExeFile();
/**
* Runs the executable that was previously linked with linkObjToBinary.
* @return the return status of the executable.
*/
int runProgram();
|