Message ID | 20250103231738.65413-6-philmd@linaro.org (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | disas: Allow linking multiple disassemblers in a heterogeneous binary | expand |
diff --git a/meson.build b/meson.build index a35ef579c28..28f9120a781 100644 --- a/meson.build +++ b/meson.build @@ -3224,6 +3224,7 @@ host_kconfig = \ (have_ivshmem ? ['CONFIG_IVSHMEM=y'] : []) + \ (opengl.found() ? ['CONFIG_OPENGL=y'] : []) + \ (libcbor.found() ? ['CONFIG_LIBCBOR=y'] : []) + \ + (capstone.found() ? ['CONFIG_CAPSTONE=y'] : []) + \ (gnutls.found() ? ['CONFIG_GNUTLS=y'] : []) + \ (x11.found() ? ['CONFIG_X11=y'] : []) + \ (fdt.found() ? ['CONFIG_FDT=y'] : []) + \ diff --git a/Kconfig.host b/Kconfig.host index 842cbe0d6c5..23b729db945 100644 --- a/Kconfig.host +++ b/Kconfig.host @@ -61,3 +61,6 @@ config HV_BALLOON_POSSIBLE config HAVE_RUST bool + +config CAPSTONE + bool
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- meson.build | 1 + Kconfig.host | 3 +++ 2 files changed, 4 insertions(+)