summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-12-23 02:40:30 +0000
committerMike Frysinger <vapier@gentoo.org>2006-12-23 02:40:30 +0000
commitc783359b6fcf60c178e8c79a2669d04e5f627a23 (patch)
treea8a6d243a9cc2524a39e1e06ebedba0312482eb9 /eclass
parent2.1.2_rc4 release candidate. This is the last rc before 2.1.2 final. (diff)
downloadgentoo-2-c783359b6fcf60c178e8c79a2669d04e5f627a23.tar.gz
gentoo-2-c783359b6fcf60c178e8c79a2669d04e5f627a23.tar.bz2
gentoo-2-c783359b6fcf60c178e8c79a2669d04e5f627a23.zip
need to disable libgomp when cross-compiling with gcc-4.2+
Diffstat (limited to 'eclass')
-rw-r--r--eclass/toolchain.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index aa619b18519d..07437880aa0b 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.317 2006/12/22 13:29:45 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.318 2006/12/23 02:40:30 vapier Exp $
HOMEPAGE="http://gcc.gnu.org/"
LICENSE="GPL-2 LGPL-2.1"
@@ -1281,7 +1281,7 @@ gcc_do_configure() {
fi
if [[ ${GCCMAJOR}.${GCCMINOR} > 4.1 ]] ; then
- confgcc="${confgcc} --disable-bootstrap"
+ confgcc="${confgcc} --disable-bootstrap --disable-libgomp"
fi
elif [[ ${CHOST} != mingw* ]] ; then
confgcc="${confgcc} --enable-shared --enable-threads=posix"