llvm-config.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. #define LLVM_DEFAULT_TARGET_TRIPLE "x86_64-apple-darwin15.3.0"
  22. /* Installation directory for documentation */
  23. /* #undef LLVM_DOCSDIR */
  24. /* Define if LLVM is built with asserts and checks that change the layout of
  25. client-visible data structures. */
  26. /* #undef LLVM_ENABLE_ABI_BREAKING_CHECKS */
  27. /* Define if threads enabled */
  28. #define LLVM_ENABLE_THREADS 1
  29. /* Installation directory for config files */
  30. /* #undef LLVM_ETCDIR */
  31. /* Has gcc/MSVC atomic intrinsics */
  32. #define LLVM_HAS_ATOMICS 1
  33. /* Host triple LLVM will be executed on */
  34. #define LLVM_HOST_TRIPLE "x86_64-apple-darwin15.3.0"
  35. /* Installation directory for include files */
  36. /* #undef LLVM_INCLUDEDIR */
  37. /* Installation directory for .info files */
  38. /* #undef LLVM_INFODIR */
  39. /* Installation directory for man pages */
  40. /* #undef LLVM_MANDIR */
  41. /* LLVM architecture name for the native architecture, if available */
  42. #define LLVM_NATIVE_ARCH X86
  43. /* LLVM name for the native AsmParser init function, if available */
  44. #define LLVM_NATIVE_ASMPARSER LLVMInitializeX86AsmParser
  45. /* LLVM name for the native AsmPrinter init function, if available */
  46. #define LLVM_NATIVE_ASMPRINTER LLVMInitializeX86AsmPrinter
  47. /* LLVM name for the native Disassembler init function, if available */
  48. #define LLVM_NATIVE_DISASSEMBLER LLVMInitializeX86Disassembler
  49. /* LLVM name for the native Target init function, if available */
  50. #define LLVM_NATIVE_TARGET LLVMInitializeX86Target
  51. /* LLVM name for the native TargetInfo init function, if available */
  52. #define LLVM_NATIVE_TARGETINFO LLVMInitializeX86TargetInfo
  53. /* LLVM name for the native target MC init function, if available */
  54. #define LLVM_NATIVE_TARGETMC LLVMInitializeX86TargetMC
  55. /* Define if this is Unixish platform */
  56. #define LLVM_ON_UNIX 1
  57. /* Define if this is Win32ish platform */
  58. /* #undef LLVM_ON_WIN32 */
  59. /* Installation prefix directory */
  60. #define LLVM_PREFIX "/usr/local"
  61. /* Define if we have the Intel JIT API runtime support library */
  62. /* #undef LLVM_USE_INTEL_JITEVENTS */
  63. /* Define if we have the oprofile JIT-support library */
  64. /* #undef LLVM_USE_OPROFILE */
  65. /* Major version of the LLVM API */
  66. #define LLVM_VERSION_MAJOR 3
  67. /* Minor version of the LLVM API */
  68. #define LLVM_VERSION_MINOR 9
  69. /* Patch version of the LLVM API */
  70. #define LLVM_VERSION_PATCH 0
  71. /* LLVM version string */
  72. #define LLVM_VERSION_STRING "3.9.0svn"
  73. /* Define if we link Polly to the tools */
  74. /* #undef LINK_POLLY_INTO_TOOLS */
  75. #endif