summaryrefslogtreecommitdiff
path: root/libgcc
diff options
context:
space:
mode:
authorkrebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4>2010-09-03 13:16:24 +0000
committerkrebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4>2010-09-03 13:16:24 +0000
commit2b181794a628ff52a8fc9c20dded8706bd08360d (patch)
tree518bd25190a71069077b016a87138a6bdb6d1300 /libgcc
parent2334082135103a829d63e4da456d50e802ddfa75 (diff)
downloadgcc-2b181794a628ff52a8fc9c20dded8706bd08360d.tar.gz
gcc/
2010-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * configure: Regenerate. * aclocal.m4: Regenerate. libdecnumber/ 2010-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * configure: Regenerate. * aclocal.m4: Regenerate. libgcc/ 2010-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@163816 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r--libgcc/configure34
1 files changed, 23 insertions, 11 deletions
diff --git a/libgcc/configure b/libgcc/configure
index f5224276693..e6d42a1e46d 100644
--- a/libgcc/configure
+++ b/libgcc/configure
@@ -3634,6 +3634,7 @@ $as_echo "$libgcc_cv_dfp" >&6; }
decimal_float=$libgcc_cv_dfp
+
# Check whether --enable-decimal-float was given.
if test "${enable_decimal_float+set}" = set; then :
enableval=$enable_decimal_float;
@@ -3646,10 +3647,12 @@ Valid choices are 'yes', 'bid', 'dpd', and 'no'." "$LINENO" 5 ;;
else
case $host in
- powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux*)
+ powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux*)
enable_decimal_float=yes
;;
*)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: decimal float is not supported for this target" >&5
+$as_echo "$as_me: WARNING: decimal float is not supported for this target" >&2;}
enable_decimal_float=no
;;
esac
@@ -3658,16 +3661,25 @@ fi
# x86's use BID format instead of DPD
-if test x$enable_decimal_float = xyes; then
- case $host in
- i?86*-*-linux* | x86_64*-*-linux*)
- enable_decimal_float=bid
- ;;
- *)
- enable_decimal_float=dpd
- ;;
- esac
-fi
+case x$enable_decimal_float in
+ xyes)
+ case $host in
+ i?86*-*-* | x86_64*-*-*)
+ enable_decimal_float=bid
+ ;;
+ *)
+ enable_decimal_float=dpd
+ ;;
+ esac
+ ;;
+ xno)
+ # ENABLE_DECIMAL_FLOAT is set to 0. But we have to have proper
+ # dependency on libdecnumber.
+ enable_decimal_float=dpd
+ ;;
+esac
+
+
# Check for fixed-point support.