mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00

Errors about TCI are pointless if only tools are being built; suppress them even if the user did not specify --disable-tcg. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
38 lines
624 B
Meson
38 lines
624 B
Meson
if not have_tcg
|
|
subdir_done()
|
|
endif
|
|
|
|
tcg_ss = ss.source_set()
|
|
|
|
tcg_ss.add(files(
|
|
'cpu-exec.c',
|
|
'cpu-exec-common.c',
|
|
'tcg-runtime.c',
|
|
'tcg-runtime-gvec.c',
|
|
'tb-maint.c',
|
|
'tcg-all.c',
|
|
'translate-all.c',
|
|
'translator.c',
|
|
))
|
|
if get_option('plugins')
|
|
tcg_ss.add(files('plugin-gen.c'))
|
|
endif
|
|
|
|
libuser_ss.add_all(tcg_ss)
|
|
libsystem_ss.add_all(tcg_ss)
|
|
|
|
libuser_ss.add(files(
|
|
'user-exec.c',
|
|
'user-exec-stub.c',
|
|
))
|
|
|
|
libsystem_ss.add(files(
|
|
'cputlb.c',
|
|
'icount-common.c',
|
|
'monitor.c',
|
|
'tcg-accel-ops.c',
|
|
'tcg-accel-ops-icount.c',
|
|
'tcg-accel-ops-mttcg.c',
|
|
'tcg-accel-ops-rr.c',
|
|
'watchpoint.c',
|
|
))
|