On 1/23/21 3:31 PM, Paolo Bonzini wrote: > Make CONFIG_TCG_INTERPRETER a Meson option, and enable TCI (though with > a warning) if the host CPU is unsupported, making it more similar to > other --enable-* options. > > Remove TCG-specific include paths from !CONFIG_TCG builds. > > Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> > --- > configure | 11 +++-------- > disas/meson.build | 2 -- > meson.build | 46 +++++++++++++++++++++++++--------------------- > meson_options.txt | 2 ++ > 4 files changed, 30 insertions(+), 31 deletions(-)
I spent 2h bisecting until: 23a77b2d18b84e410478e88f11c54911f7a649fc is the first bad commit commit 23a77b2d18b84e410478e88f11c54911f7a649fc Author: Paolo Bonzini <pbonz...@redhat.com> Date: Mon Dec 14 12:01:45 2020 +0100 build-system: clean up TCG/TCI configury Make CONFIG_TCG_INTERPRETER a Meson option, and enable TCI (though with a warning) if the host CPU is unsupported, making it more similar to other --enable-* options. Remove TCG-specific include paths from !CONFIG_TCG builds. Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> to realize I need to re-bisect from here now including: commit c6fbea47664466e526e40300568324ef77e5f2cc Author: Richard Henderson <richard.hender...@linaro.org> Date: Sun Jan 24 11:10:55 2021 -1000 configure: Fix --enable-tcg-interpreter The configure option was backward, and we failed to pass the value on to meson. Fixes: 23a77b2d18b ("build-system: clean up TCG/TCI configury") Tested-by: Stefan Weil <s...@weilnetz.de> Reviewed-by: Alex Bennée <alex.ben...@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4...@amsat.org> Reviewed-by: Daniel P. Berrangé <berra...@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <phi...@redhat.com> Signed-off-by: Richard Henderson <richard.hender...@linaro.org> Sigh.