diff options
author | 2014-10-26 17:39:52 +0000 | |
---|---|---|
committer | 2014-10-26 17:39:52 +0000 | |
commit | 7370214c217869a8d70bd3a13b333acafbb4d43c (patch) | |
tree | d7eaae5de04bd71178ebd65c0eaeeb9db7c4187a /eclass/toolchain.eclass | |
parent | Version bump, define CACHE_NAME_SUFFIX to use a static config location (bug #... (diff) | |
download | historical-7370214c217869a8d70bd3a13b333acafbb4d43c.tar.gz historical-7370214c217869a8d70bd3a13b333acafbb4d43c.tar.bz2 historical-7370214c217869a8d70bd3a13b333acafbb4d43c.zip |
[QA] Code from revisions 1.636 and 1.640 commented out. This causes several file collisions, see bug 526144 and related bugs.
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index ddd4e30b3f04..384edd3c155b 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.643 2014/10/24 05:32:14 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.644 2014/10/26 17:39:52 ulm Exp $ # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -910,15 +910,15 @@ toolchain_src_configure() { confgcc+=( --enable-libstdcxx-time ) fi - # Turn on the -Wl,--build-id flag by default for ELF targets. #525942 - # This helps with locating debug files. - case ${CTARGET} in - *-linux-*|*-elf|*-eabi) - tc_version_is_at_least 4.5 && confgcc+=( - --enable-linker-build-id - ) - ;; - esac + # # Turn on the -Wl,--build-id flag by default for ELF targets. #525942 + # # This helps with locating debug files. + # case ${CTARGET} in + # *-linux-*|*-elf|*-eabi) + # tc_version_is_at_least 4.5 && confgcc+=( + # --enable-linker-build-id + # ) + # ;; + # esac # newer gcc versions like to bootstrap themselves with C++, # so we need to manually disable it ourselves |