summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-03-13 16:54:06 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-03-13 16:54:06 +0000
commit158142c2c2df728cfa3b5320c65534921a764f26 (patch)
tree7c9fb39e252a8028443917d906855ecb33d4e179 /configure
parent4f716dc681d1bfa78d0863499fc1f2e13f170ede (diff)
downloadqemu-158142c2c2df728cfa3b5320c65534921a764f26.tar.gz
soft float support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1332 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure b/configure
index 70da7add05..585d2114ce 100755
--- a/configure
+++ b/configure
@@ -593,6 +593,7 @@ fi
#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
mkdir -p $target_dir
+mkdir -p $target_dir/fpu
if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
mkdir -p $target_dir/nwfpe
fi
@@ -658,6 +659,10 @@ if test "$target_user_only" = "yes" ; then
echo "#define CONFIG_USER_ONLY 1" >> $config_h
fi
+if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
+ echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
+ echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
+fi
# sdl defines
if test "$target_user_only" = "no"; then