diff options
author | Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de> | 2004-06-05 16:34:56 +0200 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2004-06-05 16:34:56 +0200 |
commit | bda4d0639b5f9ccc4beda89b3bb82415688ac3ac (patch) | |
tree | 763962e41877e449f8a4c817be5472d43af748e8 /gcc/fortran | |
parent | f9fed73b66238fc369fbaa06d5a6afca5bdbe1b8 (diff) | |
download | gcc-bda4d0639b5f9ccc4beda89b3bb82415688ac3ac.zip gcc-bda4d0639b5f9ccc4beda89b3bb82415688ac3ac.tar.gz gcc-bda4d0639b5f9ccc4beda89b3bb82415688ac3ac.tar.bz2 |
re PR fortran/15478 (gfortran manual problems)
PR fortran/15478
* doc/install.texi: Document GMP as prerequisite. Document
--with-gmp and --with-gmp-dir configure options.
* fortran/gfortran.texi: Remove section 'Compiling and testing',
remove TOC reference to it.
From-SVN: r82648
Diffstat (limited to 'gcc/fortran')
-rw-r--r-- | gcc/fortran/gfortran.texi | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/gcc/fortran/gfortran.texi b/gcc/fortran/gfortran.texi index faacd0f..4637f62 100644 --- a/gcc/fortran/gfortran.texi +++ b/gcc/fortran/gfortran.texi @@ -129,8 +129,6 @@ not accurately reflect the status of the most recent @command{gfortran}. * GFORTRAN and GCC:: You can compile Fortran, C, or other programs. * GFORTRAN and G77:: Why we choose to start from scratch. * Invoking GFORTRAN:: Command options supported by @command{gfortran}. -* Compiling and Testing:: - Need-to-knows about compiling and testing. * Project Status:: Status of GFORTRAN, Roadmap, proposed extensions. * Contributing:: Helping you can help. * Standards:: Standards supported by GFORTRAN. @@ -380,63 +378,6 @@ and then build a Fortran 95 compiler out of it. @include invoke.texi @c --------------------------------------------------------------------- -@c Compiling and Testing -@c --------------------------------------------------------------------- - -@node Compiling and Testing -@chapter Compiling and Testing - -@command{gfortran} is not yet part of an official GCC release, so it is -unlikley that OS distributor will provide it. - -@menu -* Precompiled Binaries:: -* General notes about compiling GFORTRAN:: -* Testing:: -@end menu - -@node Precompiled Binaries -@section Precompiled Binaries - -Precompiled binaries for i686-pc-linux-gnu in rpm format are available from -@uref{http://people.redhat.com/dnovillo/pub/tree-ssa/snapshot/} - -@node General notes about compiling GFORTRAN -@section General notes about compiling GFORTRAN -@cindex GMP -@cindex Multiple Precision Library - -Compiling gfortran requires the presence of GMP, -the GNU Multiple Precision library version 4.0 -or better in order to do its arithmetic. -Download @code{gmp} from your favorite GNU mirror, -configure and compile it. If your OS distributor provides prepackaged -GMP libraries, you may also need the developent pacakges. - -If you do not have GMP installed in a standard system location, you may -need to configure GCC with @option{--with-gmp} or @option{--with-gmp-dir}. - -Note: GMP is only required for the compiler itself. Compiled fortran programs -do not depend on the GMP library. - -@node Testing -@section Testing -@cindex Test suite -@cindex Testing - -The number of possible Fortran 95 programs is unlimited, -and this means that gfortran has to correctly handle lots of possible inputs. -Whenever you make any changes to the compiler, -you should first test your change on a test program, -then test your change against the gfortran test suite. -In this way, we can be assured that once your fix has been made, -the problem isn't re-introduced at some later time. - -The gfortran test suite is included in the gcc source distribution. - -We also encourage you to test gfortran on your own Fortran codes. - -@c --------------------------------------------------------------------- @c Project Status @c --------------------------------------------------------------------- |