| 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.17 2003/04/27 20:57:46 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.24 2003/07/22 12:48:11 aliz 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" |
| 9 | |
9 | |
| 10 | # |
10 | # |
| 11 | #### filter-flags <flag> #### |
11 | #### filter-flags <flags> #### |
| 12 | # Remove particular flags from C[XX]FLAGS |
12 | # Remove particular flags from C[XX]FLAGS |
|
|
13 | # Matches only complete flags |
| 13 | # |
14 | # |
| 14 | #### append-flags <flag> #### |
15 | #### append-flags <flags> #### |
| 15 | # Add extra flags to your current C[XX]FLAGS |
16 | # Add extra flags to your current C[XX]FLAGS |
| 16 | # |
17 | # |
| 17 | #### replace-flags <orig.flag> <new.flag> ### |
18 | #### replace-flags <orig.flag> <new.flag> ### |
| 18 | # Replace a flag by another one |
19 | # Replace a flag by another one |
| 19 | # |
20 | # |
| 20 | #### is-flag <flag> #### |
21 | #### is-flag <flag> #### |
| 21 | # Returns "true" if flag is set in C[XX]FLAGS |
22 | # Returns "true" if flag is set in C[XX]FLAGS |
| 22 | # Matches only complete flag |
23 | # Matches only complete a flag |
| 23 | # |
24 | # |
| 24 | #### strip-flags #### |
25 | #### strip-flags #### |
| 25 | # Strip C[XX]FLAGS of everything except known |
26 | # Strip C[XX]FLAGS of everything except known |
| 26 | # good options. |
27 | # good options. |
| 27 | # |
28 | # |
| … | |
… | |
| 34 | # |
35 | # |
| 35 | |
36 | |
| 36 | |
37 | |
| 37 | # C[XX]FLAGS that we allow in strip-flags |
38 | # C[XX]FLAGS that we allow in strip-flags |
| 38 | ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
39 | ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
|
|
40 | case "${ARCH}" in |
|
|
41 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
|
|
42 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
|
|
43 | esac |
| 39 | |
44 | |
| 40 | # C[XX]FLAGS that we are think is ok, but needs testing |
45 | # C[XX]FLAGS that we are think is ok, but needs testing |
| 41 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
46 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 42 | UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
47 | UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
| 43 | |
48 | |
| 44 | filter-flags () { |
49 | filter-mfpmath() { |
| 45 | |
50 | for a in $CFLAGS; do |
| 46 | for x in $1 |
51 | if [ "${a:0:8}" == "-mfpmath" ]; then |
| 47 | do |
52 | orig_mfpmath=$a |
| 48 | export CFLAGS="${CFLAGS/${x}}" |
53 | fi |
| 49 | export CXXFLAGS="${CXXFLAGS/${x}}" |
|
|
| 50 | done |
54 | done |
| 51 | |
55 | |
|
|
56 | mfpmath="$( echo $orig_mfpmath | awk -F '=' '{print $2}' | tr "," " " )" |
|
|
57 | for b in $@; do |
|
|
58 | mfpmath="${mfpmath/$b}" |
|
|
59 | done |
|
|
60 | |
|
|
61 | if [ -z "${mfpmath/ }" ]; then |
|
|
62 | filter-flags "$orig_mfpmath" |
|
|
63 | else |
|
|
64 | new_mfpmath="-mfpmath=$( echo $mfpmath | sed -e "s/ /,/g" -e "s/,,/,/g" )" |
|
|
65 | replace-flags "$orig_mfpmath" "$new_mfpmath" |
|
|
66 | fi |
| 52 | } |
67 | } |
| 53 | |
68 | |
| 54 | append-flags () { |
69 | filter-flags() { |
| 55 | |
70 | # we do this fancy spacing stuff so as to not filter |
|
|
71 | # out part of a flag ... we want flag atoms ! :D |
| 56 | CFLAGS="${CFLAGS} $1" |
72 | export CFLAGS=" ${CFLAGS} " |
| 57 | CXXFLAGS="${CXXFLAGS} $1" |
73 | export CXXFLAGS=" ${CXXFLAGS} " |
| 58 | |
74 | for x in $@ ; do |
|
|
75 | export CFLAGS="${CFLAGS/ ${x} / }" |
|
|
76 | export CXXFLAGS="${CXXFLAGS/ ${x} / }" |
|
|
77 | done |
|
|
78 | export CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
|
|
79 | export CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
| 59 | } |
80 | } |
| 60 | |
81 | |
| 61 | replace-flags () { |
82 | append-flags() { |
|
|
83 | CFLAGS="${CFLAGS} $@" |
|
|
84 | CXXFLAGS="${CXXFLAGS} $@" |
|
|
85 | } |
| 62 | |
86 | |
|
|
87 | replace-flags() { |
| 63 | CFLAGS="${CFLAGS/${1}/${2} }" |
88 | CFLAGS="${CFLAGS/${1}/${2} }" |
| 64 | CXXFLAGS="${CXXFLAGS/${1}/${2} }" |
89 | CXXFLAGS="${CXXFLAGS/${1}/${2} }" |
| 65 | |
|
|
| 66 | } |
90 | } |
| 67 | |
91 | |
| 68 | is-flag() { |
92 | is-flag() { |
| 69 | |
|
|
| 70 | for x in ${CFLAGS} ${CXXFLAGS} |
93 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
| 71 | do |
|
|
| 72 | if [ "${x}" = "$1" ] |
94 | if [ "${x}" == "$1" ] ; then |
| 73 | then |
|
|
| 74 | echo true |
95 | echo true |
| 75 | break |
96 | return 0 |
| 76 | fi |
97 | fi |
| 77 | done |
98 | done |
| 78 | |
99 | return 1 |
| 79 | } |
100 | } |
| 80 | |
101 | |
| 81 | strip-flags() { |
102 | strip-flags() { |
| 82 | |
|
|
| 83 | local NEW_CFLAGS="" |
103 | local NEW_CFLAGS="" |
| 84 | local NEW_CXXFLAGS="" |
104 | local NEW_CXXFLAGS="" |
| 85 | |
105 | |
| 86 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
106 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
| 87 | if [ "${ACCEPT_KEYWORDS/~/}" != "${ACCEPT_KEYWORDS}" -a \ |
107 | if [ `has ~${ARCH} ${ACCEPT_KEYWORDS}` ] ; then |
| 88 | "${ACCEPT_KEYWORDS/-~/}" = "${ACCEPT_KEYWORDS}" ] |
|
|
| 89 | then |
|
|
| 90 | if use debug &> /dev/null |
|
|
| 91 | then |
|
|
| 92 | einfo "Enabling the use of some unstable flags" |
108 | [ `use debug` ] && einfo "Enabling the use of some unstable flags" |
| 93 | fi |
|
|
| 94 | |
|
|
| 95 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
109 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
| 96 | fi |
110 | fi |
| 97 | |
111 | |
| 98 | set -f |
112 | set -f |
| 99 | |
113 | |
| … | |
… | |
| 123 | done |
137 | done |
| 124 | done |
138 | done |
| 125 | |
139 | |
| 126 | set +f |
140 | set +f |
| 127 | |
141 | |
| 128 | use debug &>/dev/null && einfo "CFLAGS=\"${NEW_CFLAGS}\"" |
142 | [ `use debug` ] \ |
|
|
143 | && einfo "CFLAGS=\"${NEW_CFLAGS}\"" \ |
| 129 | use debug &>/dev/null && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
144 | && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
| 130 | |
145 | |
| 131 | export CFLAGS="${NEW_CFLAGS}" |
146 | export CFLAGS="${NEW_CFLAGS}" |
| 132 | export CXXFLAGS="${NEW_CXXFLAGS}" |
147 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 133 | } |
148 | } |
| 134 | |
149 | |
| 135 | get-flag() { |
150 | get-flag() { |
| … | |
… | |
| 141 | return |
156 | return |
| 142 | fi |
157 | fi |
| 143 | done |
158 | done |
| 144 | } |
159 | } |
| 145 | |
160 | |
| 146 | replace-sparc64-flags () { |
161 | replace-sparc64-flags() { |
| 147 | |
|
|
| 148 | local SPARC64_CPUS="ultrasparc v9" |
162 | local SPARC64_CPUS="ultrasparc v9" |
| 149 | |
163 | |
| 150 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ] |
164 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ] |
| 151 | then |
165 | then |
| 152 | for x in ${SPARC64_CPUS} |
166 | for x in ${SPARC64_CPUS} |
| … | |
… | |
| 170 | for x in ${SPARC64_CPUS} |
184 | for x in ${SPARC64_CPUS} |
| 171 | do |
185 | do |
| 172 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
186 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 173 | done |
187 | done |
| 174 | fi |
188 | fi |
| 175 | |
|
|
| 176 | } |
189 | } |