2014-06-04 03:21:38 +00:00
|
|
|
/*===------- llvm/Config/llvm-config.h - llvm configuration -------*- C -*-===*/
|
2010-08-08 02:44:17 +00:00
|
|
|
/* */
|
|
|
|
/* The LLVM Compiler Infrastructure */
|
|
|
|
/* */
|
|
|
|
/* This file is distributed under the University of Illinois Open Source */
|
|
|
|
/* License. See LICENSE.TXT for details. */
|
|
|
|
/* */
|
|
|
|
/*===----------------------------------------------------------------------===*/
|
|
|
|
|
2014-06-04 03:21:38 +00:00
|
|
|
/* This file enumerates variables from the LLVM configuration so that they
|
|
|
|
can be in exported headers and won't override package specific directives.
|
|
|
|
This is a C header that can be included in the llvm-c headers. */
|
2010-08-08 02:44:17 +00:00
|
|
|
|
2014-06-04 03:21:38 +00:00
|
|
|
#ifndef LLVM_CONFIG_H
|
|
|
|
#define LLVM_CONFIG_H
|
2010-08-08 09:18:29 +00:00
|
|
|
|
2010-08-08 02:44:17 +00:00
|
|
|
/* Installation directory for binary executables */
|
|
|
|
#undef LLVM_BINDIR
|
|
|
|
|
|
|
|
/* Time at which LLVM was configured */
|
|
|
|
#undef LLVM_CONFIGTIME
|
|
|
|
|
|
|
|
/* Installation directory for data files */
|
|
|
|
#undef LLVM_DATADIR
|
|
|
|
|
2011-11-28 00:48:53 +00:00
|
|
|
/* Target triple LLVM will generate code for by default */
|
|
|
|
#undef LLVM_DEFAULT_TARGET_TRIPLE
|
|
|
|
|
2010-08-08 02:44:17 +00:00
|
|
|
/* Installation directory for documentation */
|
|
|
|
#undef LLVM_DOCSDIR
|
|
|
|
|
2011-11-28 00:48:58 +00:00
|
|
|
/* Define if threads enabled */
|
|
|
|
#undef LLVM_ENABLE_THREADS
|
|
|
|
|
2010-08-08 02:44:17 +00:00
|
|
|
/* Installation directory for config files */
|
|
|
|
#undef LLVM_ETCDIR
|
|
|
|
|
2011-09-20 03:54:05 +00:00
|
|
|
/* Has gcc/MSVC atomic intrinsics */
|
|
|
|
#undef LLVM_HAS_ATOMICS
|
|
|
|
|
2012-07-22 03:04:52 +00:00
|
|
|
/* Host triple LLVM will be executed on */
|
2013-05-04 07:36:23 +00:00
|
|
|
#undef LLVM_HOST_TRIPLE
|
2012-07-22 03:04:52 +00:00
|
|
|
|
2010-08-08 02:44:17 +00:00
|
|
|
/* Installation directory for include files */
|
|
|
|
#undef LLVM_INCLUDEDIR
|
|
|
|
|
|
|
|
/* Installation directory for .info files */
|
|
|
|
#undef LLVM_INFODIR
|
|
|
|
|
|
|
|
/* Installation directory for man pages */
|
|
|
|
#undef LLVM_MANDIR
|
|
|
|
|
|
|
|
/* LLVM architecture name for the native architecture, if available */
|
|
|
|
#undef LLVM_NATIVE_ARCH
|
|
|
|
|
2011-08-12 01:50:50 +00:00
|
|
|
/* LLVM name for the native AsmParser init function, if available */
|
|
|
|
#undef LLVM_NATIVE_ASMPARSER
|
|
|
|
|
|
|
|
/* LLVM name for the native AsmPrinter init function, if available */
|
|
|
|
#undef LLVM_NATIVE_ASMPRINTER
|
|
|
|
|
2012-03-26 21:56:56 +00:00
|
|
|
/* LLVM name for the native Disassembler init function, if available */
|
|
|
|
#undef LLVM_NATIVE_DISASSEMBLER
|
|
|
|
|
2010-08-30 18:34:48 +00:00
|
|
|
/* LLVM name for the native Target init function, if available */
|
|
|
|
#undef LLVM_NATIVE_TARGET
|
|
|
|
|
|
|
|
/* LLVM name for the native TargetInfo init function, if available */
|
|
|
|
#undef LLVM_NATIVE_TARGETINFO
|
|
|
|
|
2011-08-12 01:50:50 +00:00
|
|
|
/* LLVM name for the native target MC init function, if available */
|
2011-07-22 21:58:54 +00:00
|
|
|
#undef LLVM_NATIVE_TARGETMC
|
2011-07-19 06:37:02 +00:00
|
|
|
|
2010-08-08 02:44:17 +00:00
|
|
|
/* Define if this is Unixish platform */
|
|
|
|
#undef LLVM_ON_UNIX
|
|
|
|
|
|
|
|
/* Define if this is Win32ish platform */
|
|
|
|
#undef LLVM_ON_WIN32
|
|
|
|
|
|
|
|
/* Installation prefix directory */
|
|
|
|
#undef LLVM_PREFIX
|
2010-08-08 09:18:29 +00:00
|
|
|
|
2012-12-13 15:03:38 +00:00
|
|
|
/* Define if we have the Intel JIT API runtime support library */
|
|
|
|
#undef LLVM_USE_INTEL_JITEVENTS
|
|
|
|
|
|
|
|
/* Define if we have the oprofile JIT-support library */
|
|
|
|
#undef LLVM_USE_OPROFILE
|
|
|
|
|
2012-02-13 18:48:10 +00:00
|
|
|
/* Major version of the LLVM API */
|
|
|
|
#undef LLVM_VERSION_MAJOR
|
|
|
|
|
|
|
|
/* Minor version of the LLVM API */
|
|
|
|
#undef LLVM_VERSION_MINOR
|
|
|
|
|
2014-11-19 03:34:17 +00:00
|
|
|
/* LLVM version string */
|
|
|
|
#undef LLVM_VERSION_STRING
|
|
|
|
|
2010-08-08 09:18:29 +00:00
|
|
|
#endif
|