1/*===------- llvm/Config/llvm-config.h - llvm configuration -------*- C -*-===*/
2/*                                                                            */
3/*                     The LLVM Compiler Infrastructure                       */
4/*                                                                            */
5/* This file is distributed under the University of Illinois Open Source      */
6/* License. See LICENSE.TXT for details.                                      */
7/*                                                                            */
8/*===----------------------------------------------------------------------===*/
9
10/* This file enumerates variables from the LLVM configuration so that they
11   can be in exported headers and won't override package specific directives.
12   This is a C header that can be included in the llvm-c headers. */
13
14#ifndef LLVM_CONFIG_H
15#define LLVM_CONFIG_H
16
17/* Define if we link Polly to the tools */
18#undef LINK_POLLY_INTO_TOOLS
19
20/* Target triple LLVM will generate code for by default */
21#undef LLVM_DEFAULT_TARGET_TRIPLE
22
23/* Define to enable checks that alter the LLVM C++ ABI */
24#undef LLVM_ENABLE_ABI_BREAKING_CHECKS
25
26/* Define if threads enabled */
27#undef LLVM_ENABLE_THREADS
28
29/* Has gcc/MSVC atomic intrinsics */
30#undef LLVM_HAS_ATOMICS
31
32/* Host triple LLVM will be executed on */
33#undef LLVM_HOST_TRIPLE
34
35/* LLVM architecture name for the native architecture, if available */
36#undef LLVM_NATIVE_ARCH
37
38/* LLVM name for the native AsmParser init function, if available */
39#undef LLVM_NATIVE_ASMPARSER
40
41/* LLVM name for the native AsmPrinter init function, if available */
42#undef LLVM_NATIVE_ASMPRINTER
43
44/* LLVM name for the native Disassembler init function, if available */
45#undef LLVM_NATIVE_DISASSEMBLER
46
47/* LLVM name for the native Target init function, if available */
48#undef LLVM_NATIVE_TARGET
49
50/* LLVM name for the native TargetInfo init function, if available */
51#undef LLVM_NATIVE_TARGETINFO
52
53/* LLVM name for the native target MC init function, if available */
54#undef LLVM_NATIVE_TARGETMC
55
56/* Define if this is Unixish platform */
57#undef LLVM_ON_UNIX
58
59/* Define if this is Win32ish platform */
60#undef LLVM_ON_WIN32
61
62/* Installation prefix directory */
63#undef LLVM_PREFIX
64
65/* Define if we have the Intel JIT API runtime support library */
66#undef LLVM_USE_INTEL_JITEVENTS
67
68/* Define if we have the oprofile JIT-support library */
69#undef LLVM_USE_OPROFILE
70
71/* Major version of the LLVM API */
72#undef LLVM_VERSION_MAJOR
73
74/* Minor version of the LLVM API */
75#undef LLVM_VERSION_MINOR
76
77/* Patch version of the LLVM API */
78#undef LLVM_VERSION_PATCH
79
80/* LLVM version string */
81#undef LLVM_VERSION_STRING
82
83#endif
84