summary refs log tree commit diff stats
path: root/target/mips/tcg/system/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'target/mips/tcg/system/meson.build')
-rw-r--r--target/mips/tcg/system/meson.build12
1 files changed, 12 insertions, 0 deletions
diff --git a/target/mips/tcg/system/meson.build b/target/mips/tcg/system/meson.build
new file mode 100644
index 0000000000..911341ac37
--- /dev/null
+++ b/target/mips/tcg/system/meson.build
@@ -0,0 +1,12 @@
+mips_system_ss.add(files(
+  'cp0_helper.c',
+  'special_helper.c',
+  'tlb_helper.c',
+))
+mips_system_ss.add(when: ['CONFIG_SEMIHOSTING'],
+  if_true: files('mips-semi.c'),
+  if_false: files('semihosting-stub.c')
+)
+mips_system_ss.add(when: 'TARGET_MIPS64', if_true: files(
+  'lcsr_helper.c',
+))