install.texi (Prerequisites): Document PPL and CLooG-PPL dependences and the configure options.
2008-12-17 Sebastian Pop <sebastian.pop@amd.com> * doc/install.texi (Prerequisites): Document PPL and CLooG-PPL dependences and the configure options. (Configuration): Document --with-cloog, --with-ppl, --with-cloog-lib, --with-ppl-lib, --with-cloog-incude, --with-ppl-include. From-SVN: r142798
This commit is contained in:
parent
d711bdded5
commit
3aea2d1ce2
|
@ -1,3 +1,10 @@
|
|||
2008-12-17 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
* doc/install.texi (Prerequisites): Document PPL and CLooG-PPL
|
||||
dependences and the configure options.
|
||||
(Configuration): Document --with-cloog, --with-ppl, --with-cloog-lib,
|
||||
--with-ppl-lib, --with-cloog-incude, --with-ppl-include.
|
||||
|
||||
2008-12-17 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR middle-end/38556
|
||||
|
|
|
@ -327,6 +327,24 @@ Alternatively, if a MPFR source distribution is found in a subdirectory
|
|||
of your GCC sources named @file{mpfr}, it will be built together with
|
||||
GCC@.
|
||||
|
||||
@item Parma Polyhedra Library (PPL) version 0.10
|
||||
|
||||
Necessary to build GCC with the Graphite loop optimizations.
|
||||
It can be downloaded from @uref{http://www.cs.unipr.it/ppl/Download/}.
|
||||
|
||||
The @option{--with-ppl} configure option should be used if PPL is not
|
||||
installed in your default library search path.
|
||||
|
||||
@item CLooG-PPL version 0.15
|
||||
|
||||
Necessary to build GCC with the Graphite loop optimizations. It can
|
||||
be downloaded from @uref{ftp://gcc.gnu.org/pub/gcc/infrastructure/}.
|
||||
The code in @file{cloog-ppl-0.15.tar.gz} comes from a branch of CLooG
|
||||
available from @uref{http://repo.or.cz/w/cloog-ppl.git}. CLooG-PPL
|
||||
should be configured with @option{--with-ppl}.
|
||||
|
||||
The @option{--with-cloog} configure option should be used if CLooG is
|
||||
not installed in your default library search path.
|
||||
|
||||
@item @command{jar}, or InfoZIP (@command{zip} and @command{unzip})
|
||||
|
||||
|
@ -1428,6 +1446,26 @@ GCC, you can explicitly specify the directory where they are installed
|
|||
shorthand assumptions are not correct, you can use the explicit
|
||||
include and lib options directly.
|
||||
|
||||
@item --with-ppl=@var{pathname}
|
||||
@itemx --with-ppl-include=@var{pathname}
|
||||
@itemx --with-ppl-lib=@var{pathname}
|
||||
@itemx --with-cloog=@var{pathname}
|
||||
@itemx --with-cloog-include=@var{pathname}
|
||||
@itemx --with-cloog-lib=@var{pathname}
|
||||
If you do not have PPL (the Parma Polyhedra Library) and the CLooG
|
||||
libraries installed in a standard location and you want to build GCC,
|
||||
you can explicitly specify the directory where they are installed
|
||||
(@samp{--with-ppl=@var{pplinstalldir}},
|
||||
@samp{--with-cloog=@var{clooginstalldir}}). The
|
||||
@option{--with-ppl=@var{pplinstalldir}} option is shorthand for
|
||||
@option{--with-ppl-lib=@var{pplinstalldir}/lib} and
|
||||
@option{--with-ppl-include=@var{pplinstalldir}/include}. Likewise the
|
||||
@option{--with-cloog=@var{clooginstalldir}} option is shorthand for
|
||||
@option{--with-cloog-lib=@var{clooginstalldir}/lib} and
|
||||
@option{--with-cloog-include=@var{clooginstalldir}/include}. If these
|
||||
shorthand assumptions are not correct, you can use the explicit
|
||||
include and lib options directly.
|
||||
|
||||
@item --with-debug-prefix-map=@var{map}
|
||||
Convert source directory names using @option{-fdebug-prefix-map} when
|
||||
building runtime libraries. @samp{@var{map}} is a space-separated
|
||||
|
|
Loading…
Reference in New Issue