diff options
author | Xiaojuan Yang | 2022-06-06 14:43:12 +0200 |
---|---|---|
committer | Richard Henderson | 2022-06-06 20:09:03 +0200 |
commit | 7e1c521e2a108a4ffceecd8bec846625c956c8f8 (patch) | |
tree | 6a52e33b615849a72d77c667fac859c537efe5c2 /target/loongarch/meson.build | |
parent | target/loongarch: Implement qmp_query_cpu_definitions() (diff) | |
download | qemu-7e1c521e2a108a4ffceecd8bec846625c956c8f8.tar.gz qemu-7e1c521e2a108a4ffceecd8bec846625c956c8f8.tar.xz qemu-7e1c521e2a108a4ffceecd8bec846625c956c8f8.zip |
target/loongarch: Add MMU support for LoongArch CPU.
Signed-off-by: Xiaojuan Yang <yangxiaojuan@loongson.cn>
Signed-off-by: Song Gao <gaosong@loongson.cn>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220606124333.2060567-23-yangxiaojuan@loongson.cn>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/loongarch/meson.build')
-rw-r--r-- | target/loongarch/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/loongarch/meson.build b/target/loongarch/meson.build index 103f36ee15..435cc75999 100644 --- a/target/loongarch/meson.build +++ b/target/loongarch/meson.build @@ -17,6 +17,7 @@ loongarch_tcg_ss.add(zlib) loongarch_softmmu_ss = ss.source_set() loongarch_softmmu_ss.add(files( 'machine.c', + 'tlb_helper.c', )) loongarch_ss.add_all(when: 'CONFIG_TCG', if_true: [loongarch_tcg_ss]) |