diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2008-12-17 18:56:33 +0000 |
---|---|---|
committer | Harsha Jagasia <hjagasia@gcc.gnu.org> | 2008-12-17 18:56:33 +0000 |
commit | 3aea2d1ce29ba8a41d54857de2c5bcf1a4dce254 (patch) | |
tree | ade36d75bd4a105ecb0918806883dfd99d469d19 /gcc | |
parent | d711bdded5d7dbf68223b63b68edf79b1b3df9ab (diff) | |
download | gcc-3aea2d1ce29ba8a41d54857de2c5bcf1a4dce254.zip gcc-3aea2d1ce29ba8a41d54857de2c5bcf1a4dce254.tar.gz gcc-3aea2d1ce29ba8a41d54857de2c5bcf1a4dce254.tar.bz2 |
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
Diffstat (limited to 'gcc')
-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 fae5a0f..df3ced5 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 1d9247fb..a218065 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 |