[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 02/14] configure: Avoid building TCG when not needed
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 02/14] configure: Avoid building TCG when not needed |
Date: |
Fri, 13 Mar 2020 19:36:40 +0100 |
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.
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
configure | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/configure b/configure
index eb49bb6680..c2ffcb0431 100755
--- a/configure
+++ b/configure
@@ -1650,6 +1650,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=""
--
2.21.1
[PATCH 02/14] configure: Avoid building TCG when not needed,
Philippe Mathieu-Daudé <=
[PATCH 03/14] tests/Makefile: Only display TCG-related tests when TCG is available, Philippe Mathieu-Daudé, 2020/03/13
[PATCH 04/14] tests/Makefile: Restrict some softmmu-only tests, Philippe Mathieu-Daudé, 2020/03/13
[PATCH 05/14] stubs/Makefile: Reduce the user-mode object list, Philippe Mathieu-Daudé, 2020/03/13
[PATCH 06/14] util/Makefile: Reduce the user-mode object list, Philippe Mathieu-Daudé, 2020/03/13