Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
---
target/arm/tcg/meson.build | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/target/arm/tcg/meson.build b/target/arm/tcg/meson.build
index 8d9112f6da2..89c3b476822 100644
--- a/target/arm/tcg/meson.build
+++ b/target/arm/tcg/meson.build
@@ -16,9 +16,10 @@ neon_d = [
decodetree.process('neon-ls.decode', extra_args: '--decode=disas_neon_ls'),
]
+mve_d = decodetree.process('mve.decode', extra_args: '--decode=disas_mve')
+
gen_a32 = [
decodetree.process('m-nocp.decode', extra_args: '--decode=disas_m_nocp'),
- decodetree.process('mve.decode', extra_args: '--decode=disas_mve'),
decodetree.process('a32.decode', extra_args: '--static-decode=disas_a32'),
decodetree.process('a32-uncond.decode', extra_args: '--static-decode=disas_a32_uncond'),
decodetree.process('t32.decode', extra_args: '--static-decode=disas_t32'),
@@ -34,7 +35,6 @@ arm_ss.add(files(
'gengvec.c',
'translate.c',
'translate-m-nocp.c',
- 'translate-mve.c',
'm_helper.c',
'mve_helper.c',
'op_helper.c',
@@ -65,6 +65,7 @@ arm_common_ss.add(files(
))
arm_common_system_ss.add(
+ mve_d,
neon_d,
vfp_d,
files(
@@ -75,12 +76,14 @@ arm_common_system_ss.add(
'psci.c',
'tlb_helper.c',
'tlb-insns.c',
+ 'translate-mve.c',
'translate-neon.c',
'translate-vfp.c',
'vec_helper.c',
'vfp_helper.c',
))
arm_user_ss.add(
+ mve_d,
neon_d,
vfp_d,
files(
@@ -88,6 +91,7 @@ arm_user_ss.add(
'hflags.c',
'neon_helper.c',
'tlb_helper.c',
+ 'translate-mve.c',
'translate-neon.c',
'translate-vfp.c',
'vec_helper.c',
--
2.47.3