aboutsummaryrefslogtreecommitdiff
path: root/target/mips/tcg/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/tcg/meson.build
parent8b28cde403468c2f8feff4d97a9c2b98ea3d8adb (diff)
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/tcg/meson.build')
-rw-r--r--target/mips/tcg/meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/target/mips/tcg/meson.build b/target/mips/tcg/meson.build
index b74fa04303..2cffc5a5ac 100644
--- a/target/mips/tcg/meson.build
+++ b/target/mips/tcg/meson.build
@@ -1,3 +1,6 @@
if have_user
subdir('user')
endif
+if have_system
+ subdir('sysemu')
+endif