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