accel/tcg: Build tcg-runtime-gvec.c once

Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
Richard Henderson 2025-03-07 10:34:13 -08:00
parent 6e9f900211
commit 9e2080766f
2 changed files with 1 additions and 2 deletions

View File

@ -1,13 +1,13 @@
common_ss.add(when: 'CONFIG_TCG', if_true: files( common_ss.add(when: 'CONFIG_TCG', if_true: files(
'cpu-exec-common.c', 'cpu-exec-common.c',
'tcg-runtime.c', 'tcg-runtime.c',
'tcg-runtime-gvec.c',
)) ))
tcg_specific_ss = ss.source_set() tcg_specific_ss = ss.source_set()
tcg_specific_ss.add(files( tcg_specific_ss.add(files(
'tcg-all.c', 'tcg-all.c',
'cpu-exec.c', 'cpu-exec.c',
'tb-maint.c', 'tb-maint.c',
'tcg-runtime-gvec.c',
'translate-all.c', 'translate-all.c',
'translator.c', 'translator.c',
)) ))

View File

@ -19,7 +19,6 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qemu/host-utils.h" #include "qemu/host-utils.h"
#include "cpu.h"
#include "exec/helper-proto-common.h" #include "exec/helper-proto-common.h"
#include "tcg/tcg-gvec-desc.h" #include "tcg/tcg-gvec-desc.h"