Files
clang-p2996/lld/ELF/Config.h
Michael J. Spencer 84487f1174 [ELF2] Add a new ELF linker based on the new PE/COFF linker.
Differential Revision: http://reviews.llvm.org/D11188

llvm-svn: 243161
2015-07-24 21:03:07 +00:00

28 lines
586 B
C++

//===- Config.h -----------------------------------------------------------===//
//
// 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"
namespace lld {
namespace elf2 {
struct Configuration {
llvm::StringRef OutputFile;
};
extern Configuration *Config;
} // namespace elf2
} // namespace lld
#endif