diff options
author | Armando Di Cianno <fafhrd@gentoo.org> | 2005-03-21 09:12:42 +0000 |
---|---|---|
committer | Armando Di Cianno <fafhrd@gentoo.org> | 2005-03-21 09:12:42 +0000 |
commit | f4ddcc8c5cefbc636c7e8dc2e0b1ad24b5568ecc (patch) | |
tree | b17615de0da699b749a948bf293698a996051970 /eclass | |
parent | Stable on x86 and ppc. (diff) | |
download | historical-f4ddcc8c5cefbc636c7e8dc2e0b1ad24b5568ecc.tar.gz historical-f4ddcc8c5cefbc636c7e8dc2e0b1ad24b5568ecc.tar.bz2 historical-f4ddcc8c5cefbc636c7e8dc2e0b1ad24b5568ecc.zip |
filter omit-frame-pointer as it breaks some ObjC (bug 86089)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnustep.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/gnustep.eclass b/eclass/gnustep.eclass index 2411ced7bff9..3ab46d19af29 100644 --- a/eclass/gnustep.eclass +++ b/eclass/gnustep.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.21 2004/11/12 03:46:33 fafhrd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.22 2005/03/21 09:12:42 fafhrd Exp $ inherit gnustep-funcs eutils flag-o-matic @@ -85,6 +85,9 @@ gnustep_pkg_setup() { # strict-aliasing is known to break obj-c stuff in gcc-3.4* filter-flags -fstrict-aliasing fi + + # known to break ObjC (bug 86089) + filter-flags -fomit-frame-pointer } gnustep_src_compile() { |