aboutsummaryrefslogtreecommitdiff
path: root/target/mips/tcg/meson.build
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-04-18 15:16:06 +0200
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-05-02 16:49:34 +0200
commit0a31c16c9ce2639c8706b9f863724ba42a46f121 (patch)
tree168fd4309d419652bc2b16ee1c9219f16ef280e0 /target/mips/tcg/meson.build
parent6fe25ce58798815237307cf1924ef5b4d13cac99 (diff)
target/mips: Add simple user-mode mips_cpu_do_interrupt()
The #ifdef'ry hides that the user-mode implementation of mips_cpu_do_interrupt() simply sets exception_index = EXCP_NONE. Add this simple implementation to tcg/user/tlb_helper.c, and the corresponding Meson machinery to build this file when user emulation is configured. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210428170410.479308-14-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
new file mode 100644
index 0000000000..b74fa04303
--- /dev/null
+++ b/target/mips/tcg/meson.build
@@ -0,0 +1,3 @@
+if have_user
+ subdir('user')
+endif