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