From 723019f727ce53b392389bdadcc1701ae47e6a14 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sun, 7 Mar 2021 18:15:50 +0100 Subject: Optionally use a pool allocator for rb-tree nodes This commit restructures the rbtree code to optionally use a pool allocator for the nodes. The option is made depenend on the presence of a pre-processor flag. To the configure script is added an option to enable/disable the use of custom allocators. It makes sense to still allow the malloc/free based routes for better ASAN based instrumentation. Signed-off-by: David Oberhollenzer --- configure.ac | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 32ae8ba..95750a8 100644 --- a/configure.ac +++ b/configure.ac @@ -107,6 +107,11 @@ AC_ARG_WITH([tools], [Only build libsquashfs, do not build the tools.])], [], [with_tools="yes"]) +AC_ARG_ENABLE([custom-alloc], + [AS_HELP_STRING([--disable-custom-alloc], + [Do not used any custom allocators.])], + [], [enable_custom_alloc="yes"]) + AC_ARG_ENABLE([corpora-tests], [AS_HELP_STRING([--enable-corpora-tests], [Perform corpora based reproducability tests.])], @@ -268,6 +273,8 @@ AC_CHECK_FUNCS([strndup getsubopt]) ##### generate output ##### +AM_CONDITIONAL([CUSTOM_ALLOC], [test "x$enable_custom_alloc" = "xyes"]) + AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([lib/sqfs/libsquashfs1.pc]) AC_CONFIG_FILES([Doxyfile]) @@ -303,6 +310,8 @@ AC_MSG_RESULT([ SELinux support: ${with_selinux} Using pthreads: ${with_pthread} + Custom allocators: ${enable_custom_alloc} + Building tools: ${with_tools} Doxygen found: ${with_doxygen} -- cgit v1.2.3