Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

130 lines
4.4 KiB

  1. /*===-- llvm/config/llvm-config.h - llvm configure variable -------*- 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 all of the llvm variables from configure so that
  10. they can be in exported headers and won't override package specific
  11. directives. This is a C file so we can include it in the llvm-c headers. */
  12. /* To avoid multiple inclusions of these variables when we include the exported
  13. headers and config.h, conditionally include these. */
  14. /* TODO: This is a bit of a hack. */
  15. #ifndef CONFIG_H
  16. /* Installation directory for binary executables */
  17. /* #undef LLVM_BINDIR */
  18. /* Time at which LLVM was configured */
  19. /* #undef LLVM_CONFIGTIME */
  20. /* Installation directory for data files */
  21. /* #undef LLVM_DATADIR */
  22. /* Target triple LLVM will generate code for by default */
  23. #define LLVM_DEFAULT_TARGET_TRIPLE "x86_64-pc-win32"
  24. /* Installation directory for documentation */
  25. /* #undef LLVM_DOCSDIR */
  26. /* Define if threads enabled */
  27. #define LLVM_ENABLE_THREADS 1
  28. /* Installation directory for config files */
  29. /* #undef LLVM_ETCDIR */
  30. /* Has gcc/MSVC atomic intrinsics */
  31. #define LLVM_HAS_ATOMICS 1
  32. /* Host triple LLVM will be executed on */
  33. #define LLVM_HOSTTRIPLE "x86_64-pc-win32"
  34. /* Installation directory for include files */
  35. /* #undef LLVM_INCLUDEDIR */
  36. /* Installation directory for .info files */
  37. /* #undef LLVM_INFODIR */
  38. /* Installation directory for libraries */
  39. /* #undef LLVM_LIBDIR */
  40. /* Installation directory for man pages */
  41. /* #undef LLVM_MANDIR */
  42. /* LLVM architecture name for the native architecture, if available */
  43. #define LLVM_NATIVE_ARCH X86
  44. /* LLVM name for the native AsmParser init function, if available */
  45. #define LLVM_NATIVE_ASMPARSER LLVMInitializeX86AsmParser
  46. /* LLVM name for the native AsmPrinter init function, if available */
  47. #define LLVM_NATIVE_ASMPRINTER LLVMInitializeX86AsmPrinter
  48. /* LLVM name for the native Disassembler init function, if available */
  49. #define LLVM_NATIVE_DISASSEMBLER LLVMInitializeX86Disassembler
  50. /* LLVM name for the native Target init function, if available */
  51. #define LLVM_NATIVE_TARGET LLVMInitializeX86Target
  52. /* LLVM name for the native TargetInfo init function, if available */
  53. #define LLVM_NATIVE_TARGETINFO LLVMInitializeX86TargetInfo
  54. /* LLVM name for the native target MC init function, if available */
  55. #define LLVM_NATIVE_TARGETMC LLVMInitializeX86TargetMC
  56. /* Define if this is Unixish platform */
  57. /* #undef LLVM_ON_UNIX */
  58. /* Define if this is Win32ish platform */
  59. #define LLVM_ON_WIN32 1
  60. /* Define to path to circo program if found or 'echo circo' otherwise */
  61. /* #undef LLVM_PATH_CIRCO */
  62. /* Define to path to dot program if found or 'echo dot' otherwise */
  63. /* #undef LLVM_PATH_DOT */
  64. /* Define to path to dotty program if found or 'echo dotty' otherwise */
  65. /* #undef LLVM_PATH_DOTTY */
  66. /* Define to path to fdp program if found or 'echo fdp' otherwise */
  67. /* #undef LLVM_PATH_FDP */
  68. /* Define to path to Graphviz program if found or 'echo Graphviz' otherwise */
  69. /* #undef LLVM_PATH_GRAPHVIZ */
  70. /* Define to path to gv program if found or 'echo gv' otherwise */
  71. /* #undef LLVM_PATH_GV */
  72. /* Define to path to neato program if found or 'echo neato' otherwise */
  73. /* #undef LLVM_PATH_NEATO */
  74. /* Define to path to twopi program if found or 'echo twopi' otherwise */
  75. /* #undef LLVM_PATH_TWOPI */
  76. /* Define to path to xdot.py program if found or 'echo xdot.py' otherwise */
  77. /* #undef LLVM_PATH_XDOT_PY */
  78. /* Installation prefix directory */
  79. #define LLVM_PREFIX "C:/Program Files/LLVM"
  80. /* Define if we have the Intel JIT API runtime support library */
  81. /* #undef LLVM_USE_INTEL_JITEVENTS */
  82. /* Define if we have the oprofile JIT-support library */
  83. /* #undef LLVM_USE_OPROFILE */
  84. /* Major version of the LLVM API */
  85. #define LLVM_VERSION_MAJOR 3
  86. /* Minor version of the LLVM API */
  87. #define LLVM_VERSION_MINOR 3
  88. /* Define to 1 if you have the <sanitizer/msan_interface.h> header file. */
  89. /* #undef HAVE_SANITIZER_MSAN_INTERFACE_H */
  90. #endif