aboutsummaryrefslogtreecommitdiff
path: root/target/mips/meson.build
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-04-13 11:51:53 +0200
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-05-02 16:49:35 +0200
commitad520a978447bca03374b71e90d948826e669603 (patch)
tree611461321ed03de6799a07e4f6a96e31a8d5c0a3 /target/mips/meson.build
parent8b28cde403468c2f8feff4d97a9c2b98ea3d8adb (diff)
downloadqemu-ad520a978447bca03374b71e90d948826e669603.zip
qemu-ad520a978447bca03374b71e90d948826e669603.tar.gz
qemu-ad520a978447bca03374b71e90d948826e669603.tar.bz2
target/mips: Move sysemu TCG-specific code to tcg/sysemu/ subfolder
Move cp0_helper.c and mips-semi.c to the new tcg/sysemu/ folder, adapting the Meson machinery. Move the opcode definitions to tcg/sysemu_helper.h.inc. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210428170410.479308-20-f4bug@amsat.org>
Diffstat (limited to 'target/mips/meson.build')
-rw-r--r--target/mips/meson.build5
1 files changed, 0 insertions, 5 deletions
diff --git a/target/mips/meson.build b/target/mips/meson.build
index 9a50793..a55af1c 100644
--- a/target/mips/meson.build
+++ b/target/mips/meson.build
@@ -47,11 +47,6 @@ endif
mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
-mips_softmmu_ss.add(when: 'CONFIG_TCG', if_true: files(
- 'cp0_helper.c',
- 'mips-semi.c',
-))
-
mips_ss.add_all(when: 'CONFIG_TCG', if_true: [mips_tcg_ss])
target_arch += {'mips': mips_ss}