aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2004-08-03 21:11:29 +0000
committerPaul Brook <pbrook@gcc.gnu.org>2004-08-03 21:11:29 +0000
commitbebf829d88d1bc57f2153ceb4f45fb2ce100b1d9 (patch)
treebe3b88be8ac1ec9e4d16cb1847fbe7579b0cb697 /gcc
parentbf7d3350b95942c74f53588476c2a76b52c9dfa6 (diff)
downloadgcc-bebf829d88d1bc57f2153ceb4f45fb2ce100b1d9.zip
gcc-bebf829d88d1bc57f2153ceb4f45fb2ce100b1d9.tar.gz
gcc-bebf829d88d1bc57f2153ceb4f45fb2ce100b1d9.tar.bz2
configure.in: Check for MPFR as well as GMP.
* configure.in: Check for MPFR as well as GMP. * configure: Regenerate. * gcc/doc/install.texi: Document MPFR requirement. From-SVN: r85503
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/install.texi22
2 files changed, 21 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9d0199d..a0af7f6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2004-08-03 Paul Brook <paul@codesourcery.com>
+
+ * gcc/doc/install.texi: Document MPFR requirement.
+
2004-07-30 Maciej W. Rozycki <macro@linux-mips.org>
* aclocal.m4 (gcc_AC_FUNC_MMAP_BLACKLIST): Check for <sys/mman.h>
diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi
index 9c7d010..d941d21 100644
--- a/gcc/doc/install.texi
+++ b/gcc/doc/install.texi
@@ -291,6 +291,15 @@ Necessary to build the Fortran frontend. If you don't have it
installed in your library search path, you will have to configure with
the @option{--with-gmp} or @option{--with-gmp-dir} configure option.
+@item MPFR Library
+
+Necessary to build the Fortran frontend. It can be downloaded from
+@uref{http://http://www.mpfr.org/}. It is also included in the current GMP
+release (4.1.3) when configured with @option{--enable-mpfr}.
+
+The @option{--with-mpfr} or @option{--with-mpfr-dir} configure option should
+be used if your MPFR Library is not installed in your library search path.
+
@end table
@@ -1204,12 +1213,15 @@ The following options apply to the build of the Fortran front end.
@table @code
@item --with-gmp=@var{pathname}
+@itemx --with-mpfr=@var{pathname}
@itemx --with-gmp-dir=@var{pathname}
-If you don't have GMP (the GNU Multiple Precision library) installed
-in a standard location and you want to build the Fortran front-end,
-you can explicitly specify the directory where GMP is installed
-(@samp{--with-gmp=gmpinstalldir}) or where you built the GMP library without
-installing (@samp{--with-gmp-dir=gmpbuilddir}).
+@itemx --with-mpfr-dir=@var{pathname}
+If you don't have GMP (the GNU Multiple Precision library) and the MPFR
+Libraries installed in a standard location and you want to build the Fortran
+front-end, you can explicitly specify the directory where they are installed
+(@samp{--with-gmp=gmpinstalldir}, @samp{--with-mpfr=mpfrinstalldir}) or where
+you built them without installing (@samp{--with-gmp-dir=gmpbuilddir},
+@samp{--with-mpfr-dir=gmpbuilddir}).
@end table