summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-04-03 13:52:42 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-04-03 13:52:42 +0000
commit99c46efeb9180f3fe3b522d3085d6968de8a1bda (patch)
tree1c2475ab1b06d1d05095a7d7d302310d5b2e4d3e /configure.in
parent97ac00a6874a8af8de7ebab2e15ffc862819a957 (diff)
downloadmpfr-99c46efeb9180f3fe3b522d3085d6968de8a1bda.tar.gz
-ffloat-store is a gcc option.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1805 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 59a22433b..6d47dd72c 100644
--- a/configure.in
+++ b/configure.in
@@ -155,7 +155,9 @@ int main()
exit (c == d);
}],
[AC_MSG_RESULT(yes)
- CFLAGS="$CFLAGS -ffloat-store"
+ if test -n "$GCC"; then
+ CFLAGS="$CFLAGS -ffloat-store"
+ fi
AC_DEFINE(USE_EXTENDED)],
AC_MSG_RESULT(no),
AC_MSG_RESULT(no)