| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2005 Gentoo Foundation |
| 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.37 2004/02/21 07:19:29 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.90 2005/07/11 19:28:20 agriffis Exp $ |
| 4 | # |
|
|
| 5 | # Author Bart Verwilst <verwilst@gentoo.org> |
|
|
| 6 | |
4 | |
| 7 | ECLASS=flag-o-matic |
5 | |
| 8 | INHERITED="$INHERITED $ECLASS" |
6 | # need access to emktemp() |
|
|
7 | inherit eutils toolchain-funcs multilib |
| 9 | |
8 | |
| 10 | # |
9 | # |
| 11 | #### filter-flags <flags> #### |
10 | #### filter-flags <flags> #### |
| 12 | # Remove particular flags from C[XX]FLAGS |
11 | # Remove particular flags from C[XX]FLAGS |
| 13 | # Matches only complete flags |
12 | # Matches only complete flags |
| … | |
… | |
| 16 | # Add extra flags to your current C[XX]FLAGS |
15 | # Add extra flags to your current C[XX]FLAGS |
| 17 | # |
16 | # |
| 18 | #### replace-flags <orig.flag> <new.flag> ### |
17 | #### replace-flags <orig.flag> <new.flag> ### |
| 19 | # Replace a flag by another one |
18 | # Replace a flag by another one |
| 20 | # |
19 | # |
| 21 | #### replace-cpu-flags <new.cpu> <old.cpus> ### |
20 | #### replace-cpu-flags <old.cpus> <new.cpu> ### |
| 22 | # Replace march/mcpu flags that specify <old.cpus> |
21 | # Replace march/mcpu flags that specify <old.cpus> |
| 23 | # with flags that specify <new.cpu> |
22 | # with flags that specify <new.cpu> |
| 24 | # |
23 | # |
| 25 | #### is-flag <flag> #### |
24 | #### is-flag <flag> #### |
| 26 | # Returns "true" if flag is set in C[XX]FLAGS |
25 | # Returns "true" if flag is set in C[XX]FLAGS |
| … | |
… | |
| 47 | # will leave the user with -mfpmath=386 |
46 | # will leave the user with -mfpmath=386 |
| 48 | # |
47 | # |
| 49 | #### append-ldflags #### |
48 | #### append-ldflags #### |
| 50 | # Add extra flags to your current LDFLAGS |
49 | # Add extra flags to your current LDFLAGS |
| 51 | # |
50 | # |
| 52 | #### etexec-flags #### |
51 | #### filter-ldflags <flags> #### |
| 53 | # hooked function for hardened-gcc that appends |
52 | # Remove particular flags from LDFLAGS |
| 54 | # -yet_exec {C,CXX,LD}FLAGS when hardened-gcc is installed |
53 | # Matches only complete flags |
| 55 | # and a package is filtering -fPIC,-fpic, -fPIE, -fpie |
|
|
| 56 | # |
54 | # |
| 57 | #### fstack-flags #### |
55 | #### fstack-flags #### |
| 58 | # hooked function for hardened-gcc that appends |
56 | # hooked function for hardened gcc that appends |
| 59 | # -yno_propolice to {C,CXX,LD}FLAGS when hardened-gcc is installed |
57 | # -fno-stack-protector to {C,CXX,LD}FLAGS |
| 60 | # and a package is filtering -fstack-protector, -fstack-protector-all |
58 | # when a package is filtering -fstack-protector, -fstack-protector-all |
|
|
59 | # notice: modern automatic specs files will also suppress -fstack-protector-all |
|
|
60 | # when only -fno-stack-protector is given |
|
|
61 | # |
|
|
62 | #### has_pic #### |
|
|
63 | # Returns true if the compiler by default or with current CFLAGS |
|
|
64 | # builds position-independent code. |
|
|
65 | # |
|
|
66 | #### has_ssp_all #### |
|
|
67 | # Returns true if the compiler by default or with current CFLAGS |
|
|
68 | # generates stack smash protections for all functions |
|
|
69 | # |
|
|
70 | #### has_ssp #### |
|
|
71 | # Returns true if the compiler by default or with current CFLAGS |
|
|
72 | # generates stack smash protections for most vulnerable functions |
| 61 | # |
73 | # |
| 62 | |
74 | |
| 63 | # C[XX]FLAGS that we allow in strip-flags |
75 | # C[XX]FLAGS that we allow in strip-flags |
| 64 | setup-allowed-flags() { |
76 | setup-allowed-flags() { |
| 65 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
77 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
| 66 | case "${ARCH}" in |
78 | export ALLOWED_FLAGS="-pipe" |
| 67 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
79 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
| 68 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
80 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
| 69 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
81 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-bounds-checking" |
| 70 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
82 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-pie -fno-unit-at-a-time" |
| 71 | esac |
83 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3 -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3" |
|
|
84 | fi |
|
|
85 | # allow a bunch of flags that negate features / control ABI |
|
|
86 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all" |
|
|
87 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
|
|
88 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow \ |
|
|
89 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
|
|
90 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
|
|
91 | -mieee -mieee-with-inexact \ |
|
|
92 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
|
|
93 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
|
|
94 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias" |
| 72 | |
95 | |
| 73 | # C[XX]FLAGS that we are think is ok, but needs testing |
96 | # C[XX]FLAGS that we are think is ok, but needs testing |
| 74 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
97 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 75 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
98 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
| 76 | return 0 |
99 | return 0 |
| 77 | } |
100 | } |
| 78 | |
101 | |
| 79 | filter-flags() { |
102 | filter-flags() { |
|
|
103 | local x f fset |
|
|
104 | declare -a new_CFLAGS new_CXXFLAGS |
|
|
105 | |
| 80 | for x in "$@" ; do |
106 | for x in "$@" ; do |
| 81 | case "${x}" in |
107 | case "${x}" in |
| 82 | -fPIC|-fpic|-fPIE|-fpie) etexec-flags;; |
108 | -fPIC|-fpic|-fPIE|-fpie|-pie) |
|
|
109 | append-flags `test_flag -fno-pie`;; |
| 83 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
110 | -fstack-protector|-fstack-protector-all) |
| 84 | *) ;; |
111 | fstack-flags;; |
| 85 | esac |
112 | esac |
| 86 | done |
113 | done |
| 87 | |
114 | |
| 88 | # we do this fancy spacing stuff so as to not filter |
115 | for fset in CFLAGS CXXFLAGS; do |
| 89 | # out part of a flag ... we want flag atoms ! :D |
116 | # Looping over the flags instead of using a global |
| 90 | CFLAGS=" ${CFLAGS} " |
117 | # substitution ensures that we're working with flag atoms. |
| 91 | CXXFLAGS=" ${CXXFLAGS} " |
118 | # Otherwise globs like -O* have the potential to wipe out the |
|
|
119 | # list of flags. |
|
|
120 | for f in ${!fset}; do |
| 92 | for x in "$@" ; do |
121 | for x in "$@"; do |
| 93 | CFLAGS="${CFLAGS// ${x} / }" |
122 | # Note this should work with globs like -O* |
| 94 | CXXFLAGS="${CXXFLAGS// ${x} / }" |
123 | [[ ${f} == ${x} ]] && continue 2 |
|
|
124 | done |
|
|
125 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
| 95 | done |
126 | done |
| 96 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
127 | eval export ${fset}=\${new_${fset}\[*]} |
| 97 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
128 | done |
|
|
129 | |
| 98 | return 0 |
130 | return 0 |
|
|
131 | } |
|
|
132 | |
|
|
133 | filter-lfs-flags() { |
|
|
134 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
135 | } |
|
|
136 | |
|
|
137 | append-lfs-flags() { |
|
|
138 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 99 | } |
139 | } |
| 100 | |
140 | |
| 101 | append-flags() { |
141 | append-flags() { |
|
|
142 | [[ -z $* ]] && return 0 |
| 102 | export CFLAGS="${CFLAGS} $@" |
143 | export CFLAGS="${CFLAGS} $*" |
| 103 | export CXXFLAGS="${CXXFLAGS} $@" |
144 | export CXXFLAGS="${CXXFLAGS} $*" |
| 104 | [ "`is-flag -fno-stack-protector`" -o "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
145 | [ -n "`is-flag -fno-stack-protector`" -o \ |
|
|
146 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
| 105 | return 0 |
147 | return 0 |
| 106 | } |
148 | } |
| 107 | |
149 | |
| 108 | replace-flags() { |
150 | replace-flags() { |
| 109 | # we do this fancy spacing stuff so as to not filter |
151 | local f fset |
| 110 | # out part of a flag ... we want flag atoms ! :D |
152 | declare -a new_CFLAGS new_CXXFLAGS |
| 111 | CFLAGS=" ${CFLAGS} " |
153 | |
| 112 | CXXFLAGS=" ${CXXFLAGS} " |
154 | for fset in CFLAGS CXXFLAGS; do |
| 113 | CFLAGS="${CFLAGS// ${1} / ${2} }" |
155 | # Looping over the flags instead of using a global |
| 114 | CXXFLAGS="${CXXFLAGS// ${1} / ${2} }" |
156 | # substitution ensures that we're working with flag atoms. |
| 115 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
157 | # Otherwise globs like -O* have the potential to wipe out the |
| 116 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
158 | # list of flags. |
|
|
159 | for f in ${!fset}; do |
|
|
160 | # Note this should work with globs like -O* |
|
|
161 | [[ ${f} == ${1} ]] && f=${2} |
|
|
162 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
|
|
163 | done |
|
|
164 | eval export ${fset}=\${new_${fset}\[*]} |
|
|
165 | done |
|
|
166 | |
| 117 | return 0 |
167 | return 0 |
| 118 | } |
168 | } |
| 119 | |
169 | |
| 120 | replace-cpu-flags() { |
170 | replace-cpu-flags() { |
| 121 | local newcpu="$1" ; shift |
171 | local newcpu="$#" ; newcpu="${!newcpu}" |
| 122 | local oldcpu="" |
172 | while [ $# -gt 1 ] ; do |
| 123 | for oldcpu in "$@" ; do |
173 | # quote to make sure that no globbing is done (particularly on |
|
|
174 | # ${oldcpu} prior to calling replace-flags |
| 124 | replace-flags -march=${oldcpu} -march=${newcpu} |
175 | replace-flags "-march=${1}" "-march=${newcpu}" |
| 125 | replace-flags -mcpu=${oldcpu} -mcpu=${newcpu} |
176 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
|
|
177 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
|
|
178 | shift |
| 126 | done |
179 | done |
| 127 | return 0 |
180 | return 0 |
| 128 | } |
181 | } |
| 129 | |
182 | |
| 130 | is-flag() { |
183 | is-flag() { |
|
|
184 | local x |
|
|
185 | |
| 131 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
186 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
|
|
187 | # Note this should work with globs like -mcpu=ultrasparc* |
| 132 | if [ "${x}" == "$1" ] ; then |
188 | if [[ ${x} == ${1} ]]; then |
| 133 | echo true |
189 | echo true |
| 134 | return 0 |
190 | return 0 |
| 135 | fi |
191 | fi |
| 136 | done |
192 | done |
| 137 | return 1 |
193 | return 1 |
| 138 | } |
194 | } |
| 139 | |
195 | |
| 140 | filter-mfpmath() { |
196 | filter-mfpmath() { |
|
|
197 | local orig_mfpmath new_math prune_math |
|
|
198 | |
| 141 | # save the original -mfpmath flag |
199 | # save the original -mfpmath flag |
| 142 | local orig_mfpmath="`get-flag -mfpmath`" |
200 | orig_mfpmath="`get-flag -mfpmath`" |
| 143 | # get the value of the current -mfpmath flag |
201 | # get the value of the current -mfpmath flag |
| 144 | local new_math=" `get-flag mfpmath | tr , ' '` " |
202 | new_math=" `get-flag mfpmath | tr , ' '` " |
| 145 | # figure out which math values are to be removed |
203 | # figure out which math values are to be removed |
| 146 | local prune_math="" |
204 | prune_math="" |
| 147 | for prune_math in "$@" ; do |
205 | for prune_math in "$@" ; do |
| 148 | new_math="${new_math/ ${prune_math} / }" |
206 | new_math="${new_math/ ${prune_math} / }" |
| 149 | done |
207 | done |
| 150 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
208 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
| 151 | |
209 | |
| … | |
… | |
| 160 | fi |
218 | fi |
| 161 | return 0 |
219 | return 0 |
| 162 | } |
220 | } |
| 163 | |
221 | |
| 164 | strip-flags() { |
222 | strip-flags() { |
|
|
223 | local x y flag NEW_CFLAGS NEW_CXXFLAGS |
|
|
224 | |
| 165 | setup-allowed-flags |
225 | setup-allowed-flags |
| 166 | |
226 | |
| 167 | local NEW_CFLAGS="" |
227 | local NEW_CFLAGS="" |
| 168 | local NEW_CXXFLAGS="" |
228 | local NEW_CXXFLAGS="" |
| 169 | |
229 | |
| 170 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
230 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
| 171 | if [ `has ~${ARCH} ${ACCEPT_KEYWORDS}` ] ; then |
231 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
| 172 | [ `use debug` ] && einfo "Enabling the use of some unstable flags" |
|
|
| 173 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
232 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
| 174 | fi |
233 | fi |
| 175 | |
234 | |
| 176 | set -f |
235 | set -f # disable pathname expansion |
| 177 | |
236 | |
| 178 | for x in ${CFLAGS} |
237 | for x in ${CFLAGS}; do |
| 179 | do |
|
|
| 180 | for y in ${ALLOWED_FLAGS} |
238 | for y in ${ALLOWED_FLAGS}; do |
| 181 | do |
|
|
| 182 | flag=${x%%=*} |
239 | flag=${x%%=*} |
| 183 | if [ "${flag%%${y}}" = "" ] |
240 | if [ "${flag%%${y}}" = "" ] ; then |
| 184 | then |
|
|
| 185 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
241 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
| 186 | break |
242 | break |
| 187 | fi |
243 | fi |
| 188 | done |
244 | done |
| 189 | done |
245 | done |
| 190 | |
246 | |
| 191 | for x in ${CXXFLAGS} |
247 | for x in ${CXXFLAGS}; do |
| 192 | do |
|
|
| 193 | for y in ${ALLOWED_FLAGS} |
248 | for y in ${ALLOWED_FLAGS}; do |
| 194 | do |
|
|
| 195 | flag=${x%%=*} |
249 | flag=${x%%=*} |
| 196 | if [ "${flag%%${y}}" = "" ] |
250 | if [ "${flag%%${y}}" = "" ] ; then |
| 197 | then |
|
|
| 198 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
251 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
| 199 | break |
252 | break |
| 200 | fi |
253 | fi |
| 201 | done |
254 | done |
| 202 | done |
255 | done |
| … | |
… | |
| 207 | fi |
260 | fi |
| 208 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
261 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
| 209 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
262 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
| 210 | fi |
263 | fi |
| 211 | |
264 | |
| 212 | set +f |
265 | set +f # re-enable pathname expansion |
| 213 | |
|
|
| 214 | [ `use debug` ] \ |
|
|
| 215 | && einfo "CFLAGS=\"${NEW_CFLAGS}\"" \ |
|
|
| 216 | && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
|
|
| 217 | |
266 | |
| 218 | export CFLAGS="${NEW_CFLAGS}" |
267 | export CFLAGS="${NEW_CFLAGS}" |
| 219 | export CXXFLAGS="${NEW_CXXFLAGS}" |
268 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 220 | return 0 |
269 | return 0 |
| 221 | } |
270 | } |
| 222 | |
271 | |
| 223 | test_flag() { |
272 | test_flag() { |
| 224 | if gcc -S -xc "$@" -o /dev/null /dev/null >/dev/null 2>&1; then |
273 | if $(tc-getCC) -S -xc "$@" -o "$(emktemp)" /dev/null &>/dev/null; then |
| 225 | echo "$@" |
274 | printf "%s\n" "$*" |
| 226 | return 0 |
275 | return 0 |
| 227 | fi |
276 | fi |
| 228 | return 1 |
277 | return 1 |
| 229 | } |
278 | } |
| 230 | |
279 | |
|
|
280 | test_version_info() { |
|
|
281 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
|
|
282 | return 0 |
|
|
283 | else |
|
|
284 | return 1 |
|
|
285 | fi |
|
|
286 | } |
|
|
287 | |
| 231 | strip-unsupported-flags() { |
288 | strip-unsupported-flags() { |
|
|
289 | local NEW_CFLAGS NEW_CXXFLAGS |
|
|
290 | |
| 232 | for x in ${CFLAGS} ; do |
291 | for x in ${CFLAGS} ; do |
| 233 | NEW_CFLAGS=${NEW_CFLAGS}" ""`test_flag ${x}`" |
292 | NEW_CFLAGS="${NEW_CFLAGS} `test_flag ${x}`" |
| 234 | done |
293 | done |
| 235 | for x in ${CXXFLAGS} ; do |
294 | for x in ${CXXFLAGS} ; do |
| 236 | NEW_CXXFLAGS=${NEW_CXXFLAGS}" ""`test_flag ${x}`" |
295 | NEW_CXXFLAGS="${NEW_CXXFLAGS} `test_flag ${x}`" |
| 237 | done |
296 | done |
| 238 | |
297 | |
| 239 | export CFLAGS="${NEW_CFLAGS}" |
298 | export CFLAGS="${NEW_CFLAGS}" |
| 240 | export CXXFLAGS="${NEW_CXXFLAGS}" |
299 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 241 | } |
300 | } |
| 242 | |
301 | |
| 243 | get-flag() { |
302 | get-flag() { |
|
|
303 | local f findflag="$1" |
|
|
304 | |
| 244 | # this code looks a little flaky but seems to work for |
305 | # this code looks a little flaky but seems to work for |
| 245 | # everything we want ... |
306 | # everything we want ... |
| 246 | # for example, if CFLAGS="-march=i686": |
307 | # for example, if CFLAGS="-march=i686": |
| 247 | # `get-flags -march` == "-march=i686" |
308 | # `get-flag -march` == "-march=i686" |
| 248 | # `get-flags march` == "i686" |
309 | # `get-flag march` == "i686" |
| 249 | local findflag="$1" |
|
|
| 250 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
310 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
| 251 | if [ "${f/${findflag}}" != "${f}" ] ; then |
311 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 252 | echo "${f/-${findflag}=}" |
312 | printf "%s\n" "${f/-${findflag}=}" |
| 253 | return 0 |
313 | return 0 |
| 254 | fi |
314 | fi |
| 255 | done |
315 | done |
| 256 | return 1 |
316 | return 1 |
| 257 | } |
317 | } |
| 258 | |
318 | |
|
|
319 | has_hardened() { |
|
|
320 | test_version_info Hardened && return 0 |
|
|
321 | # the specs file wont exist unless gcc has GCC_SPECS support |
|
|
322 | [ -f "${GCC_SPECS}" -a "${GCC_SPECS}" != "${GCC_SPECS/hardened/}" ] && \ |
|
|
323 | return 0 |
|
|
324 | return 1 |
|
|
325 | } |
|
|
326 | |
|
|
327 | # indicate whether PIC is set |
|
|
328 | has_pic() { |
|
|
329 | [ "${CFLAGS/-fPIC}" != "${CFLAGS}" ] && return 0 |
|
|
330 | [ "${CFLAGS/-fpic}" != "${CFLAGS}" ] && return 0 |
|
|
331 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__)" ] && return 0 |
|
|
332 | return 1 |
|
|
333 | } |
|
|
334 | |
|
|
335 | # indicate whether PIE is set |
|
|
336 | has_pie() { |
|
|
337 | [ "${CFLAGS/-fPIE}" != "${CFLAGS}" ] && return 0 |
|
|
338 | [ "${CFLAGS/-fpie}" != "${CFLAGS}" ] && return 0 |
|
|
339 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIE__)" ] && return 0 |
|
|
340 | # test PIC while waiting for specs to be updated to generate __PIE__ |
|
|
341 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__)" ] && return 0 |
|
|
342 | return 1 |
|
|
343 | } |
|
|
344 | |
|
|
345 | # indicate whether code for SSP is being generated for all functions |
|
|
346 | has_ssp_all() { |
|
|
347 | # note; this matches only -fstack-protector-all |
|
|
348 | [ "${CFLAGS/-fstack-protector-all}" != "${CFLAGS}" ] && return 0 |
|
|
349 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__)" ] && return 0 |
|
|
350 | return 1 |
|
|
351 | } |
|
|
352 | |
|
|
353 | # indicate whether code for SSP is being generated |
|
|
354 | has_ssp() { |
|
|
355 | # note; this matches both -fstack-protector and -fstack-protector-all |
|
|
356 | [ "${CFLAGS/-fstack-protector}" != "${CFLAGS}" ] && return 0 |
|
|
357 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__)" ] && return 0 |
|
|
358 | return 1 |
|
|
359 | } |
|
|
360 | |
|
|
361 | has_m64() { |
|
|
362 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
363 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
364 | # please dont replace this function with test_flag in some future |
|
|
365 | # clean-up! |
|
|
366 | local temp="$(emktemp)" |
|
|
367 | echo "int main() { return(0); }" > ${temp}.c |
|
|
368 | MY_CC=$(tc-getCC) |
|
|
369 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
|
|
370 | local ret=$? |
|
|
371 | rm -f ${temp}.c |
|
|
372 | [ "$ret" != "1" ] && return 0 |
|
|
373 | return 1 |
|
|
374 | } |
|
|
375 | |
|
|
376 | has_m32() { |
|
|
377 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
378 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
379 | # please dont replace this function with test_flag in some future |
|
|
380 | # clean-up! |
|
|
381 | |
|
|
382 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
|
|
383 | |
|
|
384 | local temp="$(emktemp)" |
|
|
385 | echo "int main() { return(0); }" > ${temp}.c |
|
|
386 | MY_CC=$(tc-getCC) |
|
|
387 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
|
|
388 | local ret=$? |
|
|
389 | rm -f ${temp}.c |
|
|
390 | [ "$ret" != "1" ] && return 0 |
|
|
391 | return 1 |
|
|
392 | } |
|
|
393 | |
| 259 | replace-sparc64-flags() { |
394 | replace-sparc64-flags() { |
| 260 | local SPARC64_CPUS="ultrasparc v9" |
395 | local SPARC64_CPUS="ultrasparc v9" |
| 261 | |
396 | |
| 262 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ] |
397 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 263 | then |
|
|
| 264 | for x in ${SPARC64_CPUS} |
398 | for x in ${SPARC64_CPUS}; do |
| 265 | do |
|
|
| 266 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
399 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 267 | done |
400 | done |
| 268 | else |
401 | else |
| 269 | for x in ${SPARC64_CPUS} |
402 | for x in ${SPARC64_CPUS}; do |
| 270 | do |
|
|
| 271 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
403 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 272 | done |
404 | done |
| 273 | fi |
405 | fi |
| 274 | |
406 | |
| 275 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ] |
407 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
| 276 | then |
|
|
| 277 | for x in ${SPARC64_CPUS} |
408 | for x in ${SPARC64_CPUS}; do |
| 278 | do |
|
|
| 279 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
409 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 280 | done |
410 | done |
| 281 | else |
411 | else |
| 282 | for x in ${SPARC64_CPUS} |
412 | for x in ${SPARC64_CPUS}; do |
| 283 | do |
|
|
| 284 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
413 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 285 | done |
414 | done |
| 286 | fi |
415 | fi |
|
|
416 | |
|
|
417 | export CFLAGS CXXFLAGS |
| 287 | } |
418 | } |
| 288 | |
419 | |
| 289 | append-ldflags() { |
420 | append-ldflags() { |
|
|
421 | export LDFLAGS="${LDFLAGS} $*" |
|
|
422 | return 0 |
|
|
423 | } |
|
|
424 | |
|
|
425 | filter-ldflags() { |
|
|
426 | local x |
|
|
427 | |
|
|
428 | # we do this fancy spacing stuff so as to not filter |
|
|
429 | # out part of a flag ... we want flag atoms ! :D |
| 290 | LDFLAGS="${LDFLAGS} $@" |
430 | LDFLAGS=" ${LDFLAGS} " |
|
|
431 | for x in "$@" ; do |
|
|
432 | LDFLAGS=${LDFLAGS// ${x} / } |
|
|
433 | done |
|
|
434 | [[ -z ${LDFLAGS// } ]] \ |
|
|
435 | && LDFLAGS="" \ |
|
|
436 | || LDFLAGS=${LDFLAGS:1:${#LDFLAGS}-2} |
|
|
437 | export LDFLAGS |
| 291 | return 0 |
438 | return 0 |
| 292 | } |
|
|
| 293 | |
|
|
| 294 | etexec-flags() { |
|
|
| 295 | has_version sys-devel/hardened-gcc |
|
|
| 296 | if [ $? == 0 ] ; then |
|
|
| 297 | if [ "`is-flag -yet_exec`" != "true" ]; then |
|
|
| 298 | debug-print ">>> appending flags -yet_exec" |
|
|
| 299 | append-flags -yet_exec |
|
|
| 300 | append-ldflags -yet_exec |
|
|
| 301 | fi |
|
|
| 302 | fi |
|
|
| 303 | } |
439 | } |
| 304 | |
440 | |
| 305 | fstack-flags() { |
441 | fstack-flags() { |
| 306 | has_version sys-devel/hardened-gcc |
442 | if has_ssp; then |
| 307 | if [ $? == 0 ] ; then |
443 | [ -z "`is-flag -fno-stack-protector`" ] && |
| 308 | if [ "`is-flag -yno_propolice`" != "true" ]; then |
444 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
| 309 | debug-print ">>> appending flags -yno_propolice" |
|
|
| 310 | append-flags -yno_propolice |
|
|
| 311 | append-ldflags -yno_propolice |
|
|
| 312 | fi |
445 | fi |
| 313 | fi |
446 | return 0 |
| 314 | } |
447 | } |
|
|
448 | |
|
|
449 | # This is thanks to great work from Paul de Vrieze <gentoo-user@devrieze.net>, |
|
|
450 | # bug #9016. Also thanks to Jukka Salmi <salmi@gmx.net> (bug #13907) for more |
|
|
451 | # fixes. |
|
|
452 | # |
|
|
453 | # Export CFLAGS and CXXFLAGS that are compadible with gcc-2.95.3 |
|
|
454 | gcc2-flags() { |
|
|
455 | if [[ $(tc-arch) == "x86" || $(tc-arch) == "amd64" ]] ; then |
|
|
456 | CFLAGS=${CFLAGS//-mtune=/-mcpu=} |
|
|
457 | CXXFLAGS=${CXXFLAGS//-mtune=/-mcpu=} |
|
|
458 | fi |
|
|
459 | |
|
|
460 | replace-cpu-flags k6-{2,3} k6 |
|
|
461 | replace-cpu-flags athlon{,-{tbird,4,xp,mp}} i686 |
|
|
462 | |
|
|
463 | replace-cpu-flags pentium-mmx i586 |
|
|
464 | replace-cpu-flags pentium{2,3,4} i686 |
|
|
465 | |
|
|
466 | replace-cpu-flags ev6{7,8} ev6 |
|
|
467 | |
|
|
468 | export CFLAGS CXXFLAGS |
|
|
469 | } |