llvm/lld/COFF/Config.h

//===- Config.h -------------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLD_COFF_CONFIG_H
#define LLD_COFF_CONFIG_H

#include "llvm/ADT/MapVector.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Object/COFF.h"
#include "llvm/Support/CachePruning.h"
#include "llvm/Support/VirtualFileSystem.h"
#include <cstdint>
#include <map>
#include <set>
#include <string>

namespace lld::coff {

IMAGE_FILE_MACHINE_UNKNOWN;
WindowsSubsystem;
StringRef;
class DefinedAbsolute;
class StringChunk;
class Symbol;
class InputFile;
class SectionChunk;

// Short aliases.
static const auto AMD64 =;
static const auto ARM64 =;
static const auto ARM64EC =;
static const auto ARM64X =;
static const auto ARMNT =;
static const auto I386 =;

enum class ExportSource {};

enum class EmitKind {};

// Represents an /export option.
struct Export {};

enum class DebugType {};

enum GuardCFLevel {};

enum class ICFLevel {};

enum class BuildIDHash {};

// Global configuration.
struct Configuration {};

} // namespace lld::coff

#endif