mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
target/openrisc: Restrict cpu_exec_interrupt() handler to sysemu
Restrict cpu_exec_interrupt() and its callees to sysemu. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210911165434.531552-17-f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
dabfe1332e
commit
250ae6dfc7
4 changed files with 8 additions and 7 deletions
|
@ -9,7 +9,6 @@ openrisc_ss.add(files(
|
|||
'exception_helper.c',
|
||||
'fpu_helper.c',
|
||||
'gdbstub.c',
|
||||
'interrupt.c',
|
||||
'interrupt_helper.c',
|
||||
'mmu.c',
|
||||
'sys_helper.c',
|
||||
|
@ -17,7 +16,10 @@ openrisc_ss.add(files(
|
|||
))
|
||||
|
||||
openrisc_softmmu_ss = ss.source_set()
|
||||
openrisc_softmmu_ss.add(files('machine.c'))
|
||||
openrisc_softmmu_ss.add(files(
|
||||
'interrupt.c',
|
||||
'machine.c',
|
||||
))
|
||||
|
||||
target_arch += {'openrisc': openrisc_ss}
|
||||
target_softmmu_arch += {'openrisc': openrisc_softmmu_ss}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue