2015-05-29 03:09:30 +08:00
|
|
|
//===- Config.h -----------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_COFF_CONFIG_H
|
|
|
|
#define LLD_COFF_CONFIG_H
|
|
|
|
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2015-05-30 00:06:00 +08:00
|
|
|
#include "llvm/Object/COFF.h"
|
2015-05-29 03:09:30 +08:00
|
|
|
#include <cstdint>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace coff {
|
|
|
|
|
|
|
|
class Configuration {
|
|
|
|
public:
|
2015-05-30 00:06:00 +08:00
|
|
|
llvm::COFF::MachineTypes MachineType = llvm::COFF::IMAGE_FILE_MACHINE_AMD64;
|
2015-05-29 03:09:30 +08:00
|
|
|
bool Verbose = false;
|
|
|
|
std::string EntryName = "mainCRTStartup";
|
|
|
|
uint64_t ImageBase = 0x140000000;
|
|
|
|
|
|
|
|
bool insertFile(llvm::StringRef Path) {
|
|
|
|
return VisitedFiles.insert(Path.lower()).second;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::set<std::string> VisitedFiles;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern Configuration *Config;
|
|
|
|
|
|
|
|
} // namespace coff
|
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif
|