diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-06-13 15:33:45 +0200 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-06-20 10:01:30 +0200 |
commit | bd0c03b2d3af12a410596b878c6c403110ec9db3 (patch) | |
tree | 8939a93c7e85e5410cd131f59e3c179477b8eea0 /meson.build | |
parent | 905db98a73d6a6e1dda2bf81ed11323efee0f7a1 (diff) | |
download | qemu-bd0c03b2d3af12a410596b878c6c403110ec9db3.zip qemu-bd0c03b2d3af12a410596b878c6c403110ec9db3.tar.gz qemu-bd0c03b2d3af12a410596b878c6c403110ec9db3.tar.bz2 |
meson: Alias CONFIG_SOFTMMU -> CONFIG_SYSTEM_ONLY
We use the CONFIG_USER_ONLY key to describe user emulation,
and the CONFIG_SOFTMMU key to describe system emulation. Alias
it as 'CONFIG_SYSTEM_ONLY' for parity with user emulation.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230613133347.82210-8-philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index cfa98e9..3276f73 100644 --- a/meson.build +++ b/meson.build @@ -2864,6 +2864,7 @@ foreach target : target_dirs endif config_target += { 'CONFIG_BSD_USER': 'y' } elif target.endswith('softmmu') + config_target += { 'CONFIG_SYSTEM_ONLY': 'y' } config_target += { 'CONFIG_SOFTMMU': 'y' } endif if target.endswith('-user') |