diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-02 11:43:46 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-02 11:43:46 +0000 |
commit | 87e200413ff278de07c47cb21bbbbaac238864ec (patch) | |
tree | 7571e73ba6cb3202642afdc4b34430a313e9a3a3 /gcc/doc/install.texi | |
parent | 32819af552a46e7ee5814325586cabb5b86c9890 (diff) | |
download | gcc-87e200413ff278de07c47cb21bbbbaac238864ec.tar.gz |
2012-07-02 Richard Guenther <rguenther@suse.de>
Michael Matz <matz@suse.de>
Tobias Grosser <tobias@grosser.es>
Sebastian Pop <sebpop@gmail.com>
config/
* cloog.m4: Set up to work against ISL only.
* isl.m4: New file.
* Makefile.def: Add ISL host module, remove PPL host module.
Adjust ClooG host module to use the proper ISL.
* Makefile.tpl: Pass ISL include flags instead of PPL ones.
* configure.ac: Include config/isl.m4. Add ISL host library,
remove PPL. Remove PPL configury, add ISL configury, adjust
ClooG configury.
* Makefile.in: Regenerated.
* configure: Likewise.
gcc/
* Makefile.in: Remove PPL flags in favor of ISL ones.
(BACKENDLIBS): Remove PPL libs.
(INCLUDES): Remove PPL includes in favor of ISL ones.
(graphite-clast-to-gimple.o): Remove graphite-dependences.h and
graphite-cloog-compat.h dependencies.
(graphite-dependences.o): Likewise.
(graphite-poly.o): Likewise.
* configure.ac: Declare ISL vars instead of PPL ones.
* configure: Regenerated.
* doc/install.texi: Replace PPL requirement documentation
with ISL one.
* graphite-blocking.c: Remove PPL code, add ISL equivalent.
* graphite-clast-to-gimple.c: Likewise.
* graphite-dependences.c: Likewise.
* graphite-interchange.c: Likewise.
* graphite-poly.h: Likewise.
* graphite-poly.c: Likewise.
* graphite-sese-to-poly.c: Likewise.
* graphite.c: Likewise.
* graphite-scop-detection.c: Re-arrange includes.
* graphite-cloog-util.c: Remove.
* graphite-cloog-util.h: Likewise.
* graphite-ppl.h: Likewise.
* graphite-ppl.c: Likewise.
* graphite-dependences.h: Likewise.
libgomp/
* testsuite/libgomp.graphite/force-parallel-4.c: Adjust.
* testsuite/libgomp.graphite/force-parallel-5.c: Likewise.
* testsuite/libgomp.graphite/force-parallel-7.c: Likewise.
* testsuite/libgomp.graphite/force-parallel-8.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189156 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/install.texi')
-rw-r--r-- | gcc/doc/install.texi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index b262bee76c9..436f6567d53 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -362,12 +362,12 @@ installed but it is not in your default library search path, the @option{--with-mpc} configure option should be used. See also @option{--with-mpc-lib} and @option{--with-mpc-include}. -@item Parma Polyhedra Library (PPL) version 0.11 +@item ISL Library 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/}. +It can be downloaded from @uref{ftp://gcc.gnu.org/pub/gcc/infrastructure/}. -The @option{--with-ppl} configure option should be used if PPL is not +The @option{--with-isl} configure option should be used if ISL is not installed in your default library search path. @item CLooG 0.17.0 @@ -1630,14 +1630,14 @@ a cross compiler, they will not be used to configure target libraries. @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 +If you do not have ISL 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-isl=@/@var{islinstalldir}}, @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-isl=@/@var{islinstalldir}} option is shorthand for +@option{--with-isl-lib=@/@var{islinstalldir}/lib} and +@option{--with-isl-include=@/@var{islinstalldir}/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 |