| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.43 2004/04/06 04:25:16 tseng Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.44 2004/04/08 21:53:15 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Bart Verwilst <verwilst@gentoo.org> |
5 | # Author Bart Verwilst <verwilst@gentoo.org> |
| 6 | |
6 | |
| 7 | ECLASS=flag-o-matic |
7 | ECLASS=flag-o-matic |
| 8 | INHERITED="$INHERITED $ECLASS" |
8 | INHERITED="$INHERITED $ECLASS" |
| … | |
… | |
| 64 | # and a package is filtering -fstack-protector, -fstack-protector-all |
64 | # and a package is filtering -fstack-protector, -fstack-protector-all |
| 65 | # |
65 | # |
| 66 | |
66 | |
| 67 | # C[XX]FLAGS that we allow in strip-flags |
67 | # C[XX]FLAGS that we allow in strip-flags |
| 68 | setup-allowed-flags() { |
68 | setup-allowed-flags() { |
|
|
69 | if [ -z "${ALLOWED_FLAGS}" ] ; then |
| 69 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
70 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
| 70 | case "${ARCH}" in |
71 | case "${ARCH}" in |
| 71 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
72 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
| 72 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
73 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
| 73 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
74 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
| 74 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
75 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
| 75 | esac |
76 | esac |
|
|
77 | fi |
| 76 | |
78 | |
| 77 | # C[XX]FLAGS that we are think is ok, but needs testing |
79 | # C[XX]FLAGS that we are think is ok, but needs testing |
| 78 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
80 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 79 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
81 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
| 80 | return 0 |
82 | return 0 |