diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2011-04-20 13:04:23 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-04-25 11:18:33 +0200 |
commit | 347ac8e35661eff1c2b5ec74d11ee152f2a61856 (patch) | |
tree | 5558dc8d719c7f3154047836423e9c4fd98aef5a /configure | |
parent | a1d8db07fb46e1da410ca7b4ce24a997707d4a53 (diff) | |
download | qemu-347ac8e35661eff1c2b5ec74d11ee152f2a61856.tar.gz qemu-347ac8e35661eff1c2b5ec74d11ee152f2a61856.tar.bz2 qemu-347ac8e35661eff1c2b5ec74d11ee152f2a61856.zip |
target-i386: switch to softfloat
This increase the correctness (precision, NaN values, corner cases) on
non-x86 machines, and add the possibility to handle the exception
correctly.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -3275,14 +3275,7 @@ if test ! -z "$gdb_xml_files" ; then echo "TARGET_XML_FILES=$list" >> $config_target_mak fi -case "$target_arch2" in - i386|x86_64) - echo "CONFIG_NOSOFTFLOAT=y" >> $config_target_mak - ;; - *) - echo "CONFIG_SOFTFLOAT=y" >> $config_target_mak - ;; -esac +echo "CONFIG_SOFTFLOAT=y" >> $config_target_mak if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then echo "TARGET_HAS_BFLT=y" >> $config_target_mak |