1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.68 2004/08/08 21:07:21 lv Exp $
#
# Author Bart Verwilst <verwilst@gentoo.org>
ECLASS=flag-o-matic
INHERITED="$INHERITED $ECLASS"
# Please leave ${IUSE} in this until portage .51 is stable, otherwise
# IUSE gets clobbered.
IUSE="${IUSE} debug"
#
#### filter-flags <flags> ####
# Remove particular flags from C[XX]FLAGS
# Matches only complete flags
#
#### append-flags <flags> ####
# Add extra flags to your current C[XX]FLAGS
#
#### replace-flags <orig.flag> <new.flag> ###
# Replace a flag by another one
#
#### replace-cpu-flags <new.cpu> <old.cpus> ###
# Replace march/mcpu flags that specify <old.cpus>
# with flags that specify <new.cpu>
#
#### is-flag <flag> ####
# Returns "true" if flag is set in C[XX]FLAGS
# Matches only complete a flag
#
#### strip-flags ####
# Strip C[XX]FLAGS of everything except known
# good options.
#
#### strip-unsupported-flags ####
# Strip C[XX]FLAGS of any flags not supported by
# installed version of gcc
#
#### get-flag <flag> ####
# Find and echo the value for a particular flag
#
#### replace-sparc64-flags ####
# Sets mcpu to v8 and uses the original value
# as mtune if none specified.
#
#### filter-mfpmath <math types> ####
# Remove specified math types from the fpmath specification
# If the user has -mfpmath=sse,386, running `filter-mfpmath sse`
# will leave the user with -mfpmath=386
#
#### append-ldflags ####
# Add extra flags to your current LDFLAGS
#
#### filter-ldflags <flags> ####
# Remove particular flags from LDFLAGS
# Matches only complete flags
#
#### etexec-flags ####
# hooked function for hardened gcc that appends
# -fno-pic to {C,CXX,LD}FLAGS
# when a package is filtering -fpic, -fPIC, -fpie, -fPIE
#
#### fstack-flags ####
# hooked function for hardened gcc that appends
# -fno-stack-protector to {C,CXX,LD}FLAGS
# when a package is filtering -fstack-protector, -fstack-protector-all
# notice: modern automatic specs files will also suppress -fstack-protector-all
# when only -fno-stack-protector is given
#
# C[XX]FLAGS that we allow in strip-flags
setup-allowed-flags() {
if [ -z "${ALLOWED_FLAGS}" ] ; then
export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -fno-stack-protector -fno-pie -fno-unit-at-a-time -pipe -g"
case "${ARCH}" in
mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;;
amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC -m64" ;;
x86) ALLOWED_FLAGS="${ALLOWED_FLAGS} -m32" ;;
alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;;
ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;;
esac
fi
# allow a bunch of flags that negate features / control ABI
ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all"
case "${ARCH}" in
x86|amd64|ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow" ;;
esac
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"
# C[XX]FLAGS that we are think is ok, but needs testing
# NOTE: currently -Os have issues with gcc3 and K6* arch's
export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays"
return 0
}
filter-flags() {
local x f fset
declare -a new_CFLAGS new_CXXFLAGS
for x in "$@" ; do
case "${x}" in
-fPIC|-fpic|-fPIE|-fpie|-pie) etexec-flags;;
-fstack-protector|-fstack-protector-all) fstack-flags;;
esac
done
for fset in CFLAGS CXXFLAGS; do
# Looping over the flags instead of using a global
# substitution ensures that we're working with flag atoms.
# Otherwise globs like -O* have the potential to wipe out the
# list of flags.
for f in ${!fset}; do
for x in "$@"; do
# Note this should work with globs like -O*
[[ ${f} == ${x} ]] && continue 2
done
eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f}
done
eval export ${fset}=\${new_${fset}\[*]}
done
return 0
}
filter-lfs-flags() {
filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
}
append-lfs-flags() {
append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
}
append-flags() {
export CFLAGS="${CFLAGS} $*"
export CXXFLAGS="${CXXFLAGS} $*"
[ -n "`is-flag -fno-stack-protector`" -o \
-n "`is-flag -fno-stack-protector-all`" ] && fstack-flags
return 0
}
replace-flags() {
local f fset
declare -a new_CFLAGS new_CXXFLAGS
for fset in CFLAGS CXXFLAGS; do
# Looping over the flags instead of using a global
# substitution ensures that we're working with flag atoms.
# Otherwise globs like -O* have the potential to wipe out the
# list of flags.
for f in ${!fset}; do
# Note this should work with globs like -O*
[[ ${f} == ${1} ]] && f=${2}
eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f}
done
eval export ${fset}=\${new_${fset}\[*]}
done
return 0
}
replace-cpu-flags() {
local oldcpu newcpu="$1" ; shift
for oldcpu in "$@" ; do
# quote to make sure that no globbing is done (particularly on
# ${oldcpu} prior to calling replace-flags
replace-flags "-march=${oldcpu}" "-march=${newcpu}"
replace-flags "-mcpu=${oldcpu}" "-mcpu=${newcpu}"
replace-flags "-mtune=${oldcpu}" "-mtune=${newcpu}"
done
return 0
}
is-flag() {
local x
for x in ${CFLAGS} ${CXXFLAGS} ; do
# Note this should work with globs like -mcpu=ultrasparc*
if [[ ${x} == ${1} ]]; then
echo true
return 0
fi
done
return 1
}
filter-mfpmath() {
local orig_mfpmath new_math prune_math
# save the original -mfpmath flag
orig_mfpmath="`get-flag -mfpmath`"
# get the value of the current -mfpmath flag
new_math=" `get-flag mfpmath | tr , ' '` "
# figure out which math values are to be removed
prune_math=""
for prune_math in "$@" ; do
new_math="${new_math/ ${prune_math} / }"
done
new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`"
if [ -z "${new_math}" ] ; then
# if we're removing all user specified math values are
# slated for removal, then we just filter the flag
filter-flags ${orig_mfpmath}
else
# if we only want to filter some of the user specified
# math values, then we replace the current flag
replace-flags ${orig_mfpmath} -mfpmath=${new_math}
fi
return 0
}
strip-flags() {
local x y flag NEW_CFLAGS NEW_CXXFLAGS
setup-allowed-flags
local NEW_CFLAGS=""
local NEW_CXXFLAGS=""
# Allow unstable C[XX]FLAGS if we are using unstable profile ...
if has ~${ARCH} ${ACCEPT_KEYWORDS} ; then
use debug && einfo "Enabling the use of some unstable flags"
ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}"
fi
set -f # disable pathname expansion
for x in ${CFLAGS}; do
for y in ${ALLOWED_FLAGS}; do
flag=${x%%=*}
if [ "${flag%%${y}}" = "" ] ; then
NEW_CFLAGS="${NEW_CFLAGS} ${x}"
break
fi
done
done
for x in ${CXXFLAGS}; do
for y in ${ALLOWED_FLAGS}; do
flag=${x%%=*}
if [ "${flag%%${y}}" = "" ] ; then
NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}"
break
fi
done
done
# In case we filtered out all optimization flags fallback to -O2
if [ "${CFLAGS/-O}" != "${CFLAGS}" -a "${NEW_CFLAGS/-O}" = "${NEW_CFLAGS}" ]; then
NEW_CFLAGS="${NEW_CFLAGS} -O2"
fi
if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then
NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2"
fi
set +f # re-enable pathname expansion
export CFLAGS="${NEW_CFLAGS}"
export CXXFLAGS="${NEW_CXXFLAGS}"
return 0
}
test_flag() {
local cc=${CC:-gcc} ; cc=${cc%% *}
if ${cc} -S -xc "$@" -o /dev/null /dev/null &>/dev/null; then
printf "%s\n" "$*"
return 0
fi
return 1
}
test_version_info() {
local cc=${CC:-gcc} ; cc=${cc%% *}
if [[ $(${cc} --version 2>&1) == *$1* ]]; then
return 0
else
return 1
fi
}
strip-unsupported-flags() {
local NEW_CFLAGS NEW_CXXFLAGS
for x in ${CFLAGS} ; do
NEW_CFLAGS="${NEW_CFLAGS} `test_flag ${x}`"
done
for x in ${CXXFLAGS} ; do
NEW_CXXFLAGS="${NEW_CXXFLAGS} `test_flag ${x}`"
done
export CFLAGS="${NEW_CFLAGS}"
export CXXFLAGS="${NEW_CXXFLAGS}"
}
get-flag() {
local f findflag="$1"
# this code looks a little flaky but seems to work for
# everything we want ...
# for example, if CFLAGS="-march=i686":
# `get-flag -march` == "-march=i686"
# `get-flag march` == "i686"
for f in ${CFLAGS} ${CXXFLAGS} ; do
if [ "${f/${findflag}}" != "${f}" ] ; then
printf "%s\n" "${f/-${findflag}=}"
return 0
fi
done
return 1
}
has_hardened() {
test_version_info Hardened
return $?
}
has_pic() {
[ "${CFLAGS/-fPIC}" != "${CFLAGS}" ] && return 0
[ "${CFLAGS/-fpic}" != "${CFLAGS}" ] && return 0
test_version_info pie && return 0
return 1
}
has_pie() {
[ "${CFLAGS/-fPIE}" != "${CFLAGS}" ] && return 0
[ "${CFLAGS/-fpie}" != "${CFLAGS}" ] && return 0
test_version_info pie && return 0
return 1
}
has_ssp() {
[ "${CFLAGS/-fstack-protector}" != "${CFLAGS}" ] && return 0
test_version_info ssp && return 0
return 1
}
has_m64() {
# this doesnt test if the flag is accepted, it tests if the flag
# actually -WORKS-. non-multilib gcc will take both -m32 and -m64!
# please dont replace this function with test_flag in some future
# clean-up!
temp=`mktemp`
echo "int main() { return(0); }" > ${temp}.c
${CC/ .*/} -m64 -o /dev/null ${temp}.c > /dev/null 2>&1
ret=$?
rm -f ${temp}.c
[ "$ret" != "1" ] && return 0
return 1
}
has_m32() {
# this doesnt test if the flag is accepted, it tests if the flag
# actually -WORKS-. non-multilib gcc will take both -m32 and -m64!
# please dont replace this function with test_flag in some future
# clean-up!
temp=`mktemp`
echo "int main() { return(0); }" > ${temp}.c
${CC/ .*/} -m32 -o /dev/null ${temp}.c > /dev/null 2>&1
ret=$?
rm -f ${temp}.c
[ "$ret" != "1" ] && return 0
return 1
}
replace-sparc64-flags() {
local SPARC64_CPUS="ultrasparc v9"
if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then
for x in ${SPARC64_CPUS}; do
CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}"
done
else
for x in ${SPARC64_CPUS}; do
CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}"
done
fi
if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then
for x in ${SPARC64_CPUS}; do
CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}"
done
else
for x in ${SPARC64_CPUS}; do
CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}"
done
fi
export CFLAGS CXXFLAGS
}
append-ldflags() {
export LDFLAGS="${LDFLAGS} $*"
return 0
}
filter-ldflags() {
local x
# we do this fancy spacing stuff so as to not filter
# out part of a flag ... we want flag atoms ! :D
LDFLAGS=" ${LDFLAGS} "
for x in "$@" ; do
LDFLAGS="${LDFLAGS// ${x} / }"
done
LDFLAGS="${LDFLAGS:1:${#LDFLAGS}-2}"
export LDFLAGS
return 0
}
etexec-flags() {
# if you're not using a hardened compiler you wont need this
# PIC/no-pic kludge in the first place.
has_hardened || return 0
# this kludge breaks on amd64, and probably other -fPIC dependant
# archs.
use amd64 && return 0
if has_pie || has_pic; then
[ -z "`is-flag -fno-pic`" ] &&
export CFLAGS="${CFLAGS} `test_flag -fno-pic`"
[ -z "`is-flag -nopie`" ] &&
export CFLAGS="${CFLAGS} `test_flag -nopie`"
fi
return 0
}
fstack-flags() {
if has_ssp; then
[ -z "`is-flag -fno-stack-protector`" ] &&
export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`"
fi
return 0
}
|