mirror of
https://github.com/mhx/dwarfs.git
synced 2025-09-08 03:49:44 -04:00

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.
15 lines
468 B
C
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)
|