diff options
author | 2005-07-11 21:09:50 +0000 | |
---|---|---|
committer | 2005-07-11 21:09:50 +0000 | |
commit | 2b01aae43abf01dba787076eaad03abbf47be660 (patch) | |
tree | 5950dee63fa355037f9530ab1da9401f23107877 /eclass | |
parent | When I say I don't want Xprint, don't give me Xprint anyway. Turn off BuildXp... (diff) | |
download | gentoo-2-2b01aae43abf01dba787076eaad03abbf47be660.tar.gz gentoo-2-2b01aae43abf01dba787076eaad03abbf47be660.tar.bz2 gentoo-2-2b01aae43abf01dba787076eaad03abbf47be660.zip |
Force -mieee for alpha moz builds
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mozconfig.eclass | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/eclass/mozconfig.eclass b/eclass/mozconfig.eclass index 4800e7de2b5e..b6c485cacfe0 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.14 2005/07/11 15:08:06 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig.eclass,v 1.15 2005/07/11 21:09:50 agriffis Exp $ # # mozconfig.eclass: the new mozilla.eclass @@ -105,7 +105,14 @@ mozconfig_init() { # Additional ARCH support case "${ARCH}" in - alpha|amd64|ia64) + alpha) + # Historically we have needed to add -fPIC manually for 64-bit. + # Additionally, alpha should *always* build with -mieee for correct math + # operation + append-flags -fPIC -mieee + ;; + + amd64|ia64) # Historically we have needed to add this manually for 64-bit append-flags -fPIC ;; |