From: Philippe Mathieu-Daudé Date: Fri, 22 May 2020 17:24:59 +0000 (+0200) Subject: configure: Avoid building TCG when not needed X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1cf295be5de93e984ea6f52f151141f5126537f0;p=qmiga%2Fqemu.git configure: Avoid building TCG when not needed Avoid building TCG when building only tools: ./configure --enable-tools --disable-system --disable-user This saves us from running the soft-float tests enabled since commit 76170102508. Reviewed-by: Richard Henderson Reviewed-by: Alistair Francis Reviewed-by: Laurent Vivier Tested-by: Laurent Vivier Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20200522172510.25784-3-philmd@redhat.com> Signed-off-by: Laurent Vivier --- diff --git a/configure b/configure index b969dee675..fccc56bd4d 100755 --- a/configure +++ b/configure @@ -1663,6 +1663,10 @@ if [ "$ARCH" = "unknown" ]; then linux_user="no" fi +if [ "$bsd_user" = "no" -a "$linux_user" = "no" -a "$softmmu" = "no" ] ; then + tcg="no" +fi + default_target_list="" mak_wilds=""