diff options
author | Ryan Hill <rhill@gentoo.org> | 2012-03-03 02:47:11 +0000 |
---|---|---|
committer | Ryan Hill <rhill@gentoo.org> | 2012-03-03 02:47:11 +0000 |
commit | 466c07b6916dc66907e7e48fc2c0667ba6cd287d (patch) | |
tree | 97843ec1959a2cfb26e7a29d7f93f5f88758f4f8 /eclass | |
parent | Prevent bundled libffi from being installed with gcj or gccgo (bug #354903 by... (diff) | |
download | historical-466c07b6916dc66907e7e48fc2c0667ba6cd287d.tar.gz historical-466c07b6916dc66907e7e48fc2c0667ba6cd287d.tar.bz2 historical-466c07b6916dc66907e7e48fc2c0667ba6cd287d.zip |
Update comment about cloog/cloog-ppl.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 12903bfeecb0..a4d267856cde 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.520 2012/03/03 02:29:41 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.521 2012/03/03 02:47:11 dirtyepic Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1058,9 +1058,13 @@ gcc_do_configure() { tc_version_is_at_least "4.3" && confgcc+=" $(use_enable fixed-point)" # Graphite support was added in 4.4, which depends on external libraries - # for optimizations. Up to 4.6 we use cloog-ppl (cloog fork with Parma PPL - # backend). Later versions will use upstream cloog with the ISL backend. We - # disable the PPL version check so we can use >=ppl-0.11. + # for optimizations. Current versions use cloog-ppl (cloog fork with Parma + # PPL backend). Sometime in the future we will use upstream cloog with the + # ISL backend (note: PPL will still be a requirement). cloog-ppl's include + # path was modified to prevent collisions between the two packages (library + # names are different). + # + # We disable the PPL version check so we can use >=ppl-0.11. if tc_version_is_at_least "4.4"; then confgcc+=" $(use_with graphite ppl)" confgcc+=" $(use_with graphite cloog)" |