2019-07-26 08:02:31 +00:00
|
|
|
common_ss.add(when: 'CONFIG_ALPHA_DIS', if_true: files('alpha.c'))
|
2021-02-08 05:45:55 +00:00
|
|
|
common_ss.add(when: 'CONFIG_HEXAGON_DIS', if_true: files('hexagon.c'))
|
2019-07-26 08:02:31 +00:00
|
|
|
common_ss.add(when: 'CONFIG_HPPA_DIS', if_true: files('hppa.c'))
|
|
|
|
common_ss.add(when: 'CONFIG_M68K_DIS', if_true: files('m68k.c'))
|
|
|
|
common_ss.add(when: 'CONFIG_MICROBLAZE_DIS', if_true: files('microblaze.c'))
|
2023-01-10 08:49:42 +00:00
|
|
|
common_ss.add(when: 'CONFIG_MIPS_DIS', if_true: files('mips.c', 'nanomips.c'))
|
2023-06-12 11:10:33 +00:00
|
|
|
common_ss.add(when: 'CONFIG_RISCV_DIS', if_true: files(
|
|
|
|
'riscv.c',
|
2023-06-12 11:10:34 +00:00
|
|
|
'riscv-xthead.c',
|
2023-06-12 11:10:33 +00:00
|
|
|
'riscv-xventana.c'
|
|
|
|
))
|
2019-07-26 08:02:31 +00:00
|
|
|
common_ss.add(when: 'CONFIG_SH4_DIS', if_true: files('sh4.c'))
|
|
|
|
common_ss.add(when: 'CONFIG_SPARC_DIS', if_true: files('sparc.c'))
|
|
|
|
common_ss.add(when: 'CONFIG_XTENSA_DIS', if_true: files('xtensa.c'))
|
2023-05-03 07:23:26 +00:00
|
|
|
common_ss.add(when: capstone, if_true: [files('capstone.c'), capstone])
|
2024-04-05 06:46:32 +00:00
|
|
|
common_ss.add(when: 'CONFIG_TCG', if_true: files(
|
|
|
|
'disas-host.c',
|
|
|
|
'disas-target.c',
|
|
|
|
'objdump.c'
|
|
|
|
))
|
|
|
|
common_ss.add(files('disas-common.c'))
|
2023-06-13 13:33:47 +00:00
|
|
|
system_ss.add(files('disas-mon.c'))
|
2023-05-09 16:27:48 +00:00
|
|
|
specific_ss.add(capstone)
|