diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-04-10 04:28:37 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-04-10 04:28:37 +0000 |
commit | 6bea620cf51e8ac1de681b33309441aa31cdfe74 (patch) | |
tree | 1fc1ec5575ca2f605fbb73d2527cc991cfad9805 /eclass | |
parent | add support for freebsd ldso hints (diff) | |
download | historical-6bea620cf51e8ac1de681b33309441aa31cdfe74.tar.gz historical-6bea620cf51e8ac1de681b33309441aa31cdfe74.tar.bz2 historical-6bea620cf51e8ac1de681b33309441aa31cdfe74.zip |
default multilib support to on for everyone but linux targets #126823
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index aea6376d502a..0cc481c833fe 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.262 2006/04/10 02:15:38 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.263 2006/04/10 04:28:37 vapier Exp $ HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" LICENSE="GPL-2 LGPL-2.1" @@ -1027,9 +1027,9 @@ gcc-library-configure() { gcc-compiler-configure() { # multilib support - if is_multilib || [[ ${CTARGET} == "avr" ]] ; then + if is_multilib ; then confgcc="${confgcc} --enable-multilib" - else + elif [[ ${CTARGET} == *-linux* ]] ; then confgcc="${confgcc} --disable-multilib" fi |