llvm-project/lld/COFF/Config.h

43 lines
978 B
C
Raw Normal View History

//===- 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"
#include "llvm/Object/COFF.h"
#include <cstdint>
#include <set>
#include <string>
namespace lld {
namespace coff {
class Configuration {
public:
llvm::COFF::MachineTypes MachineType = llvm::COFF::IMAGE_FILE_MACHINE_AMD64;
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