llvm-config.h.in 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*===------- llvm/Config/llvm-config.h - llvm configuration -------*- C -*-===*/
  2. /* */
  3. /* The LLVM Compiler Infrastructure */
  4. /* */
  5. /* This file is distributed under the University of Illinois Open Source */
  6. /* License. See LICENSE.TXT for details. */
  7. /* */
  8. /*===----------------------------------------------------------------------===*/
  9. /* This file enumerates variables from the LLVM configuration so that they
  10. can be in exported headers and won't override package specific directives.
  11. This is a C header that can be included in the llvm-c headers. */
  12. #ifndef LLVM_CONFIG_H
  13. #define LLVM_CONFIG_H
  14. /* Installation directory for binary executables */
  15. #undef LLVM_BINDIR
  16. /* Time at which LLVM was configured */
  17. #undef LLVM_CONFIGTIME
  18. /* Installation directory for data files */
  19. #undef LLVM_DATADIR
  20. /* Target triple LLVM will generate code for by default */
  21. #undef LLVM_DEFAULT_TARGET_TRIPLE
  22. /* Installation directory for documentation */
  23. #undef LLVM_DOCSDIR
  24. /* Define to enable checks that alter the LLVM C++ ABI */
  25. #undef LLVM_ENABLE_ABI_BREAKING_CHECKS
  26. /* Define if threads enabled */
  27. #undef LLVM_ENABLE_THREADS
  28. /* Installation directory for config files */
  29. #undef LLVM_ETCDIR
  30. /* Has gcc/MSVC atomic intrinsics */
  31. #undef LLVM_HAS_ATOMICS
  32. /* Host triple LLVM will be executed on */
  33. #undef LLVM_HOST_TRIPLE
  34. /* Installation directory for include files */
  35. #undef LLVM_INCLUDEDIR
  36. /* Installation directory for .info files */
  37. #undef LLVM_INFODIR
  38. /* Installation directory for man pages */
  39. #undef LLVM_MANDIR
  40. /* LLVM architecture name for the native architecture, if available */
  41. #undef LLVM_NATIVE_ARCH
  42. /* LLVM name for the native AsmParser init function, if available */
  43. #undef LLVM_NATIVE_ASMPARSER
  44. /* LLVM name for the native AsmPrinter init function, if available */
  45. #undef LLVM_NATIVE_ASMPRINTER
  46. /* LLVM name for the native Disassembler init function, if available */
  47. #undef LLVM_NATIVE_DISASSEMBLER
  48. /* LLVM name for the native Target init function, if available */
  49. #undef LLVM_NATIVE_TARGET
  50. /* LLVM name for the native TargetInfo init function, if available */
  51. #undef LLVM_NATIVE_TARGETINFO
  52. /* LLVM name for the native target MC init function, if available */
  53. #undef LLVM_NATIVE_TARGETMC
  54. /* Define if this is Unixish platform */
  55. #undef LLVM_ON_UNIX
  56. /* Define if this is Win32ish platform */
  57. #undef LLVM_ON_WIN32
  58. /* Installation prefix directory */
  59. #undef LLVM_PREFIX
  60. /* Define if we have the Intel JIT API runtime support library */
  61. #undef LLVM_USE_INTEL_JITEVENTS
  62. /* Define if we have the oprofile JIT-support library */
  63. #undef LLVM_USE_OPROFILE
  64. /* Major version of the LLVM API */
  65. #undef LLVM_VERSION_MAJOR
  66. /* Minor version of the LLVM API */
  67. #undef LLVM_VERSION_MINOR
  68. /* Patch version of the LLVM API */
  69. #undef LLVM_VERSION_PATCH
  70. /* LLVM version string */
  71. #undef LLVM_VERSION_STRING
  72. #endif