[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 19/19] target/loongarch: Add target build suport
From: |
Song Gao |
Subject: |
[PATCH v3 19/19] target/loongarch: Add target build suport |
Date: |
Fri, 27 Aug 2021 15:14:54 +0800 |
This patch add build loongarch-linux-user target support.
Signed-off-by: Song Gao <gaosong@loongson.cn>
---
target/loongarch/meson.build | 18 ++++++++++++++++++
target/meson.build | 1 +
2 files changed, 19 insertions(+)
create mode 100644 target/loongarch/meson.build
diff --git a/target/loongarch/meson.build b/target/loongarch/meson.build
new file mode 100644
index 0000000..31f9e9f
--- /dev/null
+++ b/target/loongarch/meson.build
@@ -0,0 +1,18 @@
+gen = decodetree.process('insns.decode')
+
+loongarch_ss = ss.source_set()
+loongarch_ss.add(files(
+ 'cpu.c',
+))
+loongarch_tcg_ss = ss.source_set()
+loongarch_tcg_ss.add(gen)
+loongarch_tcg_ss.add(files(
+ 'fpu_helper.c',
+ 'op_helper.c',
+ 'translate.c',
+))
+loongarch_tcg_ss.add(zlib)
+
+loongarch_ss.add_all(when: 'CONFIG_TCG', if_true: [loongarch_tcg_ss])
+
+target_arch += {'loongarch': loongarch_ss}
diff --git a/target/meson.build b/target/meson.build
index 2f69402..a53a604 100644
--- a/target/meson.build
+++ b/target/meson.build
@@ -5,6 +5,7 @@ subdir('cris')
subdir('hexagon')
subdir('hppa')
subdir('i386')
+subdir('loongarch')
subdir('m68k')
subdir('microblaze')
subdir('mips')
--
1.8.3.1
- [PATCH v3 04/19] target/loongarch: Add fixed point arithmetic instruction translation, (continued)
- [PATCH v3 04/19] target/loongarch: Add fixed point arithmetic instruction translation, Song Gao, 2021/08/27
- [PATCH v3 09/19] target/loongarch: Add fixed point extra instruction translation, Song Gao, 2021/08/27
- [PATCH v3 07/19] target/loongarch: Add fixed point load/store instruction translation, Song Gao, 2021/08/27
- [PATCH v3 10/19] target/loongarch: Add floating point arithmetic instruction translation, Song Gao, 2021/08/27
- [PATCH v3 11/19] target/loongarch: Add floating point comparison instruction translation, Song Gao, 2021/08/27
- [PATCH v3 08/19] target/loongarch: Add fixed point atomic instruction translation, Song Gao, 2021/08/27
- [PATCH v3 12/19] target/loongarch: Add floating point conversion instruction translation, Song Gao, 2021/08/27
- [PATCH v3 14/19] target/loongarch: Add floating point load/store instruction translation, Song Gao, 2021/08/27
- [PATCH v3 13/19] target/loongarch: Add floating point move instruction translation, Song Gao, 2021/08/27
- [PATCH v3 15/19] target/loongarch: Add branch instruction translation, Song Gao, 2021/08/27
- [PATCH v3 19/19] target/loongarch: Add target build suport,
Song Gao <=
- [PATCH v3 18/19] default-configs: Add loongarch linux-user support, Song Gao, 2021/08/27
- [PATCH v3 17/19] LoongArch Linux User Emulation, Song Gao, 2021/08/27
- [PATCH v3 16/19] target/loongarch: Add disassembler, Song Gao, 2021/08/27