| 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.24 2003/07/22 12:48:11 aliz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.33 2003/12/31 16:51:35 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" |
| … | |
… | |
| 24 | # |
24 | # |
| 25 | #### strip-flags #### |
25 | #### strip-flags #### |
| 26 | # Strip C[XX]FLAGS of everything except known |
26 | # Strip C[XX]FLAGS of everything except known |
| 27 | # good options. |
27 | # good options. |
| 28 | # |
28 | # |
|
|
29 | #### strip-unsupported-flags #### |
|
|
30 | # Strip C[XX]FLAGS of any flags not supported by |
|
|
31 | # installed version of gcc |
|
|
32 | # |
| 29 | #### get-flag <flag> #### |
33 | #### get-flag <flag> #### |
| 30 | # Find and echo the value for a particular flag |
34 | # Find and echo the value for a particular flag |
| 31 | # |
35 | # |
| 32 | #### replace-sparc64-flags #### |
36 | #### replace-sparc64-flags #### |
| 33 | # Sets mcpu to v8 and uses the original value |
37 | # Sets mcpu to v8 and uses the original value |
| 34 | # as mtune if none specified. |
38 | # as mtune if none specified. |
| 35 | # |
39 | # |
| 36 | |
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 | # |
| 37 | |
58 | |
| 38 | # C[XX]FLAGS that we allow in strip-flags |
59 | # C[XX]FLAGS that we allow in strip-flags |
| 39 | ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
60 | ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
| 40 | case "${ARCH}" in |
61 | case "${ARCH}" in |
| 41 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
62 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
| 42 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
63 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
|
|
64 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
|
|
65 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
| 43 | esac |
66 | esac |
| 44 | |
67 | |
| 45 | # C[XX]FLAGS that we are think is ok, but needs testing |
68 | # C[XX]FLAGS that we are think is ok, but needs testing |
| 46 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
69 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 47 | UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
70 | UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
| … | |
… | |
| 65 | replace-flags "$orig_mfpmath" "$new_mfpmath" |
88 | replace-flags "$orig_mfpmath" "$new_mfpmath" |
| 66 | fi |
89 | fi |
| 67 | } |
90 | } |
| 68 | |
91 | |
| 69 | filter-flags() { |
92 | filter-flags() { |
|
|
93 | # we do two loops to avoid the first and last char from being chomped. |
|
|
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 |
|
|
100 | done |
| 70 | # we do this fancy spacing stuff so as to not filter |
101 | # we do this fancy spacing stuff so as to not filter |
| 71 | # out part of a flag ... we want flag atoms ! :D |
102 | # out part of a flag ... we want flag atoms ! :D |
| 72 | export CFLAGS=" ${CFLAGS} " |
103 | CFLAGS=" ${CFLAGS} " |
| 73 | export CXXFLAGS=" ${CXXFLAGS} " |
104 | CXXFLAGS=" ${CXXFLAGS} " |
| 74 | for x in $@ ; do |
105 | for x in $@ ; do |
| 75 | export CFLAGS="${CFLAGS/ ${x} / }" |
106 | CFLAGS="${CFLAGS/ ${x} / }" |
| 76 | export CXXFLAGS="${CXXFLAGS/ ${x} / }" |
107 | CXXFLAGS="${CXXFLAGS/ ${x} / }" |
| 77 | done |
108 | done |
| 78 | export CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
109 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
| 79 | export CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
110 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
| 80 | } |
111 | } |
| 81 | |
112 | |
| 82 | append-flags() { |
113 | append-flags() { |
| 83 | CFLAGS="${CFLAGS} $@" |
114 | CFLAGS="${CFLAGS} $@" |
| 84 | CXXFLAGS="${CXXFLAGS} $@" |
115 | CXXFLAGS="${CXXFLAGS} $@" |
|
|
116 | [ "`is-flag -fno-stack-protector`" -o "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
|
|
117 | return 0 |
| 85 | } |
118 | } |
| 86 | |
119 | |
| 87 | replace-flags() { |
120 | replace-flags() { |
| 88 | CFLAGS="${CFLAGS/${1}/${2} }" |
121 | CFLAGS="${CFLAGS/${1}/${2} }" |
| 89 | CXXFLAGS="${CXXFLAGS/${1}/${2} }" |
122 | CXXFLAGS="${CXXFLAGS/${1}/${2} }" |
|
|
123 | return 0 |
| 90 | } |
124 | } |
| 91 | |
125 | |
| 92 | is-flag() { |
126 | is-flag() { |
| 93 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
127 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
| 94 | if [ "${x}" == "$1" ] ; then |
128 | if [ "${x}" == "$1" ] ; then |
| … | |
… | |
| 135 | break |
169 | break |
| 136 | fi |
170 | fi |
| 137 | done |
171 | done |
| 138 | done |
172 | done |
| 139 | |
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 | |
| 140 | set +f |
182 | set +f |
| 141 | |
183 | |
| 142 | [ `use debug` ] \ |
184 | [ `use debug` ] \ |
| 143 | && einfo "CFLAGS=\"${NEW_CFLAGS}\"" \ |
185 | && einfo "CFLAGS=\"${NEW_CFLAGS}\"" \ |
| 144 | && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
186 | && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
| 145 | |
187 | |
| 146 | export CFLAGS="${NEW_CFLAGS}" |
188 | export CFLAGS="${NEW_CFLAGS}" |
| 147 | export CXXFLAGS="${NEW_CXXFLAGS}" |
189 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 148 | } |
190 | } |
| 149 | |
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 | |
| 150 | get-flag() { |
213 | get-flag() { |
| 151 | local findflag="$1" |
214 | local findflag="$1" |
| 152 | |
|
|
| 153 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
215 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
| 154 | if [ "${f/${findflag}}" != "${f}" ] ; then |
216 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 155 | echo "${f/-${findflag}=}" |
217 | echo "${f/-${findflag}=}" |
| 156 | return |
218 | return 0 |
| 157 | fi |
219 | fi |
| 158 | done |
220 | done |
|
|
221 | return 1 |
| 159 | } |
222 | } |
| 160 | |
223 | |
| 161 | replace-sparc64-flags() { |
224 | replace-sparc64-flags() { |
| 162 | local SPARC64_CPUS="ultrasparc v9" |
225 | local SPARC64_CPUS="ultrasparc v9" |
| 163 | |
226 | |
| … | |
… | |
| 185 | do |
248 | do |
| 186 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
249 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 187 | done |
250 | done |
| 188 | fi |
251 | fi |
| 189 | } |
252 | } |
|
|
253 | |
|
|
254 | append-ldflags() { |
|
|
255 | LDFLAGS="${LDFLAGS} $@" |
|
|
256 | return 0 |
|
|
257 | } |
|
|
258 | |
|
|
259 | etexec-flags() { |
|
|
260 | has_version 'sys-devel/hardened-gcc' && { |
|
|
261 | debug-print ">>> appending flags -yet_exec" |
|
|
262 | append-flags -yet_exec |
|
|
263 | append-ldflags -yet_exec |
|
|
264 | } |
|
|
265 | } |
|
|
266 | |
|
|
267 | fstack-flags() { |
|
|
268 | has_version 'sys-devel/hardened-gcc' && { |
|
|
269 | debug-print ">>> appending flags -yno_propolice" |
|
|
270 | append-flags -yno_propolice |
|
|
271 | append-ldflags -yno_propolice |
|
|
272 | } |
|
|
273 | } |