OSDN Git Service

20bae49a09c0b015265fb45fb15de9e4bd2d1149
[android-x86/external-llvm.git] / host / include / llvm / Config / llvm-config.h
1 /* include/llvm/Config/llvm-config.h.  Generated from llvm-config.h.in by configure.  */
2 /*===-- llvm/config/llvm-config.h - llvm configure variable -------*- 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 all of the llvm variables from configure so that
12    they can be in exported headers and won't override package specific
13    directives.  This is a C file so we can include it in the llvm-c headers.  */
14
15 /* To avoid multiple inclusions of these variables when we include the exported
16    headers and config.h, conditionally include these.  */
17 /* TODO: This is a bit of a hack.  */
18 #ifndef CONFIG_H
19
20 /* Installation directory for binary executables */
21 #define LLVM_BINDIR "/opt/llvm-android/bin"
22
23 /* Time at which LLVM was configured */
24 #define LLVM_CONFIGTIME "Tue May  8 14:22:45 CST 2012"
25
26 /* Installation directory for data files */
27 #define LLVM_DATADIR "/opt/llvm-android/share/llvm"
28
29 /* Target triple LLVM will generate code for by default */
30 #if defined(__APPLE__)
31 #define LLVM_DEFAULT_TARGET_TRIPLE "x86_64-apple-darwin"
32 #else
33 #define LLVM_DEFAULT_TARGET_TRIPLE "x86_64-unknown-linux"
34 #endif
35
36 /* Installation directory for documentation */
37 #define LLVM_DOCSDIR "/opt/llvm-android/share/doc/llvm"
38
39 /* Define if threads enabled */
40 #if !defined(_WIN32) && !defined(_WIN64)
41 #define LLVM_ENABLE_THREADS 1
42 #else
43 #define LLVM_ENABLE_THREADS 0
44 #endif
45
46 /* Installation directory for config files */
47 #define LLVM_ETCDIR "/opt/llvm-android/etc/llvm"
48
49 #if !defined(_WIN32) && !defined(_WIN64)
50
51 /* Has gcc/MSVC atomic intrinsics */
52 #define LLVM_HAS_ATOMICS 1
53
54 #else
55
56 #define LLVM_HAS_ATOMICS 0
57
58 #endif /* !defined(_WIN32) && !defined(_WIN64) */
59
60 /* Installation directory for include files */
61 #define LLVM_INCLUDEDIR "/opt/llvm-android/include"
62
63 /* Installation directory for .info files */
64 #define LLVM_INFODIR "/opt/llvm-android/info"
65
66 /* Installation directory for libraries */
67 #define LLVM_LIBDIR "/opt/llvm-android/lib"
68
69 /* Installation directory for man pages */
70 #define LLVM_MANDIR "/opt/llvm-android/man"
71
72 /* Define to path to circo program if found or 'echo circo' otherwise */
73 /* #undef LLVM_PATH_CIRCO */
74
75 /* Define to path to dot program if found or 'echo dot' otherwise */
76 /* #undef LLVM_PATH_DOT */
77
78 /* Define to path to dotty program if found or 'echo dotty' otherwise */
79 /* #undef LLVM_PATH_DOTTY */
80
81 /* Define to path to fdp program if found or 'echo fdp' otherwise */
82 /* #undef LLVM_PATH_FDP */
83
84 /* Define to path to Graphviz program if found or 'echo Graphviz' otherwise */
85 /* #undef LLVM_PATH_GRAPHVIZ */
86
87 /* Define to path to gv program if found or 'echo gv' otherwise */
88 /* #undef LLVM_PATH_GV */
89
90 /* Define to path to neato program if found or 'echo neato' otherwise */
91 /* #undef LLVM_PATH_NEATO */
92
93 /* Define to path to twopi program if found or 'echo twopi' otherwise */
94 /* #undef LLVM_PATH_TWOPI */
95
96 /* Define to path to xdot.py program if found or 'echo xdot.py' otherwise */
97 /* #undef LLVM_PATH_XDOT_PY */
98
99 /* Installation prefix directory */
100 #define LLVM_PREFIX "/opt/llvm-android"
101
102 /* Major version of the LLVM API */
103 #define LLVM_VERSION_MAJOR 3
104
105 /* Minor version of the LLVM API */
106 #define LLVM_VERSION_MINOR 8
107
108 /* Patch version of the LLVM API */
109 #define LLVM_VERSION_PATCH 275480
110
111 /* LLVM version string */
112 #define LLVM_VERSION_STRING "3.8.275480"
113
114 #include "llvm/Config/llvm-platform-config.h"
115
116 #endif