rizin/librz/config.h.in
Riccardo Schirone fd3a79f9e3 bin: remove Ldr plugins
RzBinLdrPlugins were not used. There was just one for Linux, but it was
not doing anything.
2022-07-20 22:04:02 +02:00

31 lines
971 B
C

// SPDX-FileCopyrightText: 2021 RizinOrg <info@rizin.re>
// SPDX-License-Identifier: LGPL-3.0-only
#ifndef _INCLUDE_CONFIG_H_
#define _INCLUDE_CONFIG_H_
#define RZ_DEBUG 0
#define RZ_RTDEBUG 1
/* inlined APIs */
#define RZ_INLINE 0
#define RZ_LOADLIBS 1
// clang-format off
#define RZ_EGG_STATIC_PLUGINS @plugins_egg@
#define RZ_BIN_STATIC_PLUGINS @plugins_bin@
#define RZ_BIN_XTR_STATIC_PLUGINS @plugins_bin_xtr@
#define RZ_IO_STATIC_PLUGINS @plugins_io@
#define RZ_DEBUG_STATIC_PLUGINS @plugins_debug@
#define RZ_BP_STATIC_PLUGINS @plugins_bp@
#define RZ_ASM_STATIC_PLUGINS @plugins_asm@
#define RZ_ANALYSIS_STATIC_PLUGINS @plugins_analysis@
#define RZ_CORE_STATIC_PLUGINS @plugins_core@
#define RZ_LANG_STATIC_PLUGINS @plugins_lang@
#define RZ_HASH_STATIC_PLUGINS @plugins_hash@
#define RZ_PARSE_STATIC_PLUGINS @plugins_parse@
#define RZ_CRYPTO_STATIC_PLUGINS @plugins_crypto@
#define RZ_DEMANGLER_STATIC_PLUGINS @plugins_demangler@
// clang-format on
#endif