Re: [PATCH-for-8.0] target/arm: Restrict arm_cpu_exec_interrupt() to TCG accelerator

2022-12-12 Thread Peter Maydell
On Fri, 9 Dec 2022 at 11:08, Philippe Mathieu-Daudé wrote: > > When building with --disable-tcg on Darwin we get: > > target/arm/cpu.c:725:16: error: incomplete definition of type 'struct > TCGCPUOps' > cc->tcg_ops->do_interrupt(cs); > ~~~^ > > Commit 083afd18a9 ("target/arm: Re

Re: [PATCH-for-8.0] target/arm: Restrict arm_cpu_exec_interrupt() to TCG accelerator

2022-12-09 Thread Fabiano Rosas
Philippe Mathieu-Daudé writes: > When building with --disable-tcg on Darwin we get: > > target/arm/cpu.c:725:16: error: incomplete definition of type 'struct > TCGCPUOps' > cc->tcg_ops->do_interrupt(cs); > ~~~^ > > Commit 083afd18a9 ("target/arm: Restrict cpu_exec_interrupt() >

[PATCH-for-8.0] target/arm: Restrict arm_cpu_exec_interrupt() to TCG accelerator

2022-12-09 Thread Philippe Mathieu-Daudé
When building with --disable-tcg on Darwin we get: target/arm/cpu.c:725:16: error: incomplete definition of type 'struct TCGCPUOps' cc->tcg_ops->do_interrupt(cs); ~~~^ Commit 083afd18a9 ("target/arm: Restrict cpu_exec_interrupt() handler to sysemu") limited this block to system