summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Martin <gmsoft@gentoo.org>2004-12-22 21:46:09 +0000
committerGuy Martin <gmsoft@gentoo.org>2004-12-22 21:46:09 +0000
commit7a64a1f4d86557c3373634002261f2d1205c69d9 (patch)
treefbd3b91a7435d652af6cf46c2704f14c69d40c4f /eclass/mozconfig.eclass
parentcorrect fix for #74770 (Manifest recommit) (diff)
downloadgentoo-2-7a64a1f4d86557c3373634002261f2d1205c69d9.tar.gz
gentoo-2-7a64a1f4d86557c3373634002261f2d1205c69d9.tar.bz2
gentoo-2-7a64a1f4d86557c3373634002261f2d1205c69d9.zip
Forcing --enable-optimize=-O0 on hppa.
Diffstat (limited to 'eclass/mozconfig.eclass')
-rw-r--r--eclass/mozconfig.eclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/mozconfig.eclass b/eclass/mozconfig.eclass
index 8cc8d6bf8746..242b76107ec5 100644
--- a/eclass/mozconfig.eclass
+++ b/eclass/mozconfig.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig.eclass,v 1.4 2004/11/30 23:12:07 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig.eclass,v 1.5 2004/12/22 21:46:09 gmsoft Exp $
#
# mozconfig.eclass: the new mozilla.eclass
@@ -81,6 +81,8 @@ mozconfig_init() {
# Set optimization level based on CFLAGS
if is-flag -O0; then
mozconfig_annotate "from CFLAGS" --enable-optimize=-O0
+ elif [[ ${ARCH} == hppa ]]; then
+ mozconfig_annotate "more than -O0 causes segfaults on hppa" --enable-optimize=-O0
elif [[ ${ARCH} == alpha || ${ARCH} == amd64 || ${ARCH} == ia64 ]]; then
mozconfig_annotate "more than -O1 causes segfaults on 64-bit (bug 33767)" \
--enable-optimize=-O1