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