diff options
Diffstat (limited to 'accel/tcg/meson.build')
| -rw-r--r-- | accel/tcg/meson.build | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/accel/tcg/meson.build b/accel/tcg/meson.build index 047afa49a2..d6f533f9a1 100644 --- a/accel/tcg/meson.build +++ b/accel/tcg/meson.build @@ -5,9 +5,13 @@ 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') @@ -17,25 +21,13 @@ endif libuser_ss.add_all(tcg_ss) libsystem_ss.add_all(tcg_ss) -tcg_specific_ss = ss.source_set() -tcg_specific_ss.add(files( - 'tcg-all.c', - 'cpu-exec.c', - 'tb-maint.c', - 'translate-all.c', -)) -tcg_specific_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-exec.c')) -specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_specific_ss) - -specific_ss.add(when: ['CONFIG_SYSTEM_ONLY', 'CONFIG_TCG'], if_true: files( - 'cputlb.c', -)) - 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', |