# Build options for use by CMake
# Disabling this option may be useful for triaging performance issues
# or result faster hash computation where the system's libxxhash library
# uses HW acceleration. See: https://bugs.debian.org/977345
option(ENABLE_XXH_INLINE_ALL "Enable -DXXH_INLINE_ALL" ON)
# Detect and link with jemalloc when it is available.
# Disabling linking with jemalloc may help in triaging memory handling issues.
option(WITH_JEMALLOC "Link with jemalloc" ON)
# Enables ASan for the supervisor and UBSan for the supervisor and the interceptor
option(SANITIZE "Enable Address and Undefined behaviour sanitizer" OFF)
|