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