config.h.cmake revision ba30d60ebb71ce403ebd29dab1d5afa5241b1bcf
16d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* include/llvm/Config/config.h.cmake corresponding to config.h.in. */
26d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
36d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#ifndef CONFIG_H
46d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#define CONFIG_H
5116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
6116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch/* Bug report URL. */
76d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#define BUG_REPORT_URL "${BUG_REPORT_URL}"
86d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
96d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define if we have libxml2 */
106d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine CLANG_HAVE_LIBXML ${CLANG_HAVE_LIBXML}
116d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
126d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Relative directory for resource files */
136d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#define CLANG_RESOURCE_DIR "${CLANG_RESOURCE_DIR}"
146d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
156d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Directories clang will search for headers */
166d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#define C_INCLUDE_DIRS "${C_INCLUDE_DIRS}"
176d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
186d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Default <path> to all compiler invocations for --sysroot=<path>. */
196d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#undef DEFAULT_SYSROOT
206d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
216d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define if you want backtraces on crash */
226d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine ENABLE_BACKTRACES
236d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
241320f92c476a1ad9d19dba2a48c72b75566198e9Primiano Tucci/* Define if position independent code is enabled */
256d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine ENABLE_PIC
266d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
276d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define if timestamp information (e.g., __DATE__) is allowed */
286d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine ENABLE_TIMESTAMPS ${ENABLE_TIMESTAMPS}
296d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
306d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Directory where gcc is installed. */
316d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#undef GCC_INSTALL_PREFIX
326d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
336d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `arc4random' function. */
346d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_ARC4RANDOM
356d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
366d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `argz_append' function. */
376d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_ARGZ_APPEND ${HAVE_ARGZ_APPEND}
386d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
396d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `argz_create_sep' function. */
406d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_ARGZ_CREATE_SEP ${HAVE_ARGZ_CREATE_SEP}
416d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
426d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the <argz.h> header file. */
436d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_ARGZ_H ${HAVE_ARGZ_H}
446d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
456d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `argz_insert' function. */
466d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_ARGZ_INSERT ${HAVE_ARGZ_INSERT}
476d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
486d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `argz_next' function. */
496d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_ARGZ_NEXT ${HAVE_ARGZ_NEXT}
501320f92c476a1ad9d19dba2a48c72b75566198e9Primiano Tucci
516d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `argz_stringify' function. */
526d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_ARGZ_STRINGIFY ${HAVE_ARGZ_STRINGIFY}
536d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
546d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the <assert.h> header file. */
556d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_ASSERT_H ${HAVE_ASSERT_H}
566d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
576d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `backtrace' function. */
586d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_BACKTRACE ${HAVE_BACKTRACE}
596d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
606d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `bcopy' function. */
616d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#undef HAVE_BCOPY
626d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
636d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `ceilf' function. */
646d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_CEILF ${HAVE_CEILF}
656d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
666d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define if the neat program is available */
676d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#cmakedefine HAVE_CIRCO ${HAVE_CIRCO}
686d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
696d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the `closedir' function. */
701320f92c476a1ad9d19dba2a48c72b75566198e9Primiano Tucci#cmakedefine HAVE_CLOSEDIR ${HAVE_CLOSEDIR}
711320f92c476a1ad9d19dba2a48c72b75566198e9Primiano Tucci
726d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the <cxxabi.h> header file. */
731320f92c476a1ad9d19dba2a48c72b75566198e9Primiano Tucci#cmakedefine HAVE_CXXABI_H ${HAVE_CXXABI_H}
746d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
756d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)/* Define to 1 if you have the <CrashReporterClient.h> header file. */
766d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)#undef HAVE_CRASHREPORTERCLIENT_H
776d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
78116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch/* can use __crashreporter_info__ */
79#undef HAVE_CRASHREPORTER_INFO
80
81/* Define to 1 if you have the <ctype.h> header file. */
82#cmakedefine HAVE_CTYPE_H ${HAVE_CTYPE_H}
83
84/* Define to 1 if you have the declaration of `strerror_s', and to 0 if you
85   don't. */
86#cmakedefine01 HAVE_DECL_STRERROR_S
87
88/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
89   */
90#cmakedefine HAVE_DIRENT_H ${HAVE_DIRENT_H}
91
92/* Define if you have the GNU dld library. */
93#undef HAVE_DLD
94
95/* Define to 1 if you have the <dld.h> header file. */
96#cmakedefine HAVE_DLD_H ${HAVE_DLD_H}
97
98/* Define to 1 if you have the `dlerror' function. */
99#cmakedefine HAVE_DLERROR ${HAVE_DLERROR}
100
101/* Define to 1 if you have the <dlfcn.h> header file. */
102#cmakedefine HAVE_DLFCN_H ${HAVE_DLFCN_H}
103
104/* Define if dlopen() is available on this platform. */
105#cmakedefine HAVE_DLOPEN ${HAVE_DLOPEN}
106
107/* Define to 1 if you have the <dl.h> header file. */
108#cmakedefine HAVE_DL_H ${HAVE_DL_H}
109
110/* Define if the dot program is available */
111#cmakedefine HAVE_DOT ${HAVE_DOT}
112
113/* Define if the dotty program is available */
114#cmakedefine HAVE_DOTTY ${HAVE_DOTTY}
115
116/* Define if you have the _dyld_func_lookup function. */
117#undef HAVE_DYLD
118
119/* Define to 1 if you have the <errno.h> header file. */
120#cmakedefine HAVE_ERRNO_H ${HAVE_ERRNO_H}
121
122/* Define to 1 if the system has the type `error_t'. */
123#cmakedefine HAVE_ERROR_T ${HAVE_ERROR_T}
124
125/* Define to 1 if you have the <execinfo.h> header file. */
126#cmakedefine HAVE_EXECINFO_H ${HAVE_EXECINFO_H}
127
128/* Define to 1 if you have the <fcntl.h> header file. */
129#cmakedefine HAVE_FCNTL_H ${HAVE_FCNTL_H}
130
131/* Define if the neat program is available */
132#cmakedefine HAVE_FDP ${HAVE_FDP}
133
134/* Define to 1 if you have the <fenv.h> header file. */
135#cmakedefine HAVE_FENV_H ${HAVE_FENV_H}
136
137/* Define if libffi is available on this platform. */
138#cmakedefine HAVE_FFI_CALL ${HAVE_FFI_CALL}
139
140/* Define to 1 if you have the <ffi/ffi.h> header file. */
141#cmakedefine HAVE_FFI_FFI_H ${HAVE_FFI_FFI_H}
142
143/* Define to 1 if you have the <ffi.h> header file. */
144#cmakedefine HAVE_FFI_H ${HAVE_FFI_H}
145
146/* Set to 1 if the finite function is found in <ieeefp.h> */
147#cmakedefine HAVE_FINITE_IN_IEEEFP_H ${HAVE_FINITE_IN_IEEEFP_H}
148
149/* Define to 1 if you have the `floorf' function. */
150#cmakedefine HAVE_FLOORF ${HAVE_FLOORF}
151
152/* Define to 1 if you have the `log' function. */
153#cmakedefine HAVE_LOG ${HAVE_LOG}
154
155/* Define to 1 if you have the `log2' function. */
156#cmakedefine HAVE_LOG2 ${HAVE_LOG2}
157
158/* Define to 1 if you have the `log10' function. */
159#cmakedefine HAVE_LOG10 ${HAVE_LOG10}
160
161/* Define to 1 if you have the `exp' function. */
162#cmakedefine HAVE_EXP ${HAVE_LOG}
163
164/* Define to 1 if you have the `exp2' function. */
165#cmakedefine HAVE_EXP2 ${HAVE_LOG2}
166
167/* Define to 1 if you have the `exp10' function. */
168#cmakedefine HAVE_EXP10 ${HAVE_LOG10}
169
170/* Define to 1 if you have the `fmodf' function. */
171#cmakedefine HAVE_FMODF ${HAVE_FMODF}
172
173/* Define to 1 if you have the `getcwd' function. */
174#cmakedefine HAVE_GETCWD ${HAVE_GETCWD}
175
176/* Define to 1 if you have the `getpagesize' function. */
177#cmakedefine HAVE_GETPAGESIZE ${HAVE_GETPAGESIZE}
178
179/* Define to 1 if you have the `getrlimit' function. */
180#cmakedefine HAVE_GETRLIMIT ${HAVE_GETRLIMIT}
181
182/* Define to 1 if you have the `getrusage' function. */
183#cmakedefine HAVE_GETRUSAGE ${HAVE_GETRUSAGE}
184
185/* Define to 1 if you have the `gettimeofday' function. */
186#cmakedefine HAVE_GETTIMEOFDAY ${HAVE_GETTIMEOFDAY}
187
188/* Define if the Graphviz program is available */
189#cmakedefine HAVE_GRAPHVIZ ${HAVE_GRAPHVIZ}
190
191/* Define if the gv program is available */
192#cmakedefine HAVE_GV ${HAVE_GV}
193
194/* Define to 1 if you have the `index' function. */
195#cmakedefine HAVE_INDEX ${HAVE_INDEX}
196
197/* Define to 1 if the system has the type `int64_t'. */
198#cmakedefine HAVE_INT64_T ${HAVE_INT64_T}
199
200/* Define to 1 if you have the <inttypes.h> header file. */
201#cmakedefine HAVE_INTTYPES_H ${HAVE_INTTYPES_H}
202
203/* Define to 1 if you have the `isatty' function. */
204#cmakedefine HAVE_ISATTY 1
205
206/* Set to 1 if the isinf function is found in <cmath> */
207#cmakedefine HAVE_ISINF_IN_CMATH ${HAVE_ISINF_IN_CMATH}
208
209/* Set to 1 if the isinf function is found in <math.h> */
210#cmakedefine HAVE_ISINF_IN_MATH_H ${HAVE_ISINF_IN_MATH_H}
211
212/* Set to 1 if the isnan function is found in <cmath> */
213#cmakedefine HAVE_ISNAN_IN_CMATH ${HAVE_ISNAN_IN_CMATH}
214
215/* Set to 1 if the isnan function is found in <math.h> */
216#cmakedefine HAVE_ISNAN_IN_MATH_H ${HAVE_ISNAN_IN_MATH_H}
217
218/* Define if you have the libdl library or equivalent. */
219#cmakedefine HAVE_LIBDL ${HAVE_LIBDL}
220
221/* Define to 1 if you have the `imagehlp' library (-limagehlp). */
222#cmakedefine HAVE_LIBIMAGEHLP ${HAVE_LIBIMAGEHLP}
223
224/* Define to 1 if you have the `m' library (-lm). */
225#undef HAVE_LIBM
226
227/* Define to 1 if you have the `psapi' library (-lpsapi). */
228#cmakedefine HAVE_LIBPSAPI ${HAVE_LIBPSAPI}
229
230/* Define to 1 if you have the `pthread' library (-lpthread). */
231#cmakedefine HAVE_LIBPTHREAD ${HAVE_LIBPTHREAD}
232
233/* Define to 1 if you have the `udis86' library (-ludis86). */
234#undef HAVE_LIBUDIS86
235
236/* Define to 1 if you have the 'z' library (-lz). */
237#cmakedefine HAVE_LIBZ ${HAVE_LIBZ}
238
239/* Define to 1 if you have the <limits.h> header file. */
240#cmakedefine HAVE_LIMITS_H ${HAVE_LIMITS_H}
241
242/* Define if you can use -Wl,-export-dynamic. */
243#define HAVE_LINK_EXPORT_DYNAMIC 1
244
245/* Define to 1 if you have the <link.h> header file. */
246#cmakedefine HAVE_LINK_H ${HAVE_LINK_H}
247
248/* Define if you can use -Wl,-R. to pass -R. to the linker, in order to add
249   the current directory to the dynamic linker search path. */
250#undef HAVE_LINK_R
251
252/* Define to 1 if you have the `longjmp' function. */
253#cmakedefine HAVE_LONGJMP ${HAVE_LONGJMP}
254
255/* Define to 1 if you have the <mach/mach.h> header file. */
256#cmakedefine HAVE_MACH_MACH_H ${HAVE_MACH_MACH_H}
257
258/* Define to 1 if you have the <mach-o/dyld.h> header file. */
259#cmakedefine HAVE_MACH_O_DYLD_H ${HAVE_MACH_O_DYLD_H}
260
261/* Define if mallinfo() is available on this platform. */
262#cmakedefine HAVE_MALLINFO ${HAVE_MALLINFO}
263
264/* Define to 1 if you have the <malloc.h> header file. */
265#cmakedefine HAVE_MALLOC_H ${HAVE_MALLOC_H}
266
267/* Define to 1 if you have the <malloc/malloc.h> header file. */
268#cmakedefine HAVE_MALLOC_MALLOC_H ${HAVE_MALLOC_MALLOC_H}
269
270/* Define to 1 if you have the `malloc_zone_statistics' function. */
271#cmakedefine HAVE_MALLOC_ZONE_STATISTICS ${HAVE_MALLOC_ZONE_STATISTICS}
272
273/* Define to 1 if you have the `memcpy' function. */
274#cmakedefine HAVE_MEMCPY ${HAVE_MEMCPY}
275
276/* Define to 1 if you have the `memmove' function. */
277#cmakedefine HAVE_MEMMOVE ${HAVE_MEMMOVE}
278
279/* Define to 1 if you have the <memory.h> header file. */
280#cmakedefine HAVE_MEMORY_H ${HAVE_MEMORY_H}
281
282/* Define to 1 if you have the `mkdtemp' function. */
283#cmakedefine HAVE_MKDTEMP ${HAVE_MKDTEMP}
284
285/* Define to 1 if you have the `mkstemp' function. */
286#cmakedefine HAVE_MKSTEMP ${HAVE_MKSTEMP}
287
288/* Define to 1 if you have the `mktemp' function. */
289#cmakedefine HAVE_MKTEMP ${HAVE_MKTEMP}
290
291/* Define to 1 if you have a working `mmap' system call. */
292#undef HAVE_MMAP
293
294/* Define if mmap() uses MAP_ANONYMOUS to map anonymous pages, or undefine if
295   it uses MAP_ANON */
296#undef HAVE_MMAP_ANONYMOUS
297
298/* Define if mmap() can map files into memory */
299#undef HAVE_MMAP_FILE
300
301/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
302#cmakedefine HAVE_NDIR_H ${HAVE_NDIR_H}
303
304/* Define to 1 if you have the `nearbyintf' function. */
305#cmakedefine HAVE_NEARBYINTF ${HAVE_NEARBYINTF}
306
307/* Define if the neat program is available */
308#cmakedefine HAVE_NEATO ${HAVE_NEATO}
309
310/* Define to 1 if you have the `opendir' function. */
311#cmakedefine HAVE_OPENDIR ${HAVE_OPENDIR}
312
313/* Define to 1 if you have the `posix_spawn' function. */
314#cmakedefine HAVE_POSIX_SPAWN ${HAVE_POSIX_SPAWN}
315
316/* Define to 1 if you have the `powf' function. */
317#cmakedefine HAVE_POWF ${HAVE_POWF}
318
319/* Define to 1 if you have the `pread' function. */
320#cmakedefine HAVE_PREAD ${HAVE_PREAD}
321
322/* Define if libtool can extract symbol lists from object files. */
323#undef HAVE_PRELOADED_SYMBOLS
324
325/* Define to have the %a format string */
326#undef HAVE_PRINTF_A
327
328/* Have pthread_getspecific */
329#cmakedefine HAVE_PTHREAD_GETSPECIFIC ${HAVE_PTHREAD_GETSPECIFIC}
330
331/* Define to 1 if you have the <pthread.h> header file. */
332#cmakedefine HAVE_PTHREAD_H ${HAVE_PTHREAD_H}
333
334/* Have pthread_mutex_lock */
335#cmakedefine HAVE_PTHREAD_MUTEX_LOCK ${HAVE_PTHREAD_MUTEX_LOCK}
336
337/* Have pthread_rwlock_init */
338#cmakedefine HAVE_PTHREAD_RWLOCK_INIT ${HAVE_PTHREAD_RWLOCK_INIT}
339
340/* Define to 1 if srand48/lrand48/drand48 exist in <stdlib.h> */
341#cmakedefine HAVE_RAND48 ${HAVE_RAND48}
342
343/* Define to 1 if you have the `readdir' function. */
344#cmakedefine HAVE_READDIR ${HAVE_READDIR}
345
346/* Define to 1 if you have the `realpath' function. */
347#undef HAVE_REALPATH
348
349/* Define to 1 if you have the `rindex' function. */
350#cmakedefine HAVE_RINDEX ${HAVE_RINDEX}
351
352/* Define to 1 if you have the `rintf' function. */
353#undef HAVE_RINTF
354
355/* Define to 1 if you have the `round' function. */
356#cmakedefine HAVE_ROUND ${HAVE_ROUND}
357
358/* Define to 1 if you have the `roundf' function. */
359#undef HAVE_ROUNDF
360
361/* Define to 1 if you have the `sbrk' function. */
362#cmakedefine HAVE_SBRK ${HAVE_SBRK}
363
364/* Define to 1 if you have the `setenv' function. */
365#cmakedefine HAVE_SETENV ${HAVE_SETENV}
366
367/* Define to 1 if you have the `setjmp' function. */
368#cmakedefine HAVE_SETJMP ${HAVE_SETJMP}
369
370/* Define to 1 if you have the <setjmp.h> header file. */
371#cmakedefine HAVE_SETJMP_H ${HAVE_SETJMP_H}
372
373/* Define to 1 if you have the `setrlimit' function. */
374#cmakedefine HAVE_SETRLIMIT ${HAVE_SETRLIMIT}
375
376/* Define if you have the shl_load function. */
377#undef HAVE_SHL_LOAD
378
379/* Define to 1 if you have the `siglongjmp' function. */
380#cmakedefine HAVE_SIGLONGJMP ${HAVE_SIGLONGJMP}
381
382/* Define to 1 if you have the <signal.h> header file. */
383#cmakedefine HAVE_SIGNAL_H ${HAVE_SIGNAL_H}
384
385/* Define to 1 if you have the `sigsetjmp' function. */
386#cmakedefine HAVE_SIGSETJMP ${HAVE_SIGSETJMP}
387
388/* Define to 1 if you have the <stdint.h> header file. */
389#cmakedefine HAVE_STDINT_H ${HAVE_STDINT_H}
390
391/* Define to 1 if you have the <stdio.h> header file. */
392#cmakedefine HAVE_STDIO_H ${HAVE_STDIO_H}
393
394/* Define to 1 if you have the <stdlib.h> header file. */
395#cmakedefine HAVE_STDLIB_H ${HAVE_STDLIB_H}
396
397/* Set to 1 if the std::isinf function is found in <cmath> */
398#undef HAVE_STD_ISINF_IN_CMATH
399
400/* Set to 1 if the std::isnan function is found in <cmath> */
401#undef HAVE_STD_ISNAN_IN_CMATH
402
403/* Define to 1 if you have the `strchr' function. */
404#cmakedefine HAVE_STRCHR ${HAVE_STRCHR}
405
406/* Define to 1 if you have the `strcmp' function. */
407#cmakedefine HAVE_STRCMP ${HAVE_STRCMP}
408
409/* Define to 1 if you have the `strdup' function. */
410#cmakedefine HAVE_STRDUP ${HAVE_STRDUP}
411
412/* Define to 1 if you have the `strerror' function. */
413#cmakedefine HAVE_STRERROR ${HAVE_STRERROR}
414
415/* Define to 1 if you have the `strerror_r' function. */
416#cmakedefine HAVE_STRERROR_R ${HAVE_STRERROR_R}
417
418/* Define to 1 if you have the <strings.h> header file. */
419#cmakedefine HAVE_STRINGS_H ${HAVE_STRINGS_H}
420
421/* Define to 1 if you have the <string.h> header file. */
422#cmakedefine HAVE_STRING_H ${HAVE_STRING_H}
423
424/* Define to 1 if you have the `strrchr' function. */
425#cmakedefine HAVE_STRRCHR ${HAVE_STRRCHR}
426
427/* Define to 1 if you have the `strtof' function. */
428#cmakedefine HAVE_STRTOF ${HAVE_STRTOF}
429
430/* Define to 1 if you have the `strtoll' function. */
431#cmakedefine HAVE_STRTOLL ${HAVE_STRTOLL}
432
433/* Define to 1 if you have the `strtoq' function. */
434#cmakedefine HAVE_STRTOQ ${HAVE_STRTOQ}
435
436/* Define to 1 if you have the `sysconf' function. */
437#undef HAVE_SYSCONF
438
439/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
440   */
441#cmakedefine HAVE_SYS_DIR_H ${HAVE_SYS_DIR_H}
442
443/* Define to 1 if you have the <sys/dl.h> header file. */
444#cmakedefine HAVE_SYS_DL_H ${HAVE_SYS_DL_H}
445
446/* Define to 1 if you have the <sys/ioctl.h> header file. */
447#cmakedefine HAVE_SYS_IOCTL_H ${HAVE_SYS_IOCTL_H}
448
449/* Define to 1 if you have the <sys/mman.h> header file. */
450#cmakedefine HAVE_SYS_MMAN_H ${}
451
452/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
453   */
454#cmakedefine HAVE_SYS_NDIR_H ${HAVE_SYS_NDIR_H}
455
456/* Define to 1 if you have the <sys/param.h> header file. */
457#cmakedefine HAVE_SYS_PARAM_H ${HAVE_SYS_PARAM_H}
458
459/* Define to 1 if you have the <sys/resource.h> header file. */
460#cmakedefine HAVE_SYS_RESOURCE_H ${HAVE_SYS_RESOURCE_H}
461
462/* Define to 1 if you have the <sys/stat.h> header file. */
463#cmakedefine HAVE_SYS_STAT_H ${HAVE_SYS_STAT_H}
464
465/* Define to 1 if you have the <sys/time.h> header file. */
466#cmakedefine HAVE_SYS_TIME_H ${HAVE_SYS_TIME_H}
467
468/* Define to 1 if you have the <sys/types.h> header file. */
469#cmakedefine HAVE_SYS_TYPES_H ${HAVE_SYS_TYPES_H}
470
471/* Define to 1 if you have the <sys/uio.h> header file. */
472#cmakedefine HAVE_SYS_UIO_H ${HAVE_SYS_UIO_H}
473
474/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
475#cmakedefine HAVE_SYS_WAIT_H ${HAVE_SYS_WAIT_H}
476
477/* Define to 1 if you have the <termios.h> header file. */
478#cmakedefine HAVE_TERMIOS_H ${HAVE_TERMIOS_H}
479
480/* Define if the neat program is available */
481#cmakedefine HAVE_TWOPI ${HAVE_TWOPI}
482
483/* Define to 1 if the system has the type `uint64_t'. */
484#cmakedefine HAVE_UINT64_T ${HAVE_UINT64_T}
485
486/* Define to 1 if you have the <unistd.h> header file. */
487#cmakedefine HAVE_UNISTD_H ${HAVE_UNISTD_H}
488
489/* Define to 1 if you have the <utime.h> header file. */
490#cmakedefine HAVE_UTIME_H ${HAVE_UTIME_H}
491
492/* Define to 1 if the system has the type `u_int64_t'. */
493#cmakedefine HAVE_U_INT64_T ${HAVE_U_INT64_T}
494
495/* Define to 1 if you have the <valgrind/valgrind.h> header file. */
496#cmakedefine HAVE_VALGRIND_VALGRIND_H ${HAVE_VALGRIND_VALGRIND_H}
497
498/* Define to 1 if you have the <windows.h> header file. */
499#cmakedefine HAVE_WINDOWS_H ${HAVE_WINDOWS_H}
500
501/* Define to 1 if you have the `writev' function. */
502#cmakedefine HAVE_WRITEV ${HAVE_WRITEV}
503
504/* Define if the xdot.py program is available */
505#cmakedefine HAVE_XDOT_PY ${HAVE_XDOT_PY}
506
507/* Define to 1 if you have the <zlib.h> header file. */
508#cmakedefine HAVE_ZLIB_H ${HAVE_ZLIB_H}
509
510/* Have host's _alloca */
511#cmakedefine HAVE__ALLOCA ${HAVE__ALLOCA}
512
513/* Have host's __alloca */
514#cmakedefine HAVE___ALLOCA ${HAVE___ALLOCA}
515
516/* Have host's __ashldi3 */
517#cmakedefine HAVE___ASHLDI3 ${HAVE___ASHLDI3}
518
519/* Have host's __ashrdi3 */
520#cmakedefine HAVE___ASHRDI3 ${HAVE___ASHRDI3}
521
522/* Have host's __chkstk */
523#cmakedefine HAVE___CHKSTK ${HAVE___CHKSTK}
524
525/* Have host's __cmpdi2 */
526#cmakedefine HAVE___CMPDI2 ${HAVE___CMPDI2}
527
528/* Have host's __divdi3 */
529#cmakedefine HAVE___DIVDI3 ${HAVE___DIVDI3}
530
531/* Define to 1 if you have the `__dso_handle' function. */
532#undef HAVE___DSO_HANDLE
533
534/* Have host's __fixdfdi */
535#cmakedefine HAVE___FIXDFDI ${HAVE___FIXDFDI}
536
537/* Have host's __fixsfdi */
538#cmakedefine HAVE___FIXSFDI ${HAVE___FIXSFDI}
539
540/* Have host's __floatdidf */
541#cmakedefine HAVE___FLOATDIDF ${HAVE___FLOATDIDF}
542
543/* Have host's __lshrdi3 */
544#cmakedefine HAVE___LSHRDI3 ${HAVE___LSHRDI3}
545
546/* Have host's __main */
547#cmakedefine HAVE___MAIN ${HAVE___MAIN}
548
549/* Have host's __moddi3 */
550#cmakedefine HAVE___MODDI3 ${HAVE___MODDI3}
551
552/* Have host's __udivdi3 */
553#cmakedefine HAVE___UDIVDI3 ${HAVE___UDIVDI3}
554
555/* Have host's __umoddi3 */
556#cmakedefine HAVE___UMODDI3 ${HAVE___UMODDI3}
557
558/* Have host's ___chkstk */
559#cmakedefine HAVE____CHKSTK ${HAVE____CHKSTK}
560
561/* Linker version detected at compile time. */
562#undef HOST_LINK_VERSION
563
564/* Installation directory for binary executables */
565#cmakedefine LLVM_BINDIR "${LLVM_BINDIR}"
566
567/* Time at which LLVM was configured */
568#cmakedefine LLVM_CONFIGTIME "${LLVM_CONFIGTIME}"
569
570/* Installation directory for data files */
571#cmakedefine LLVM_DATADIR "${LLVM_DATADIR}"
572
573/* Target triple LLVM will generate code for by default */
574#cmakedefine LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}"
575
576/* Installation directory for documentation */
577#cmakedefine LLVM_DOCSDIR "${LLVM_DOCSDIR}"
578
579/* Define if threads enabled */
580#cmakedefine01 LLVM_ENABLE_THREADS
581
582/* Define if zlib compression is available */
583#cmakedefine01 LLVM_ENABLE_ZLIB
584
585/* Installation directory for config files */
586#cmakedefine LLVM_ETCDIR "${LLVM_ETCDIR}"
587
588/* Has gcc/MSVC atomic intrinsics */
589#cmakedefine01 LLVM_HAS_ATOMICS
590
591/* Host triple LLVM will be executed on */
592#cmakedefine LLVM_HOST_TRIPLE "${LLVM_HOST_TRIPLE}"
593
594/* Installation directory for include files */
595#cmakedefine LLVM_INCLUDEDIR "${LLVM_INCLUDEDIR}"
596
597/* Installation directory for .info files */
598#cmakedefine LLVM_INFODIR "${LLVM_INFODIR}"
599
600/* Installation directory for man pages */
601#cmakedefine LLVM_MANDIR "${LLVM_MANDIR}"
602
603/* LLVM architecture name for the native architecture, if available */
604#cmakedefine LLVM_NATIVE_ARCH ${LLVM_NATIVE_ARCH}
605
606/* LLVM name for the native AsmParser init function, if available */
607#cmakedefine LLVM_NATIVE_ASMPARSER LLVMInitialize${LLVM_NATIVE_ARCH}AsmParser
608
609/* LLVM name for the native AsmPrinter init function, if available */
610#cmakedefine LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter
611
612/* LLVM name for the native Disassembler init function, if available */
613#cmakedefine LLVM_NATIVE_DISASSEMBLER LLVMInitialize${LLVM_NATIVE_ARCH}Disassembler
614
615/* LLVM name for the native Target init function, if available */
616#cmakedefine LLVM_NATIVE_TARGET LLVMInitialize${LLVM_NATIVE_ARCH}Target
617
618/* LLVM name for the native TargetInfo init function, if available */
619#cmakedefine LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo
620
621/* LLVM name for the native target MC init function, if available */
622#cmakedefine LLVM_NATIVE_TARGETMC LLVMInitialize${LLVM_NATIVE_ARCH}TargetMC
623
624/* Define if this is Unixish platform */
625#cmakedefine LLVM_ON_UNIX ${LLVM_ON_UNIX}
626
627/* Define if this is Win32ish platform */
628#cmakedefine LLVM_ON_WIN32 ${LLVM_ON_WIN32}
629
630/* Define to path to circo program if found or 'echo circo' otherwise */
631#cmakedefine LLVM_PATH_CIRCO "${LLVM_PATH_CIRCO}"
632
633/* Define to path to dot program if found or 'echo dot' otherwise */
634#cmakedefine LLVM_PATH_DOT "${LLVM_PATH_DOT}"
635
636/* Define to path to dotty program if found or 'echo dotty' otherwise */
637#cmakedefine LLVM_PATH_DOTTY "${LLVM_PATH_DOTTY}"
638
639/* Define to path to fdp program if found or 'echo fdp' otherwise */
640#cmakedefine LLVM_PATH_FDP "${LLVM_PATH_FDP}"
641
642/* Define to path to Graphviz program if found or 'echo Graphviz' otherwise */
643#cmakedefine LLVM_PATH_GRAPHVIZ "${LLVM_PATH_GRAPHVIZ}"
644
645/* Define to path to gv program if found or 'echo gv' otherwise */
646#cmakedefine LLVM_PATH_GV "${LLVM_PATH_GV}"
647
648/* Define to path to neato program if found or 'echo neato' otherwise */
649#cmakedefine LLVM_PATH_NEATO "${LLVM_PATH_NEATO}"
650
651/* Define to path to twopi program if found or 'echo twopi' otherwise */
652#cmakedefine LLVM_PATH_TWOPI "${LLVM_PATH_TWOPI}"
653
654/* Define to path to xdot.py program if found or 'echo xdot.py' otherwise */
655#cmakedefine LLVM_PATH_XDOT_PY "${LLVM_PATH_XDOT_PY}"
656
657/* Installation prefix directory */
658#cmakedefine LLVM_PREFIX "${LLVM_PREFIX}"
659
660/* Define if we have the Intel JIT API runtime support library */
661#cmakedefine LLVM_USE_INTEL_JITEVENTS 1
662
663/* Define if we have the oprofile JIT-support library */
664#cmakedefine LLVM_USE_OPROFILE 1
665
666/* Major version of the LLVM API */
667#cmakedefine LLVM_VERSION_MAJOR ${LLVM_VERSION_MAJOR}
668
669/* Minor version of the LLVM API */
670#cmakedefine LLVM_VERSION_MINOR ${LLVM_VERSION_MINOR}
671
672/* Define if the OS needs help to load dependent libraries for dlopen(). */
673#cmakedefine LTDL_DLOPEN_DEPLIBS ${LTDL_DLOPEN_DEPLIBS}
674
675/* Define to the sub-directory in which libtool stores uninstalled libraries.
676   */
677#undef LTDL_OBJDIR
678
679/* Define to the extension used for shared libraries, say, ".so". */
680#cmakedefine LTDL_SHLIB_EXT "${LTDL_SHLIB_EXT}"
681
682/* Define to the system default library search path. */
683#cmakedefine LTDL_SYSSEARCHPATH "${LTDL_SYSSEARCHPATH}"
684
685/* Define if /dev/zero should be used when mapping RWX memory, or undefine if
686   its not necessary */
687#undef NEED_DEV_ZERO_FOR_MMAP
688
689/* Define if dlsym() requires a leading underscore in symbol names. */
690#undef NEED_USCORE
691
692/* Define to the address where bug reports for this package should be sent. */
693#cmakedefine PACKAGE_BUGREPORT "${PACKAGE_BUGREPORT}"
694
695/* Define to the full name of this package. */
696#cmakedefine PACKAGE_NAME "${PACKAGE_NAME}"
697
698/* Define to the full name and version of this package. */
699#cmakedefine PACKAGE_STRING "${PACKAGE_STRING}"
700
701/* Define to the one symbol short name of this package. */
702#undef PACKAGE_TARNAME
703
704/* Define to the version of this package. */
705#cmakedefine PACKAGE_VERSION "${PACKAGE_VERSION}"
706
707/* Define as the return type of signal handlers (`int' or `void'). */
708#cmakedefine RETSIGTYPE ${RETSIGTYPE}
709
710/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
711#undef STAT_MACROS_BROKEN
712
713/* Define to 1 if you have the ANSI C header files. */
714#undef STDC_HEADERS
715
716/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
717#undef TIME_WITH_SYS_TIME
718
719/* Define to 1 if your <sys/time.h> declares `struct tm'. */
720#undef TM_IN_SYS_TIME
721
722/* Define if use udis86 library */
723#undef USE_UDIS86
724
725/* Type of 1st arg on ELM Callback */
726#cmakedefine WIN32_ELMCB_PCSTR ${WIN32_ELMCB_PCSTR}
727
728/* Define to empty if `const' does not conform to ANSI C. */
729#undef const
730
731/* Define to a type to use for `error_t' if it is not otherwise available. */
732#cmakedefine error_t ${error_t}
733
734/* Define to `int' if <sys/types.h> does not define. */
735#undef pid_t
736
737/* Define to `unsigned int' if <sys/types.h> does not define. */
738#undef size_t
739
740/* Define to a function replacing strtoll */
741#cmakedefine strtoll ${strtoll}
742
743/* Define to a function implementing strtoull */
744#cmakedefine strtoull ${strtoull}
745
746/* Define to a function implementing stricmp */
747#cmakedefine stricmp ${stricmp}
748
749/* Define to a function implementing strdup */
750#cmakedefine strdup ${strdup}
751
752/* Define to 1 if you have the `_chsize_s' function. */
753#cmakedefine HAVE__CHSIZE_S ${HAVE__CHSIZE_S}
754
755/* Added by Kevin -- Maximum path length */
756#cmakedefine MAXPATHLEN ${MAXPATHLEN}
757
758#endif
759