config-linux.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* used by cmake */
  2. #ifndef CONFIG_H_
  3. #define CONFIG_H_
  4. /* "Define if the build is 32 bit" */
  5. /* #undef ARCH_32_BIT */
  6. /* "Define if the build is 64 bit" */
  7. #define ARCH_64_BIT
  8. /* "Define if building for IA32" */
  9. /* #undef ARCH_IA32 */
  10. /* "Define if building for EM64T" */
  11. #define ARCH_X86_64
  12. /* internal build, switch on dump support. */
  13. /* #undef DUMP_SUPPORT */
  14. /* Define if building "fat" runtime. */
  15. #define FAT_RUNTIME
  16. /* Define if building AVX-512 in the fat runtime. */
  17. #define BUILD_AVX512
  18. /* Define if building AVX512VBMI in the fat runtime. */
  19. /* #undef BUILD_AVX512VBMI */
  20. /* Define to 1 if `backtrace' works. */
  21. /* #undef HAVE_BACKTRACE */
  22. /* C compiler has __builtin_assume_aligned */
  23. #define HAVE_CC_BUILTIN_ASSUME_ALIGNED
  24. /* C++ compiler has __builtin_assume_aligned */
  25. #define HAVE_CXX_BUILTIN_ASSUME_ALIGNED
  26. /* C++ compiler has x86intrin.h */
  27. #define HAVE_CXX_X86INTRIN_H
  28. /* C compiler has x86intrin.h */
  29. #define HAVE_C_X86INTRIN_H
  30. /* C++ compiler has intrin.h */
  31. /* #undef HAVE_CXX_INTRIN_H */
  32. /* C compiler has intrin.h */
  33. /* #undef HAVE_C_INTRIN_H */
  34. /* Define to 1 if you have the declaration of `pthread_setaffinity_np', and to
  35. 0 if you don't. */
  36. /* #undef HAVE_DECL_PTHREAD_SETAFFINITY_NP */
  37. /* #undef HAVE_PTHREAD_NP_H */
  38. /* Define to 1 if you have the `malloc_info' function. */
  39. /* #undef HAVE_MALLOC_INFO */
  40. /* Define to 1 if you have the `memmem' function. */
  41. /* #undef HAVE_MEMMEM */
  42. /* Define to 1 if you have a working `mmap' system call. */
  43. #define HAVE_MMAP
  44. /* Define to 1 if `posix_memalign' works. */
  45. #define HAVE_POSIX_MEMALIGN
  46. /* Define to 1 if you have the `setrlimit' function. */
  47. /* #undef HAVE_SETRLIMIT */
  48. /* Define to 1 if you have the `shmget' function. */
  49. /* #undef HAVE_SHMGET */
  50. /* Define to 1 if you have the `sigaction' function. */
  51. /* #undef HAVE_SIGACTION */
  52. /* Define to 1 if you have the `sigaltstack' function. */
  53. /* #undef HAVE_SIGALTSTACK */
  54. /* Define if the sqlite3_open_v2 call is available */
  55. /* #undef HAVE_SQLITE3_OPEN_V2 */
  56. /* Define to 1 if you have the <unistd.h> header file. */
  57. #define HAVE_UNISTD_H
  58. /* Define to 1 if you have the `_aligned_malloc' function. */
  59. /* #undef HAVE__ALIGNED_MALLOC */
  60. /* Define if compiler has __builtin_constant_p */
  61. #define HAVE__BUILTIN_CONSTANT_P
  62. /* Optimize, inline critical functions */
  63. #define HS_OPTIMIZE
  64. #define HS_VERSION
  65. #define HS_MAJOR_VERSION
  66. #define HS_MINOR_VERSION
  67. #define HS_PATCH_VERSION
  68. #define BUILD_DATE
  69. /* define if this is a release build. */
  70. #define RELEASE_BUILD
  71. /* define if reverse_graph requires patch for boost 1.62.0 */
  72. /* #undef BOOST_REVGRAPH_PATCH */
  73. #endif /* CONFIG_H_ */