mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 01:20:51 +03:00
46 lines
1,008 B
C++
46 lines
1,008 B
C++
#ifndef LDC_GEN_LINKER_H
|
|
#define LDC_GEN_LINKER_H
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
#include <vector>
|
|
|
|
extern llvm::cl::opt<bool> quiet;
|
|
|
|
namespace llvm
|
|
{
|
|
class Module;
|
|
}
|
|
|
|
/**
|
|
* Links the modules given in MV in to dst.
|
|
* @param dst Destination module.
|
|
* @param MV Vector of modules to link in to destination.
|
|
*/
|
|
void linkModules(llvm::Module* dst, const std::vector<llvm::Module*>& MV);
|
|
|
|
/**
|
|
* Link an executable.
|
|
* @param argv0 the argv[0] value as passed to main
|
|
* @return 0 on success.
|
|
*/
|
|
int linkExecutable(const char* argv0);
|
|
|
|
/**
|
|
* Link an executable only from object files.
|
|
* @param argv0 the argv[0] value as passed to main
|
|
* @return 0 on success.
|
|
*/
|
|
int linkObjToExecutable(const char* argv0);
|
|
|
|
/**
|
|
* Delete the executable that was previously linked with linkExecutable.
|
|
*/
|
|
void deleteExecutable();
|
|
|
|
/**
|
|
* Runs the executable that was previously linked with linkExecutable.
|
|
* @return the return status of the executable.
|
|
*/
|
|
int runExecutable();
|
|
|
|
#endif // LDC_GEN_LINKER_H
|