- disable keyring option - loongarch: Change the UEFI loading mode to loongarch - target/loongarch: Fix qtest test-hmp error when KVM-only build - target/loongarch/kvm: Enable LSX/LASX extension - target/loongarch: Set cpuid CSR register only once with kvm mode - configure: Add linux header compile support for LoongArch - hw/intc/loongarch_extioi: Add vmstate post_load support - hw/intc/loongarch_extioi: Add dynamic cpu number support - hw/loongarch/virt: Set iocsr address space per-board rather than percpu - hw/intc/loongarch_ipi: Use MemTxAttrs interface for ipi ops - target/loongarch: Add loongarch kvm into meson build - target/loongarch: Implement set vcpu intr for kvm - target/loongarch: Restrict TCG-specific code - target/loongarch: Implement kvm_arch_handle_exit - target/loongarch: Implement kvm_arch_init_vcpu - target/loongarch: Implement kvm_arch_init function - target/loongarch: Implement kvm get/set registers - target/loongarch: Supplement vcpu env initial when vcpu reset - target/loongarch: Define some kvm_arch interfaces - linux-headers: Synchronize linux headers from linux v6.7.0-rc8 - linux-headers: Update to Linux v6.7-rc5 - target/loongarch: move translate modules to tcg/ - target/loongarch/meson: move gdbstub.c to loongarch.ss - target/loongarch: Add timer information dump support - hw/loongarch/virt: Align high memory base address with super page size Signed-off-by: Jiabo Feng <fengjiabo1@huawei.com> (cherry picked from commit b2263e41ffa3428f1d9f9ff6e214c8e3a19e06e8)
42 lines
1.2 KiB
Diff
42 lines
1.2 KiB
Diff
From ae65e1281aa67713bde6bce323a3a8d06f27c636 Mon Sep 17 00:00:00 2001
|
|
From: Song Gao <gaosong@loongson.cn>
|
|
Date: Tue, 2 Jan 2024 10:01:59 +0800
|
|
Subject: [PATCH] target/loongarch/meson: move gdbstub.c to loongarch.ss
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
gdbstub.c is not specific to TCG and can be used by
|
|
other accelerators, such as KVM accelerator
|
|
|
|
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
|
|
Signed-off-by: Song Gao <gaosong@loongson.cn>
|
|
Message-Id: <20240102020200.3462097-1-gaosong@loongson.cn>
|
|
---
|
|
target/loongarch/meson.build | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
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)
|
|
--
|
|
2.27.0
|
|
|