-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathconfig.h.in
More file actions
40 lines (28 loc) · 1.08 KB
/
config.h.in
File metadata and controls
40 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* config.h.in. Generated from configure.ac by autoheader. */
/* IHK build-id to confirm IHK and McKernel built at the same time are used */
#define BUILDID "${BUILDID}"
/* version number */
#define MCKERNEL_VERSION "${MCKERNEL_VERSION}"
/* enable the required code for mcexec to be able to use bind mount
* there is no config option as its use is discouraged */
// #define MCEXEC_BIND_MOUNT 1
/* whether memdump feature is enabled */
#cmakedefine ENABLE_MEMDUMP 1
/* whether perf is enabled */
#cmakedefine ENABLE_PERF 1
/* whether qlmpi is enabled */
#cmakedefine ENABLE_QLMPI 1
/* whether rusage is enabled */
#cmakedefine ENABLE_RUSAGE 1
/* whether UTI is enabled */
#cmakedefine ENABLE_UTI 1
/* whether undefined behaviour sanitizer is enabled */
#cmakedefine ENABLE_UBSAN 1
/* whether per-CPU allocator cache (ThunderX2 workaround) is enabled */
#cmakedefine ENABLE_PER_CPU_ALLOC_CACHE 1
/* Path of bind-mount source directory */
#cmakedefine ROOTFSDIR "${ROOTFSDIR}"
/* for non-RHEL kernels */
#ifndef RHEL_RELEASE_VERSION
#define RHEL_RELEASE_VERSION(a,b) (((a) << 8) + (b))
#endif