dwarfs/cmake/config.h.in
Marcus Holland-Moritz 6b17f3d31f refactor: only link jemalloc against executables, not libraries
Linking `jemalloc` against executables is enough to replace *all* malloc
functionality with `jemalloc`. Linking it against a library will cause
issues for example with Python bindings. The downside is that Python
won't be using `jemalloc` by default, but likely malloc won't be the
bottleneck when using Python.
2025-03-17 09:42:52 +01:00

15 lines
468 B
C

#pragma once
// NOLINTBEGIN(cppcoreguidelines-macro-to-enum)
#cmakedefine DWARFS_HAVE_LIBMAGIC 1
#cmakedefine DWARFS_HAVE_LIBLZ4 1
#cmakedefine DWARFS_HAVE_LIBLZMA 1
#cmakedefine DWARFS_HAVE_LIBBROTLI 1
#cmakedefine DWARFS_HAVE_FLAC 1
#cmakedefine DWARFS_HAVE_RICEPP 1
#cmakedefine DWARFS_HAVE_LIBZSTD 1
#cmakedefine DWARFS_BUILTIN_MANPAGE 1
#cmakedefine DWARFS_PERFMON_ENABLED 1
#cmakedefine DWARFS_STACKTRACE_ENABLED 1
// NOLINTEND(cppcoreguidelines-macro-to-enum)