1*e580952dSDimitry Andric /* $FreeBSD$ */ 2*e580952dSDimitry Andric /* include/llvm/Config/llvm-config.h. Generated from llvm-config.h.in by configure. */ 3*e580952dSDimitry Andric /*===-- llvm/config/llvm-config.h - llvm configure variable -------*- C -*-===*/ 4*e580952dSDimitry Andric /* */ 5*e580952dSDimitry Andric /* The LLVM Compiler Infrastructure */ 6*e580952dSDimitry Andric /* */ 7*e580952dSDimitry Andric /* This file is distributed under the University of Illinois Open Source */ 8*e580952dSDimitry Andric /* License. See LICENSE.TXT for details. */ 9*e580952dSDimitry Andric /* */ 10*e580952dSDimitry Andric /*===----------------------------------------------------------------------===*/ 11*e580952dSDimitry Andric 12*e580952dSDimitry Andric /* This file enumerates all of the llvm variables from configure so that 13*e580952dSDimitry Andric they can be in exported headers and won't override package specific 14*e580952dSDimitry Andric directives. This is a C file so we can include it in the llvm-c headers. */ 15*e580952dSDimitry Andric 16*e580952dSDimitry Andric /* To avoid multiple inclusions of these variables when we include the exported 17*e580952dSDimitry Andric headers and config.h, conditionally include these. */ 18*e580952dSDimitry Andric /* TODO: This is a bit of a hack. */ 19*e580952dSDimitry Andric #ifndef CONFIG_H 20*e580952dSDimitry Andric 21*e580952dSDimitry Andric /* Build multithreading support into LLVM */ 22*e580952dSDimitry Andric /* #undef LLVM_MULTITHREADED */ 23*e580952dSDimitry Andric 24*e580952dSDimitry Andric /* LLVM architecture name for the native architecture, if available */ 25*e580952dSDimitry Andric #define LLVM_NATIVE_ARCH X86Target 26*e580952dSDimitry Andric 27*e580952dSDimitry Andric /* Short LLVM architecture name for the native architecture, if available */ 28*e580952dSDimitry Andric #define LLVM_NATIVE_ARCHNAME X86 29*e580952dSDimitry Andric 30*e580952dSDimitry Andric /* Define if this is Unixish platform */ 31*e580952dSDimitry Andric #define LLVM_ON_UNIX 1 32*e580952dSDimitry Andric 33*e580952dSDimitry Andric /* Define if this is Win32ish platform */ 34*e580952dSDimitry Andric /* #undef LLVM_ON_WIN32 */ 35*e580952dSDimitry Andric 36*e580952dSDimitry Andric /* Define to path to circo program if found or 'echo circo' otherwise */ 37*e580952dSDimitry Andric /* #undef LLVM_PATH_CIRCO */ 38*e580952dSDimitry Andric 39*e580952dSDimitry Andric /* Define to path to dot program if found or 'echo dot' otherwise */ 40*e580952dSDimitry Andric /* #undef LLVM_PATH_DOT */ 41*e580952dSDimitry Andric 42*e580952dSDimitry Andric /* Define to path to dotty program if found or 'echo dotty' otherwise */ 43*e580952dSDimitry Andric /* #undef LLVM_PATH_DOTTY */ 44*e580952dSDimitry Andric 45*e580952dSDimitry Andric /* Define to path to fdp program if found or 'echo fdp' otherwise */ 46*e580952dSDimitry Andric /* #undef LLVM_PATH_FDP */ 47*e580952dSDimitry Andric 48*e580952dSDimitry Andric /* Define to path to Graphviz program if found or 'echo Graphviz' otherwise */ 49*e580952dSDimitry Andric /* #undef LLVM_PATH_GRAPHVIZ */ 50*e580952dSDimitry Andric 51*e580952dSDimitry Andric /* Define to path to gv program if found or 'echo gv' otherwise */ 52*e580952dSDimitry Andric /* #undef LLVM_PATH_GV */ 53*e580952dSDimitry Andric 54*e580952dSDimitry Andric /* Define to path to neato program if found or 'echo neato' otherwise */ 55*e580952dSDimitry Andric /* #undef LLVM_PATH_NEATO */ 56*e580952dSDimitry Andric 57*e580952dSDimitry Andric /* Define to path to twopi program if found or 'echo twopi' otherwise */ 58*e580952dSDimitry Andric /* #undef LLVM_PATH_TWOPI */ 59*e580952dSDimitry Andric 60*e580952dSDimitry Andric /* Installation prefix directory */ 61*e580952dSDimitry Andric #define LLVM_PREFIX "/usr" 62*e580952dSDimitry Andric 63*e580952dSDimitry Andric #endif 64