From: Song Gao Date: Tue, 2 Jan 2024 02:01:59 +0000 (+0800) Subject: target/loongarch/meson: move gdbstub.c to loongarch.ss X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=beb60920a1f7ffbf82b5ac72d5fc2b1ea0a65c66;p=qemu.git target/loongarch/meson: move gdbstub.c to loongarch.ss gdbstub.c is not specific to TCG and can be used by other accelerators, such as KVM accelerator Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Song Gao Message-Id: <20240102020200.3462097-1-gaosong@loongson.cn> --- diff --git a/target/loongarch/meson.build b/target/loongarch/meson.build index 18e8191e2b..b3a0fb12fb 100644 --- a/target/loongarch/meson.build +++ b/target/loongarch/meson.build @@ -3,6 +3,7 @@ gen = decodetree.process('insns.decode') loongarch_ss = ss.source_set() loongarch_ss.add(files( 'cpu.c', + 'gdbstub.c', )) loongarch_tcg_ss = ss.source_set() loongarch_tcg_ss.add(gen) @@ -10,7 +11,6 @@ loongarch_tcg_ss.add(files( 'fpu_helper.c', 'op_helper.c', 'translate.c', - 'gdbstub.c', 'vec_helper.c', )) loongarch_tcg_ss.add(zlib)