clang
20.0.0git
include
clang
Lex
PreprocessorOptions.h
Go to the documentation of this file.
1
//===- PreprocessorOptions.h ------------------------------------*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#ifndef LLVM_CLANG_LEX_PREPROCESSOROPTIONS_H_
10
#define LLVM_CLANG_LEX_PREPROCESSOROPTIONS_H_
11
12
#include "
clang/Basic/BitmaskEnum.h
"
13
#include "
clang/Basic/FileEntry.h
"
14
#include "
clang/Basic/LLVM.h
"
15
#include "
clang/Lex/DependencyDirectivesScanner.h
"
16
#include "llvm/ADT/StringRef.h"
17
#include "llvm/ADT/StringSet.h"
18
#include <functional>
19
#include <map>
20
#include <memory>
21
#include <optional>
22
#include <set>
23
#include <string>
24
#include <utility>
25
#include <vector>
26
27
namespace
llvm
{
28
29
class
MemoryBuffer;
30
31
}
// namespace llvm
32
33
namespace
clang
{
34
35
/// Enumerate the kinds of standard library that
36
enum
ObjCXXARCStandardLibraryKind
{
37
ARCXX_nolib
,
38
39
/// libc++
40
ARCXX_libcxx
,
41
42
/// libstdc++
43
ARCXX_libstdcxx
44
};
45
46
/// Whether to disable the normal validation performed on precompiled
47
/// headers and module files when they are loaded.
48
enum class
DisableValidationForModuleKind
{
49
/// Perform validation, don't disable it.