diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-11-17 14:58:32 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-01-02 21:03:36 +0100 |
commit | 0a18911074a1b379540446c6a432b796ab7c436d (patch) | |
tree | b2d50ab7139fcc5e0388bcc2616971f27b42be9f /accel | |
parent | 2f2a376a420153ce72444cc015904939b1490001 (diff) | |
download | qemu-0a18911074a1b379540446c6a432b796ab7c436d.zip |
meson: cleanup Kconfig.host handling
Build the array of command line arguments coming from config_host
once for all targets. Add all accelerators to accel/Kconfig so
that the command line arguments for accelerators can be computed
easily in the existing "foreach sym: accelerators" loop.
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'accel')
-rw-r--r-- | accel/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/accel/Kconfig b/accel/Kconfig index 2ad94a3839..461104c771 100644 --- a/accel/Kconfig +++ b/accel/Kconfig @@ -1,3 +1,12 @@ +config WHPX + bool + +config HAX + bool + +config HVF + bool + config TCG bool |