diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-10-04 11:06:20 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-10-07 19:02:33 +0200 |
commit | 7893e42d5d9cafeeab30a114e8ec86517f8a1b36 (patch) | |
tree | 3c347d9ad5fd9c9c7b519cdb96e23991feaaf105 /tcg/meson.build | |
parent | c2646d49588d834c2bcc050539053074ac43d4ba (diff) | |
download | qemu-7893e42d5d9cafeeab30a114e8ec86517f8a1b36.zip qemu-7893e42d5d9cafeeab30a114e8ec86517f8a1b36.tar.gz qemu-7893e42d5d9cafeeab30a114e8ec86517f8a1b36.tar.bz2 |
tcg: Correct invalid mentions of 'softmmu' by 'system-mode'
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231004090629.37473-6-philmd@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tcg/meson.build')
-rw-r--r-- | tcg/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tcg/meson.build b/tcg/meson.build index 4be4a61..895a11d 100644 --- a/tcg/meson.build +++ b/tcg/meson.build @@ -34,12 +34,12 @@ tcg_user = declare_dependency(link_with: libtcg_user, dependencies: tcg_ss.dependencies()) user_ss.add(tcg_user) -libtcg_softmmu = static_library('tcg_softmmu', +libtcg_system = static_library('tcg_system', tcg_ss.sources() + genh, name_suffix: 'fa', c_args: '-DCONFIG_SOFTMMU', build_by_default: false) -tcg_softmmu = declare_dependency(link_with: libtcg_softmmu, +tcg_system = declare_dependency(link_with: libtcg_system, dependencies: tcg_ss.dependencies()) -system_ss.add(tcg_softmmu) +system_ss.add(tcg_system) |