Commit b96cfc882cd00653636b6285fb9dcfbbd02a0385

Authored by aurel32
1 parent e755699d

Enable softfloat by default on PowerPC

This should probably be replaced by a configure switch.

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4169 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
configure
... ... @@ -1224,7 +1224,7 @@ if test &quot;$target_darwin_user&quot; = &quot;yes&quot; ; then
1224 1224 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1225 1225 fi
1226 1226  
1227   -if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" -o "$target_cpu" = "sparc" -o "$target_cpu" = "sparc64" -o "$target_cpu" = "sparc32plus" -o "$target_cpu" = "m68k" -o "$target_cpu" = "mips" -o "$target_cpu" = "mipsel" -o "$target_cpu" = "mipsn32" -o "$target_cpu" = "mipsn32el" -o "$target_cpu" = "mips64" -o "$target_cpu" = "mips64el"; then
  1227 +if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" -o "$target_cpu" = "sparc" -o "$target_cpu" = "sparc64" -o "$target_cpu" = "sparc32plus" -o "$target_cpu" = "m68k" -o "$target_cpu" = "mips" -o "$target_cpu" = "mipsel" -o "$target_cpu" = "mipsn32" -o "$target_cpu" = "mipsn32el" -o "$target_cpu" = "mips64" -o "$target_cpu" = "mips64el" -o "$target_cpu" = "ppc" ; then
1228 1228 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1229 1229 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1230 1230 fi
... ...