mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
target/arm/cpu32-stubs.c: compile file twice (user, system)
It could be squashed with commit introducing it, but I would prefer to introduce target/arm/cpu.c first. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-id: 20250512180502.2395029-12-pierrick.bouvier@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
committed by
Peter Maydell
parent
5ae609b629
commit
b757ae80c6
@@ -11,13 +11,9 @@ arm_ss.add(zlib)
|
||||
arm_ss.add(when: 'CONFIG_KVM', if_true: files('hyp_gdbstub.c', 'kvm.c'), if_false: files('kvm-stub.c'))
|
||||
arm_ss.add(when: 'CONFIG_HVF', if_true: files('hyp_gdbstub.c'))
|
||||
|
||||
arm_ss.add(when: 'TARGET_AARCH64',
|
||||
if_true: files(
|
||||
'cpu64.c',
|
||||
'gdbstub64.c'),
|
||||
if_false: files(
|
||||
'cpu32-stubs.c'),
|
||||
)
|
||||
arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
|
||||
'cpu64.c',
|
||||
'gdbstub64.c'))
|
||||
|
||||
arm_system_ss = ss.source_set()
|
||||
arm_common_system_ss = ss.source_set()
|
||||
@@ -32,8 +28,12 @@ arm_system_ss.add(files(
|
||||
|
||||
arm_user_ss = ss.source_set()
|
||||
arm_user_ss.add(files('cpu.c'))
|
||||
arm_user_ss.add(when: 'TARGET_AARCH64', if_false: files(
|
||||
'cpu32-stubs.c'))
|
||||
|
||||
arm_common_system_ss.add(files('cpu.c'), capstone)
|
||||
arm_common_system_ss.add(when: 'TARGET_AARCH64', if_false: files(
|
||||
'cpu32-stubs.c'))
|
||||
|
||||
subdir('hvf')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user