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-Tag: v4.2.0-rc0~20^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc069b22a1c2fe988ad58fa9de7d768bf67cc9a0;p=thirdparty%2Fqemu.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 eadcf29d0c4..d85e610e85b 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 */