From: Alex Bennée Date: Fri, 17 May 2019 11:36:10 +0000 (+0100) Subject: include/exec: wrap cpu_ldst.h in CONFIG_TCG X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=dc069b22a1c2fe988ad58fa9de7d768bf67cc9a0;p=qemu.git include/exec: wrap cpu_ldst.h in CONFIG_TCG This gets around a build problem with --disable-tcg. Signed-off-by: Alex Bennée Reviewed-by: Richard Henderson --- diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index eadcf29d0c..d85e610e85 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -22,7 +22,9 @@ #include "cpu.h" #include "exec/tb-context.h" +#ifdef CONFIG_TCG #include "exec/cpu_ldst.h" +#endif #include "sysemu/cpus.h" /* allow to see translation results - the slowdown should be negligible, so we leave it */