diff options
author | 2014-05-18 20:28:27 +0000 | |
---|---|---|
committer | 2014-05-18 20:28:27 +0000 | |
commit | e03a446e791486d5f6fe46900a6e3d0fab58798c (patch) | |
tree | 97e1b7d967ad5bb2609fcf501115ed101d4976b6 /eclass/toolchain.eclass | |
parent | Version bump. (diff) | |
download | historical-e03a446e791486d5f6fe46900a6e3d0fab58798c.tar.gz historical-e03a446e791486d5f6fe46900a6e3d0fab58798c.tar.bz2 historical-e03a446e791486d5f6fe46900a6e3d0fab58798c.zip |
drop treelang as it only applies to <gcc-4.3 and no longer builds with recent bison #510344
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index d970e174a505..48798f3afdf2 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.625 2014/05/15 05:18:33 rhill Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.626 2014/05/18 20:28:27 vapier Exp $ # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -835,7 +835,6 @@ toolchain_src_configure() { fi is_objcxx && GCC_LANG+=",obj-c++" fi - is_treelang && GCC_LANG+=",treelang" # fortran support just got sillier! the lang value can be f77 for # fortran77, f95 for fortran95, or just plain old fortran for the @@ -2111,14 +2110,6 @@ is_objcxx() { use cxx && use_if_iuse objc++ } -is_treelang() { - use_if_iuse boundschecking && return 1 #260532 - is_crosscompile && return 1 #199924 - gcc-lang-supported treelang || return 1 - #use treelang - return 0 -} - # Grab a variable from the build system (taken from linux-info.eclass) get_make_var() { local var=$1 makefile=${2:-${WORKDIR}/build/Makefile} |