summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorEmilio G. Cota <cota@braap.org>2018-08-13 20:52:26 -0400
committerPaolo Bonzini <pbonzini@redhat.com>2018-10-02 19:08:51 +0200
commit0a7fa00a13f0852ec6fa83ab987a5ee7978d9867 (patch)
tree19c82192b4e21fe02584caf3e0f239597a0fae5e
parent1dbe15ef57abdf7b6a26c8e638abf6413a4b9d0c (diff)
downloadfocaccia-qemu-0a7fa00a13f0852ec6fa83ab987a5ee7978d9867.tar.gz
focaccia-qemu-0a7fa00a13f0852ec6fa83ab987a5ee7978d9867.zip
configure: enable mttcg for i386 and x86_64
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 59d1ade2d3..4fc1feaa6f 100755
--- a/configure
+++ b/configure
@@ -7024,12 +7024,14 @@ TARGET_ABI_DIR=""
 
 case "$target_name" in
   i386)
+    mttcg="yes"
     gdb_xml_files="i386-32bit.xml i386-32bit-core.xml i386-32bit-sse.xml"
     target_compiler=$cross_cc_i386
     target_compiler_cflags=$cross_cc_ccflags_i386
   ;;
   x86_64)
     TARGET_BASE_ARCH=i386
+    mttcg="yes"
     gdb_xml_files="i386-64bit.xml i386-64bit-core.xml i386-64bit-sse.xml"
     target_compiler=$cross_cc_x86_64
   ;;