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