diff options
| author | hjagasia <hjagasia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-12-17 18:56:33 +0000 |
|---|---|---|
| committer | hjagasia <hjagasia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-12-17 18:56:33 +0000 |
| commit | f4d611a28bed8ce5921fa69355475ffba549a8dd (patch) | |
| tree | ade36d75bd4a105ecb0918806883dfd99d469d19 | |
| parent | 3e90f8781de89ae5bd08f98e5c845b89c9d0a01b (diff) | |
| download | ppe42-gcc-f4d611a28bed8ce5921fa69355475ffba549a8dd.tar.gz ppe42-gcc-f4d611a28bed8ce5921fa69355475ffba549a8dd.zip | |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@142798 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 7 | ||||
| -rw-r--r-- | gcc/doc/install.texi | 38 |
2 files changed, 45 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fae5a0f84ea..df3ced5215f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index 1d9247fb4a2..a218065e55c 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -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 |

