| 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.15 2003/04/06 23:35:41 method Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.34 2004/01/14 20:32:41 solar 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 | # |
|
|
29 | #### strip-unsupported-flags #### |
|
|
30 | # Strip C[XX]FLAGS of any flags not supported by |
|
|
31 | # installed version of gcc |
|
|
32 | # |
| 28 | #### get-flag <flag> #### |
33 | #### get-flag <flag> #### |
| 29 | # Find and echo the value for a particular flag |
34 | # Find and echo the value for a particular flag |
| 30 | # |
35 | # |
|
|
36 | #### replace-sparc64-flags #### |
|
|
37 | # Sets mcpu to v8 and uses the original value |
|
|
38 | # as mtune if none specified. |
|
|
39 | # |
|
|
40 | #### filter-mfpmath <math types> #### |
|
|
41 | # Remove specified math types from the fpmath specification |
|
|
42 | # If the user has -mfpmath=sse,386, running `filter-mfpmath sse` |
|
|
43 | # will leave the user with -mfpmath=386 |
|
|
44 | # |
|
|
45 | #### append-ldflags #### |
|
|
46 | # Add extra flags to your current LDFLAGS |
|
|
47 | # |
|
|
48 | #### etexec-flags #### |
|
|
49 | # hooked function for hardened-gcc that appends |
|
|
50 | # -yet_exec {C,CXX,LD}FLAGS when hardened-gcc is installed |
|
|
51 | # and a package is filtering -fPIC,-fpic, -fPIE, -fpie |
|
|
52 | # |
|
|
53 | #### fstack-flags #### |
|
|
54 | # hooked function for hardened-gcc that appends |
|
|
55 | # -yno_propolice to {C,CXX,LD}FLAGS when hardened-gcc is installed |
|
|
56 | # and a package is filtering -fstack-protector, -fstack-protector-all |
|
|
57 | # |
| 31 | |
58 | |
|
|
59 | # C[XX]FLAGS that we allow in strip-flags |
| 32 | ALLOWED_FLAGS="-O -mcpu -march -mtune -fstack-protector -pipe -g" |
60 | ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
|
|
61 | case "${ARCH}" in |
|
|
62 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
|
|
63 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
|
|
64 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
|
|
65 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
|
|
66 | esac |
| 33 | |
67 | |
|
|
68 | # C[XX]FLAGS that we are think is ok, but needs testing |
|
|
69 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
|
|
70 | UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
| 34 | |
71 | |
|
|
72 | filter-mfpmath() { |
|
|
73 | for a in $CFLAGS; do |
|
|
74 | if [ "${a:0:8}" == "-mfpmath" ]; then |
|
|
75 | orig_mfpmath=$a |
|
|
76 | fi |
|
|
77 | done |
|
|
78 | |
|
|
79 | mfpmath="$( echo $orig_mfpmath | awk -F '=' '{print $2}' | tr "," " " )" |
|
|
80 | for b in $@; do |
|
|
81 | mfpmath="${mfpmath/$b}" |
|
|
82 | done |
|
|
83 | |
|
|
84 | if [ -z "${mfpmath/ }" ]; then |
|
|
85 | filter-flags "$orig_mfpmath" |
|
|
86 | else |
|
|
87 | new_mfpmath="-mfpmath=$( echo $mfpmath | sed -e "s/ /,/g" -e "s/,,/,/g" )" |
|
|
88 | replace-flags "$orig_mfpmath" "$new_mfpmath" |
|
|
89 | fi |
|
|
90 | } |
|
|
91 | |
| 35 | filter-flags () { |
92 | filter-flags() { |
| 36 | |
93 | # we do two loops to avoid the first and last char from being chomped. |
| 37 | for x in $1 |
94 | for x in $@ ; do |
|
|
95 | case "${x}" in |
|
|
96 | -fPIC|-fpic|-fPIE|-fpie) etexec-flags;; |
|
|
97 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
|
|
98 | *) ;; |
|
|
99 | esac |
| 38 | do |
100 | done |
|
|
101 | # we do this fancy spacing stuff so as to not filter |
|
|
102 | # out part of a flag ... we want flag atoms ! :D |
|
|
103 | CFLAGS=" ${CFLAGS} " |
|
|
104 | CXXFLAGS=" ${CXXFLAGS} " |
|
|
105 | for x in $@ ; do |
| 39 | export CFLAGS="${CFLAGS/${x}}" |
106 | CFLAGS="${CFLAGS/ ${x} / }" |
| 40 | export CXXFLAGS="${CXXFLAGS/${x}}" |
107 | CXXFLAGS="${CXXFLAGS/ ${x} / }" |
| 41 | done |
108 | done |
| 42 | |
109 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
|
|
110 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
| 43 | } |
111 | } |
| 44 | |
112 | |
| 45 | append-flags () { |
113 | append-flags() { |
| 46 | |
|
|
| 47 | CFLAGS="${CFLAGS} $1" |
114 | CFLAGS="${CFLAGS} $@" |
| 48 | CXXFLAGS="${CXXFLAGS} $1" |
115 | CXXFLAGS="${CXXFLAGS} $@" |
| 49 | |
116 | [ "`is-flag -fno-stack-protector`" -o "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
|
|
117 | return 0 |
| 50 | } |
118 | } |
| 51 | |
119 | |
| 52 | replace-flags () { |
120 | replace-flags() { |
| 53 | |
|
|
| 54 | CFLAGS="${CFLAGS/${1}/${2} }" |
121 | CFLAGS="${CFLAGS/${1}/${2} }" |
| 55 | CXXFLAGS="${CXXFLAGS/${1}/${2} }" |
122 | CXXFLAGS="${CXXFLAGS/${1}/${2} }" |
| 56 | |
123 | return 0 |
| 57 | } |
124 | } |
| 58 | |
125 | |
| 59 | is-flag() { |
126 | is-flag() { |
| 60 | |
|
|
| 61 | for x in ${CFLAGS} ${CXXFLAGS} |
127 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
| 62 | do |
|
|
| 63 | if [ "${x}" = "$1" ] |
128 | if [ "${x}" == "$1" ] ; then |
| 64 | then |
|
|
| 65 | echo true |
129 | echo true |
| 66 | break |
130 | return 0 |
| 67 | fi |
131 | fi |
| 68 | done |
132 | done |
| 69 | |
133 | return 1 |
| 70 | } |
134 | } |
| 71 | |
135 | |
| 72 | strip-flags() { |
136 | strip-flags() { |
| 73 | |
|
|
| 74 | local NEW_CFLAGS="" |
137 | local NEW_CFLAGS="" |
| 75 | local NEW_CXXFLAGS="" |
138 | local NEW_CXXFLAGS="" |
|
|
139 | |
|
|
140 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
|
|
141 | if [ `has ~${ARCH} ${ACCEPT_KEYWORDS}` ] ; then |
|
|
142 | [ `use debug` ] && einfo "Enabling the use of some unstable flags" |
|
|
143 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
|
|
144 | fi |
| 76 | |
145 | |
| 77 | set -f |
146 | set -f |
| 78 | |
147 | |
| 79 | for x in ${CFLAGS} |
148 | for x in ${CFLAGS} |
| 80 | do |
149 | do |
| … | |
… | |
| 100 | break |
169 | break |
| 101 | fi |
170 | fi |
| 102 | done |
171 | done |
| 103 | done |
172 | done |
| 104 | |
173 | |
|
|
174 | # In case we filtered out all optimization flags fallback to -O2 |
|
|
175 | if [ "${CFLAGS/-O}" != "${CFLAGS}" -a "${NEW_CFLAGS/-O}" = "${NEW_CFLAGS}" ]; then |
|
|
176 | NEW_CFLAGS="${NEW_CFLAGS} -O2" |
|
|
177 | fi |
|
|
178 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
|
|
179 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
|
|
180 | fi |
|
|
181 | |
| 105 | set +f |
182 | set +f |
|
|
183 | |
|
|
184 | [ `use debug` ] \ |
|
|
185 | && einfo "CFLAGS=\"${NEW_CFLAGS}\"" \ |
|
|
186 | && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
| 106 | |
187 | |
| 107 | export CFLAGS="${NEW_CFLAGS}" |
188 | export CFLAGS="${NEW_CFLAGS}" |
| 108 | export CXXFLAGS="${NEW_CXXFLAGS}" |
189 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 109 | } |
190 | } |
| 110 | |
191 | |
|
|
192 | test_flag () { |
|
|
193 | if gcc -S -xc $1 -o /dev/null /dev/null >/dev/null 2>&1; then |
|
|
194 | echo "$1" |
|
|
195 | fi |
|
|
196 | } |
|
|
197 | |
|
|
198 | strip-unsupported-flags() { |
|
|
199 | for x in ${CFLAGS} |
|
|
200 | do |
|
|
201 | NEW_CFLAGS=${NEW_CFLAGS}" ""`test_flag ${x}`" |
|
|
202 | done |
|
|
203 | |
|
|
204 | for x in ${CXXFLAGS} |
|
|
205 | do |
|
|
206 | NEW_CXXFLAGS=${NEW_CXXFLAGS}" ""`test_flag ${x}`" |
|
|
207 | done |
|
|
208 | |
|
|
209 | CFLAGS="${NEW_CFLAGS}" |
|
|
210 | CXXFLAGS="${NEW_CXXFLAGS}" |
|
|
211 | } |
|
|
212 | |
| 111 | get-flag() { |
213 | get-flag() { |
| 112 | local findflag="$1" |
214 | local findflag="$1" |
| 113 | |
|
|
| 114 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
215 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
| 115 | if [ "${f/${findflag}}" != "${f}" ] ; then |
216 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 116 | echo "${f/-${findflag}=}" |
217 | echo "${f/-${findflag}=}" |
| 117 | return |
218 | return 0 |
| 118 | fi |
219 | fi |
|
|
220 | done |
|
|
221 | return 1 |
|
|
222 | } |
|
|
223 | |
|
|
224 | replace-sparc64-flags() { |
|
|
225 | local SPARC64_CPUS="ultrasparc v9" |
|
|
226 | |
|
|
227 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ] |
|
|
228 | then |
|
|
229 | for x in ${SPARC64_CPUS} |
|
|
230 | do |
|
|
231 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 119 | done |
232 | done |
|
|
233 | else |
|
|
234 | for x in ${SPARC64_CPUS} |
|
|
235 | do |
|
|
236 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
|
|
237 | done |
|
|
238 | fi |
|
|
239 | |
|
|
240 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ] |
|
|
241 | then |
|
|
242 | for x in ${SPARC64_CPUS} |
|
|
243 | do |
|
|
244 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
|
|
245 | done |
|
|
246 | else |
|
|
247 | for x in ${SPARC64_CPUS} |
|
|
248 | do |
|
|
249 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
|
|
250 | done |
|
|
251 | fi |
| 120 | } |
252 | } |
|
|
253 | |
|
|
254 | append-ldflags() { |
|
|
255 | LDFLAGS="${LDFLAGS} $@" |
|
|
256 | return 0 |
|
|
257 | } |
|
|
258 | |
|
|
259 | etexec-flags() { |
|
|
260 | has_version 'sys-devel/hardened-gcc' && { |
|
|
261 | if [ ! is-flag -yet_exec ]; then |
|
|
262 | debug-print ">>> appending flags -yet_exec" |
|
|
263 | append-flags -yet_exec |
|
|
264 | append-ldflags -yet_exec |
|
|
265 | fi |
|
|
266 | } |
|
|
267 | } |
|
|
268 | |
|
|
269 | fstack-flags() { |
|
|
270 | has_version 'sys-devel/hardened-gcc' && { |
|
|
271 | if [ ! is-flag -yno_propolice ]; then |
|
|
272 | debug-print ">>> appending flags -yno_propolice" |
|
|
273 | append-flags -yno_propolice |
|
|
274 | append-ldflags -yno_propolice |
|
|
275 | fi |
|
|
276 | } |
|
|
277 | } |