hanchenye-llvm-project/lld/ELF/Config.h

42 lines
978 B
C
Raw Normal View History

//===- Config.h -------------------------------------------------*- C++ -*-===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_ELF_CONFIG_H
#define LLD_ELF_CONFIG_H
#include "llvm/ADT/StringRef.h"
#include <vector>
namespace lld {
namespace elf2 {
struct Configuration {
llvm::StringRef OutputFile = "a.out";
llvm::StringRef DynamicLinker;
2015-09-12 05:18:56 +08:00
std::string RPath;
std::vector<llvm::StringRef> InputSearchPaths;
llvm::StringRef Sysroot;
bool Shared = false;
bool DiscardAll = false;
bool DiscardLocals = false;
bool DiscardNone = false;
bool ExportDynamic = false;
bool NoInhibitExec = false;
bool AllowMultipleDefinition = false;
llvm::StringRef Entry;
};
extern Configuration *Config;
} // namespace elf2
} // namespace lld
#endif