| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2012 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.62 2004/07/15 04:59:44 lv Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.178 2012/10/30 20:20:37 vapier Exp $ |
| 4 | # |
|
|
| 5 | # Author Bart Verwilst <verwilst@gentoo.org> |
|
|
| 6 | |
4 | |
| 7 | ECLASS=flag-o-matic |
5 | # @ECLASS: flag-o-matic.eclass |
| 8 | INHERITED="$INHERITED $ECLASS" |
6 | # @MAINTAINER: |
| 9 | IUSE="$IUSE debug" |
7 | # toolchain@gentoo.org |
|
|
8 | # @BLURB: common functions to manipulate and query toolchain flags |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # This eclass contains a suite of functions to help developers sanely |
|
|
11 | # and safely manage toolchain flags in their builds. |
| 10 | |
12 | |
| 11 | # |
13 | if [[ ${___ECLASS_ONCE_FLAG_O_MATIC} != "recur -_+^+_- spank" ]] ; then |
| 12 | #### filter-flags <flags> #### |
14 | ___ECLASS_ONCE_FLAG_O_MATIC="recur -_+^+_- spank" |
| 13 | # Remove particular flags from C[XX]FLAGS |
|
|
| 14 | # Matches only complete flags |
|
|
| 15 | # |
|
|
| 16 | #### append-flags <flags> #### |
|
|
| 17 | # Add extra flags to your current C[XX]FLAGS |
|
|
| 18 | # |
|
|
| 19 | #### replace-flags <orig.flag> <new.flag> ### |
|
|
| 20 | # Replace a flag by another one |
|
|
| 21 | # |
|
|
| 22 | #### replace-cpu-flags <new.cpu> <old.cpus> ### |
|
|
| 23 | # Replace march/mcpu flags that specify <old.cpus> |
|
|
| 24 | # with flags that specify <new.cpu> |
|
|
| 25 | # |
|
|
| 26 | #### is-flag <flag> #### |
|
|
| 27 | # Returns "true" if flag is set in C[XX]FLAGS |
|
|
| 28 | # Matches only complete a flag |
|
|
| 29 | # |
|
|
| 30 | #### strip-flags #### |
|
|
| 31 | # Strip C[XX]FLAGS of everything except known |
|
|
| 32 | # good options. |
|
|
| 33 | # |
|
|
| 34 | #### strip-unsupported-flags #### |
|
|
| 35 | # Strip C[XX]FLAGS of any flags not supported by |
|
|
| 36 | # installed version of gcc |
|
|
| 37 | # |
|
|
| 38 | #### get-flag <flag> #### |
|
|
| 39 | # Find and echo the value for a particular flag |
|
|
| 40 | # |
|
|
| 41 | #### replace-sparc64-flags #### |
|
|
| 42 | # Sets mcpu to v8 and uses the original value |
|
|
| 43 | # as mtune if none specified. |
|
|
| 44 | # |
|
|
| 45 | #### filter-mfpmath <math types> #### |
|
|
| 46 | # Remove specified math types from the fpmath specification |
|
|
| 47 | # If the user has -mfpmath=sse,386, running `filter-mfpmath sse` |
|
|
| 48 | # will leave the user with -mfpmath=386 |
|
|
| 49 | # |
|
|
| 50 | #### append-ldflags #### |
|
|
| 51 | # Add extra flags to your current LDFLAGS |
|
|
| 52 | # |
|
|
| 53 | #### filter-ldflags <flags> #### |
|
|
| 54 | # Remove particular flags from LDFLAGS |
|
|
| 55 | # Matches only complete flags |
|
|
| 56 | # |
|
|
| 57 | #### etexec-flags #### |
|
|
| 58 | # hooked function for hardened gcc that appends |
|
|
| 59 | # -fno-pic to {C,CXX,LD}FLAGS |
|
|
| 60 | # when a package is filtering -fpic, -fPIC, -fpie, -fPIE |
|
|
| 61 | # |
|
|
| 62 | #### fstack-flags #### |
|
|
| 63 | # hooked function for hardened gcc that appends |
|
|
| 64 | # -fno-stack-protector to {C,CXX,LD}FLAGS |
|
|
| 65 | # when a package is filtering -fstack-protector, -fstack-protector-all |
|
|
| 66 | # notice: modern automatic specs files will also suppress -fstack-protector-all |
|
|
| 67 | # when only -fno-stack-protector is given |
|
|
| 68 | # |
|
|
| 69 | |
15 | |
|
|
16 | inherit eutils toolchain-funcs multilib |
|
|
17 | |
|
|
18 | # Return all the flag variables that our high level funcs operate on. |
|
|
19 | all-flag-vars() { |
|
|
20 | echo {C,CPP,CXX,CCAS,F,FC,LD}FLAGS |
|
|
21 | } |
|
|
22 | |
| 70 | # C[XX]FLAGS that we allow in strip-flags |
23 | # {C,CPP,CXX,CCAS,F,FC,LD}FLAGS that we allow in strip-flags |
|
|
24 | # Note: shell globs and character lists are allowed |
| 71 | setup-allowed-flags() { |
25 | setup-allowed-flags() { |
| 72 | if [ -z "${ALLOWED_FLAGS}" ] ; then |
26 | ALLOWED_FLAGS="-pipe" |
| 73 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -fno-unit-at-a-time -pipe -g" |
27 | ALLOWED_FLAGS+=" -O -O1 -O2 -Os -mcpu -march -mtune" |
|
|
28 | ALLOWED_FLAGS+=" -fstack-protector -fstack-protector-all" |
|
|
29 | ALLOWED_FLAGS+=" -fbounds-checking -fno-strict-overflow" |
|
|
30 | ALLOWED_FLAGS+=" -fno-PIE -fno-pie -fno-unit-at-a-time" |
|
|
31 | ALLOWED_FLAGS+=" -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+" |
|
|
32 | ALLOWED_FLAGS+=" -fno-ident -fpermissive" |
|
|
33 | ALLOWED_FLAGS+=" -W* -w" |
|
|
34 | |
|
|
35 | # allow a bunch of flags that negate features / control ABI |
|
|
36 | ALLOWED_FLAGS+=" -fno-stack-protector -fno-stack-protector-all \ |
|
|
37 | -fno-strict-aliasing -fno-bounds-checking -fstrict-overflow \ |
|
|
38 | -fno-omit-frame-pointer" |
|
|
39 | ALLOWED_FLAGS+=" -mregparm -mno-app-regs -mapp-regs -mno-mmx -mno-sse \ |
|
|
40 | -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 -mno-sse4.2 \ |
|
|
41 | -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow -mno-popcnt \ |
|
|
42 | -mno-abm -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -mplt \ |
|
|
43 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
|
|
44 | -mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe \ |
|
|
45 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs -mflat -mno-flat \ |
|
|
46 | -mno-faster-structs -mfaster-structs -m32 -m64 -mx32 -mabi \ |
|
|
47 | -mlittle-endian -mbig-endian -EL -EB -fPIC -mlive-g0 -mcmodel \ |
|
|
48 | -mstack-bias -mno-stack-bias -msecure-plt -m*-toc -mfloat-abi=* \ |
|
|
49 | -D* -U*" |
|
|
50 | |
|
|
51 | # 4.5 |
|
|
52 | ALLOWED_FLAGS+=" -mno-fma4 -mno-movbe -mno-xop -mno-lwp" |
|
|
53 | # 4.6 |
|
|
54 | ALLOWED_FLAGS+=" -mno-fsgsbase -mno-rdrnd -mno-f16c -mno-bmi -mno-tbm" |
|
|
55 | # 4.7 |
|
|
56 | ALLOWED_FLAGS+=" -mno-avx2 -mno-bmi2 -mno-fma -mno-lzcnt" |
|
|
57 | |
|
|
58 | # CPPFLAGS and LDFLAGS |
|
|
59 | ALLOWED_FLAGS+=" -I* -L* -R* -Wl,*" |
|
|
60 | |
|
|
61 | export ALLOWED_FLAGS |
|
|
62 | return 0 |
|
|
63 | } |
|
|
64 | |
|
|
65 | # inverted filters for hardened compiler. This is trying to unpick |
|
|
66 | # the hardened compiler defaults. |
|
|
67 | _filter-hardened() { |
|
|
68 | local f |
|
|
69 | for f in "$@" ; do |
| 74 | case "${ARCH}" in |
70 | case "${f}" in |
| 75 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
71 | # Ideally we should only concern ourselves with PIE flags, |
| 76 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC -m64" ;; |
72 | # not -fPIC or -fpic, but too many places filter -fPIC without |
| 77 | x86) ALLOWED_FLAGS="${ALLOWED_FLAGS} -m32" ;; |
73 | # thinking about -fPIE. |
| 78 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
74 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
| 79 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
75 | gcc-specs-pie || continue |
|
|
76 | is-flagq -nopie || append-flags -nopie;; |
|
|
77 | -fstack-protector) |
|
|
78 | gcc-specs-ssp || continue |
|
|
79 | is-flagq -fno-stack-protector || append-flags $(test-flags -fno-stack-protector);; |
|
|
80 | -fstack-protector-all) |
|
|
81 | gcc-specs-ssp-to-all || continue |
|
|
82 | is-flagq -fno-stack-protector-all || append-flags $(test-flags -fno-stack-protector-all);; |
|
|
83 | -fno-strict-overflow) |
|
|
84 | gcc-specs-nostrict || continue |
|
|
85 | is-flagq -fstrict-overflow || append-flags $(test-flags -fstrict-overflow);; |
| 80 | esac |
86 | esac |
| 81 | fi |
87 | done |
| 82 | |
|
|
| 83 | # C[XX]FLAGS that we are think is ok, but needs testing |
|
|
| 84 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
|
|
| 85 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
|
|
| 86 | return 0 |
|
|
| 87 | } |
88 | } |
| 88 | |
89 | |
|
|
90 | # Remove occurrences of strings from variable given in $1 |
|
|
91 | # Strings removed are matched as globs, so for example |
|
|
92 | # '-O*' would remove -O1, -O2 etc. |
|
|
93 | _filter-var() { |
|
|
94 | local f x var=$1 new=() |
|
|
95 | shift |
|
|
96 | |
|
|
97 | for f in ${!var} ; do |
|
|
98 | for x in "$@" ; do |
|
|
99 | # Note this should work with globs like -O* |
|
|
100 | [[ ${f} == ${x} ]] && continue 2 |
|
|
101 | done |
|
|
102 | new+=( "${f}" ) |
|
|
103 | done |
|
|
104 | eval export ${var}=\""${new[*]}"\" |
|
|
105 | } |
|
|
106 | |
|
|
107 | # @FUNCTION: filter-flags |
|
|
108 | # @USAGE: <flags> |
|
|
109 | # @DESCRIPTION: |
|
|
110 | # Remove particular <flags> from {C,CPP,CXX,CCAS,F,FC,LD}FLAGS. Accepts shell globs. |
| 89 | filter-flags() { |
111 | filter-flags() { |
| 90 | local x f fset |
112 | _filter-hardened "$@" |
| 91 | declare -a new_CFLAGS new_CXXFLAGS |
113 | local v |
| 92 | |
114 | for v in $(all-flag-vars) ; do |
| 93 | for x in "$@" ; do |
115 | _filter-var ${v} "$@" |
| 94 | case "${x}" in |
|
|
| 95 | -fPIC|-fpic|-fPIE|-fpie|-pie) etexec-flags;; |
|
|
| 96 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
|
|
| 97 | esac |
|
|
| 98 | done |
|
|
| 99 | |
|
|
| 100 | for fset in CFLAGS CXXFLAGS; do |
|
|
| 101 | for f in ${!fset}; do |
|
|
| 102 | for x in "$@"; do |
|
|
| 103 | # Note this should work with globs like -O* |
|
|
| 104 | [[ ${f} == ${x} ]] && continue 2 |
|
|
| 105 | done |
|
|
| 106 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
|
|
| 107 | done |
116 | done |
| 108 | eval export ${fset}=\${new_${fset}\[*]} |
|
|
| 109 | done |
|
|
| 110 | |
|
|
| 111 | return 0 |
117 | return 0 |
| 112 | } |
118 | } |
| 113 | |
119 | |
|
|
120 | # @FUNCTION: filter-lfs-flags |
|
|
121 | # @DESCRIPTION: |
|
|
122 | # Remove flags that enable Large File Support. |
| 114 | filter-lfs-flags() { |
123 | filter-lfs-flags() { |
|
|
124 | [[ $# -ne 0 ]] && die "filter-lfs-flags takes no arguments" |
|
|
125 | # http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html |
|
|
126 | # _LARGEFILE_SOURCE: enable support for new LFS funcs (ftello/etc...) |
|
|
127 | # _LARGEFILE64_SOURCE: enable support for 64bit variants (off64_t/fseeko64/etc...) |
|
|
128 | # _FILE_OFFSET_BITS: default to 64bit variants (off_t is defined as off64_t) |
| 115 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
129 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 116 | } |
130 | } |
| 117 | |
131 | |
|
|
132 | # @FUNCTION: filter-ldflags |
|
|
133 | # @USAGE: <flags> |
|
|
134 | # @DESCRIPTION: |
|
|
135 | # Remove particular <flags> from LDFLAGS. Accepts shell globs. |
|
|
136 | filter-ldflags() { |
|
|
137 | _filter-var LDFLAGS "$@" |
|
|
138 | return 0 |
|
|
139 | } |
|
|
140 | |
|
|
141 | # @FUNCTION: append-cppflags |
|
|
142 | # @USAGE: <flags> |
|
|
143 | # @DESCRIPTION: |
|
|
144 | # Add extra <flags> to the current CPPFLAGS. |
|
|
145 | append-cppflags() { |
|
|
146 | [[ $# -eq 0 ]] && return 0 |
|
|
147 | export CPPFLAGS="${CPPFLAGS} $*" |
|
|
148 | return 0 |
|
|
149 | } |
|
|
150 | |
|
|
151 | # @FUNCTION: append-cflags |
|
|
152 | # @USAGE: <flags> |
|
|
153 | # @DESCRIPTION: |
|
|
154 | # Add extra <flags> to the current CFLAGS. |
|
|
155 | append-cflags() { |
|
|
156 | [[ $# -eq 0 ]] && return 0 |
|
|
157 | export CFLAGS=$(test-flags-CC ${CFLAGS} "$@") |
|
|
158 | return 0 |
|
|
159 | } |
|
|
160 | |
|
|
161 | # @FUNCTION: append-cxxflags |
|
|
162 | # @USAGE: <flags> |
|
|
163 | # @DESCRIPTION: |
|
|
164 | # Add extra <flags> to the current CXXFLAGS. |
|
|
165 | append-cxxflags() { |
|
|
166 | [[ $# -eq 0 ]] && return 0 |
|
|
167 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS} "$@") |
|
|
168 | return 0 |
|
|
169 | } |
|
|
170 | |
|
|
171 | # @FUNCTION: append-fflags |
|
|
172 | # @USAGE: <flags> |
|
|
173 | # @DESCRIPTION: |
|
|
174 | # Add extra <flags> to the current {F,FC}FLAGS. |
|
|
175 | append-fflags() { |
|
|
176 | [[ $# -eq 0 ]] && return 0 |
|
|
177 | export FFLAGS=$(test-flags-F77 ${FFLAGS} "$@") |
|
|
178 | export FCFLAGS=$(test-flags-FC ${FCFLAGS} "$@") |
|
|
179 | return 0 |
|
|
180 | } |
|
|
181 | |
|
|
182 | # @FUNCTION: append-lfs-flags |
|
|
183 | # @DESCRIPTION: |
|
|
184 | # Add flags that enable Large File Support. |
| 118 | append-lfs-flags() { |
185 | append-lfs-flags() { |
|
|
186 | [[ $# -ne 0 ]] && die "append-lfs-flags takes no arguments" |
|
|
187 | # see comments in filter-lfs-flags func for meaning of these |
| 119 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
188 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 120 | } |
189 | } |
| 121 | |
190 | |
|
|
191 | # @FUNCTION: append-ldflags |
|
|
192 | # @USAGE: <flags> |
|
|
193 | # @DESCRIPTION: |
|
|
194 | # Add extra <flags> to the current LDFLAGS. |
|
|
195 | append-ldflags() { |
|
|
196 | [[ $# -eq 0 ]] && return 0 |
|
|
197 | local flag |
|
|
198 | for flag in "$@"; do |
|
|
199 | [[ ${flag} == -l* ]] && \ |
|
|
200 | eqawarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS" |
|
|
201 | done |
|
|
202 | |
|
|
203 | export LDFLAGS="${LDFLAGS} $*" |
|
|
204 | return 0 |
|
|
205 | } |
|
|
206 | |
|
|
207 | # @FUNCTION: append-flags |
|
|
208 | # @USAGE: <flags> |
|
|
209 | # @DESCRIPTION: |
|
|
210 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
| 122 | append-flags() { |
211 | append-flags() { |
| 123 | export CFLAGS="${CFLAGS} $*" |
212 | [[ $# -eq 0 ]] && return 0 |
| 124 | export CXXFLAGS="${CXXFLAGS} $*" |
213 | case " $* " in |
| 125 | [ -n "`is-flag -fno-stack-protector`" -o \ |
214 | *' '-[DIU]*) eqawarn 'please use append-cppflags for preprocessor flags' ;; |
| 126 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
215 | *' '-L*|\ |
|
|
216 | *' '-Wl,*) eqawarn 'please use append-ldflags for linker flags' ;; |
|
|
217 | esac |
|
|
218 | append-cflags "$@" |
|
|
219 | append-cxxflags "$@" |
|
|
220 | append-fflags "$@" |
| 127 | return 0 |
221 | return 0 |
| 128 | } |
222 | } |
| 129 | |
223 | |
|
|
224 | # @FUNCTION: replace-flags |
|
|
225 | # @USAGE: <old> <new> |
|
|
226 | # @DESCRIPTION: |
|
|
227 | # Replace the <old> flag with <new>. Accepts shell globs for <old>. |
| 130 | replace-flags() { |
228 | replace-flags() { |
| 131 | # we do this fancy spacing stuff so as to not filter |
229 | [[ $# != 2 ]] && die "Usage: replace-flags <old flag> <new flag>" |
| 132 | # out part of a flag ... we want flag atoms ! :D |
|
|
| 133 | CFLAGS=" ${CFLAGS} " |
|
|
| 134 | CXXFLAGS=" ${CXXFLAGS} " |
|
|
| 135 | CFLAGS="${CFLAGS// ${1} / ${2} }" |
|
|
| 136 | CXXFLAGS="${CXXFLAGS// ${1} / ${2} }" |
|
|
| 137 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
|
|
| 138 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
|
|
| 139 | export CFLAGS CXXFLAGS |
|
|
| 140 | return 0 |
|
|
| 141 | } |
|
|
| 142 | |
230 | |
|
|
231 | local f var new |
|
|
232 | for var in $(all-flag-vars) ; do |
|
|
233 | # Looping over the flags instead of using a global |
|
|
234 | # substitution ensures that we're working with flag atoms. |
|
|
235 | # Otherwise globs like -O* have the potential to wipe out the |
|
|
236 | # list of flags. |
|
|
237 | new=() |
|
|
238 | for f in ${!var} ; do |
|
|
239 | # Note this should work with globs like -O* |
|
|
240 | [[ ${f} == ${1} ]] && f=${2} |
|
|
241 | new+=( "${f}" ) |
|
|
242 | done |
|
|
243 | eval export ${var}=\""${new[*]}"\" |
|
|
244 | done |
|
|
245 | |
|
|
246 | return 0 |
|
|
247 | } |
|
|
248 | |
|
|
249 | # @FUNCTION: replace-cpu-flags |
|
|
250 | # @USAGE: <old> <new> |
|
|
251 | # @DESCRIPTION: |
|
|
252 | # Replace cpu flags (like -march/-mcpu/-mtune) that select the <old> cpu |
|
|
253 | # with flags that select the <new> cpu. Accepts shell globs for <old>. |
| 143 | replace-cpu-flags() { |
254 | replace-cpu-flags() { |
| 144 | local oldcpu newcpu="$1" ; shift |
255 | local newcpu="$#" ; newcpu="${!newcpu}" |
| 145 | for oldcpu in "$@" ; do |
256 | while [ $# -gt 1 ] ; do |
|
|
257 | # quote to make sure that no globbing is done (particularly on |
|
|
258 | # ${oldcpu}) prior to calling replace-flags |
| 146 | replace-flags -march=${oldcpu} -march=${newcpu} |
259 | replace-flags "-march=${1}" "-march=${newcpu}" |
| 147 | replace-flags -mcpu=${oldcpu} -mcpu=${newcpu} |
260 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
| 148 | replace-flags -mtune=${oldcpu} -mtune=${newcpu} |
261 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
|
|
262 | shift |
| 149 | done |
263 | done |
|
|
264 | return 0 |
|
|
265 | } |
|
|
266 | |
|
|
267 | _is_flagq() { |
|
|
268 | local x |
|
|
269 | for x in ${!1} ; do |
|
|
270 | [[ ${x} == $2 ]] && return 0 |
|
|
271 | done |
| 150 | return 0 |
272 | return 1 |
| 151 | } |
273 | } |
| 152 | |
274 | |
|
|
275 | # @FUNCTION: is-flagq |
|
|
276 | # @USAGE: <flag> |
|
|
277 | # @DESCRIPTION: |
|
|
278 | # Returns shell true if <flag> is in {C,CXX,F,FC}FLAGS, else returns shell false. Accepts shell globs. |
|
|
279 | is-flagq() { |
|
|
280 | [[ -n $2 ]] && die "Usage: is-flag <flag>" |
|
|
281 | |
|
|
282 | local var |
|
|
283 | for var in $(all-flag-vars) ; do |
|
|
284 | _is_flagq ${var} "$1" && return 0 |
|
|
285 | done |
|
|
286 | return 1 |
|
|
287 | } |
|
|
288 | |
|
|
289 | # @FUNCTION: is-flag |
|
|
290 | # @USAGE: <flag> |
|
|
291 | # @DESCRIPTION: |
|
|
292 | # Echo's "true" if flag is set in {C,CXX,F,FC}FLAGS. Accepts shell globs. |
| 153 | is-flag() { |
293 | is-flag() { |
| 154 | local x |
294 | is-flagq "$@" && echo true |
| 155 | |
|
|
| 156 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
|
|
| 157 | if [ "${x}" == "$1" ] ; then |
|
|
| 158 | echo true |
|
|
| 159 | return 0 |
|
|
| 160 | fi |
|
|
| 161 | done |
|
|
| 162 | return 1 |
|
|
| 163 | } |
295 | } |
| 164 | |
296 | |
|
|
297 | # @FUNCTION: is-ldflagq |
|
|
298 | # @USAGE: <flag> |
|
|
299 | # @DESCRIPTION: |
|
|
300 | # Returns shell true if <flag> is in LDFLAGS, else returns shell false. Accepts shell globs. |
|
|
301 | is-ldflagq() { |
|
|
302 | [[ -n $2 ]] && die "Usage: is-ldflag <flag>" |
|
|
303 | _is_flagq LDFLAGS $1 |
|
|
304 | } |
|
|
305 | |
|
|
306 | # @FUNCTION: is-ldflag |
|
|
307 | # @USAGE: <flag> |
|
|
308 | # @DESCRIPTION: |
|
|
309 | # Echo's "true" if flag is set in LDFLAGS. Accepts shell globs. |
|
|
310 | is-ldflag() { |
|
|
311 | is-ldflagq "$@" && echo true |
|
|
312 | } |
|
|
313 | |
|
|
314 | # @FUNCTION: filter-mfpmath |
|
|
315 | # @USAGE: <math types> |
|
|
316 | # @DESCRIPTION: |
|
|
317 | # Remove specified math types from the fpmath flag. For example, if the user |
|
|
318 | # has -mfpmath=sse,386, running `filter-mfpmath sse` will leave the user with |
|
|
319 | # -mfpmath=386. |
| 165 | filter-mfpmath() { |
320 | filter-mfpmath() { |
| 166 | local orig_mfpmath new_math prune_math |
321 | local orig_mfpmath new_math prune_math |
| 167 | |
322 | |
| 168 | # save the original -mfpmath flag |
323 | # save the original -mfpmath flag |
| 169 | orig_mfpmath="`get-flag -mfpmath`" |
324 | orig_mfpmath=$(get-flag -mfpmath) |
| 170 | # get the value of the current -mfpmath flag |
325 | # get the value of the current -mfpmath flag |
| 171 | new_math=" `get-flag mfpmath | tr , ' '` " |
326 | new_math=$(get-flag mfpmath) |
|
|
327 | new_math=" ${new_math//,/ } " |
| 172 | # figure out which math values are to be removed |
328 | # figure out which math values are to be removed |
| 173 | prune_math="" |
329 | prune_math="" |
| 174 | for prune_math in "$@" ; do |
330 | for prune_math in "$@" ; do |
| 175 | new_math="${new_math/ ${prune_math} / }" |
331 | new_math=${new_math/ ${prune_math} / } |
| 176 | done |
332 | done |
| 177 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
333 | new_math=$(echo ${new_math}) |
|
|
334 | new_math=${new_math// /,} |
| 178 | |
335 | |
| 179 | if [ -z "${new_math}" ] ; then |
336 | if [[ -z ${new_math} ]] ; then |
| 180 | # if we're removing all user specified math values are |
337 | # if we're removing all user specified math values are |
| 181 | # slated for removal, then we just filter the flag |
338 | # slated for removal, then we just filter the flag |
| 182 | filter-flags ${orig_mfpmath} |
339 | filter-flags ${orig_mfpmath} |
| 183 | else |
340 | else |
| 184 | # if we only want to filter some of the user specified |
341 | # if we only want to filter some of the user specified |
| … | |
… | |
| 186 | replace-flags ${orig_mfpmath} -mfpmath=${new_math} |
343 | replace-flags ${orig_mfpmath} -mfpmath=${new_math} |
| 187 | fi |
344 | fi |
| 188 | return 0 |
345 | return 0 |
| 189 | } |
346 | } |
| 190 | |
347 | |
|
|
348 | # @FUNCTION: strip-flags |
|
|
349 | # @DESCRIPTION: |
|
|
350 | # Strip *FLAGS of everything except known good/safe flags. This runs over all |
|
|
351 | # flags returned by all_flag_vars(). |
| 191 | strip-flags() { |
352 | strip-flags() { |
| 192 | local x y flag NEW_CFLAGS NEW_CXXFLAGS |
353 | local x y var |
| 193 | |
354 | |
| 194 | setup-allowed-flags |
355 | setup-allowed-flags |
| 195 | |
356 | |
| 196 | local NEW_CFLAGS="" |
|
|
| 197 | local NEW_CXXFLAGS="" |
|
|
| 198 | |
|
|
| 199 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
|
|
| 200 | if has ~${ARCH} ${ACCEPT_KEYWORDS} ; then |
|
|
| 201 | use debug && einfo "Enabling the use of some unstable flags" |
|
|
| 202 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
|
|
| 203 | fi |
|
|
| 204 | |
|
|
| 205 | set -f # disable pathname expansion |
357 | set -f # disable pathname expansion |
| 206 | |
358 | |
| 207 | for x in ${CFLAGS}; do |
359 | for var in $(all-flag-vars) ; do |
|
|
360 | local new=() |
|
|
361 | |
|
|
362 | for x in ${!var} ; do |
|
|
363 | local flag=${x%%=*} |
| 208 | for y in ${ALLOWED_FLAGS}; do |
364 | for y in ${ALLOWED_FLAGS} ; do |
| 209 | flag=${x%%=*} |
|
|
| 210 | if [ "${flag%%${y}}" = "" ]; then |
365 | if [[ -z ${flag%%${y}} ]] ; then |
| 211 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
366 | new+=( "${x}" ) |
| 212 | break |
367 | break |
| 213 | fi |
368 | fi |
| 214 | done |
369 | done |
| 215 | done |
370 | done |
| 216 | |
371 | |
| 217 | for x in ${CXXFLAGS}; do |
|
|
| 218 | for y in ${ALLOWED_FLAGS}; do |
|
|
| 219 | flag=${x%%=*} |
|
|
| 220 | if [ "${flag%%${y}}" = "" ]; then |
|
|
| 221 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
|
|
| 222 | break |
|
|
| 223 | fi |
|
|
| 224 | done |
|
|
| 225 | done |
|
|
| 226 | |
|
|
| 227 | # In case we filtered out all optimization flags fallback to -O2 |
372 | # In case we filtered out all optimization flags fallback to -O2 |
| 228 | if [ "${CFLAGS/-O}" != "${CFLAGS}" -a "${NEW_CFLAGS/-O}" = "${NEW_CFLAGS}" ]; then |
373 | if _is_flagq ${var} "-O*" && ! (_is_flagq new "-O*" || _is_flagq new -O) ; then |
| 229 | NEW_CFLAGS="${NEW_CFLAGS} -O2" |
374 | new+=( -O2 ) |
| 230 | fi |
375 | fi |
| 231 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
376 | |
| 232 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
377 | eval export ${var}=\""${new[*]}"\" |
| 233 | fi |
378 | done |
| 234 | |
379 | |
| 235 | set +f # re-enable pathname expansion |
380 | set +f # re-enable pathname expansion |
| 236 | |
381 | |
| 237 | export CFLAGS="${NEW_CFLAGS}" |
|
|
| 238 | export CXXFLAGS="${NEW_CXXFLAGS}" |
|
|
| 239 | return 0 |
|
|
| 240 | } |
|
|
| 241 | |
|
|
| 242 | test_flag() { |
|
|
| 243 | local cc=${CC:-gcc} ; cc=${cc%% *} |
|
|
| 244 | if ${cc} -S -xc "$@" -o /dev/null /dev/null &>/dev/null; then |
|
|
| 245 | printf "%s\n" "$*" |
|
|
| 246 | return 0 |
382 | return 0 |
| 247 | fi |
|
|
| 248 | return 1 |
|
|
| 249 | } |
383 | } |
| 250 | |
384 | |
|
|
385 | test-flag-PROG() { |
|
|
386 | local comp=$1 |
|
|
387 | local flag=$2 |
|
|
388 | |
|
|
389 | [[ -z ${comp} || -z ${flag} ]] && return 1 |
|
|
390 | |
|
|
391 | # use -c so we can test the assembler as well |
|
|
392 | local PROG=$(tc-get${comp}) |
|
|
393 | ${PROG} "${flag}" -c -o /dev/null -xc /dev/null \ |
|
|
394 | > /dev/null 2>&1 |
|
|
395 | } |
|
|
396 | |
|
|
397 | # @FUNCTION: test-flag-CC |
|
|
398 | # @USAGE: <flag> |
|
|
399 | # @DESCRIPTION: |
|
|
400 | # Returns shell true if <flag> is supported by the C compiler, else returns shell false. |
|
|
401 | test-flag-CC() { test-flag-PROG "CC" "$1"; } |
|
|
402 | |
|
|
403 | # @FUNCTION: test-flag-CXX |
|
|
404 | # @USAGE: <flag> |
|
|
405 | # @DESCRIPTION: |
|
|
406 | # Returns shell true if <flag> is supported by the C++ compiler, else returns shell false. |
|
|
407 | test-flag-CXX() { test-flag-PROG "CXX" "$1"; } |
|
|
408 | |
|
|
409 | # @FUNCTION: test-flag-F77 |
|
|
410 | # @USAGE: <flag> |
|
|
411 | # @DESCRIPTION: |
|
|
412 | # Returns shell true if <flag> is supported by the Fortran 77 compiler, else returns shell false. |
|
|
413 | test-flag-F77() { test-flag-PROG "F77" "$1"; } |
|
|
414 | |
|
|
415 | # @FUNCTION: test-flag-FC |
|
|
416 | # @USAGE: <flag> |
|
|
417 | # @DESCRIPTION: |
|
|
418 | # Returns shell true if <flag> is supported by the Fortran 90 compiler, else returns shell false. |
|
|
419 | test-flag-FC() { test-flag-PROG "FC" "$1"; } |
|
|
420 | |
|
|
421 | test-flags-PROG() { |
|
|
422 | local comp=$1 |
|
|
423 | local flags |
|
|
424 | local x |
|
|
425 | |
|
|
426 | shift |
|
|
427 | |
|
|
428 | [[ -z ${comp} ]] && return 1 |
|
|
429 | |
|
|
430 | for x in "$@" ; do |
|
|
431 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
|
|
432 | done |
|
|
433 | |
|
|
434 | echo "${flags}" |
|
|
435 | |
|
|
436 | # Just bail if we dont have any flags |
|
|
437 | [[ -n ${flags} ]] |
|
|
438 | } |
|
|
439 | |
|
|
440 | # @FUNCTION: test-flags-CC |
|
|
441 | # @USAGE: <flags> |
|
|
442 | # @DESCRIPTION: |
|
|
443 | # Returns shell true if <flags> are supported by the C compiler, else returns shell false. |
|
|
444 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
|
|
445 | |
|
|
446 | # @FUNCTION: test-flags-CXX |
|
|
447 | # @USAGE: <flags> |
|
|
448 | # @DESCRIPTION: |
|
|
449 | # Returns shell true if <flags> are supported by the C++ compiler, else returns shell false. |
|
|
450 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
|
|
451 | |
|
|
452 | # @FUNCTION: test-flags-F77 |
|
|
453 | # @USAGE: <flags> |
|
|
454 | # @DESCRIPTION: |
|
|
455 | # Returns shell true if <flags> are supported by the Fortran 77 compiler, else returns shell false. |
|
|
456 | test-flags-F77() { test-flags-PROG "F77" "$@"; } |
|
|
457 | |
|
|
458 | # @FUNCTION: test-flags-FC |
|
|
459 | # @USAGE: <flags> |
|
|
460 | # @DESCRIPTION: |
|
|
461 | # Returns shell true if <flags> are supported by the Fortran 90 compiler, else returns shell false. |
|
|
462 | test-flags-FC() { test-flags-PROG "FC" "$@"; } |
|
|
463 | |
|
|
464 | # @FUNCTION: test-flags |
|
|
465 | # @USAGE: <flags> |
|
|
466 | # @DESCRIPTION: |
|
|
467 | # Short-hand that should hopefully work for both C and C++ compiler, but |
|
|
468 | # its really only present due to the append-flags() abomination. |
|
|
469 | test-flags() { test-flags-CC "$@"; } |
|
|
470 | |
|
|
471 | # @FUNCTION: test_version_info |
|
|
472 | # @USAGE: <version> |
|
|
473 | # @DESCRIPTION: |
|
|
474 | # Returns shell true if the current C compiler version matches <version>, else returns shell false. |
|
|
475 | # Accepts shell globs. |
| 251 | test_version_info() { |
476 | test_version_info() { |
| 252 | local cc=${CC:-gcc} ; cc=${cc%% *} |
|
|
| 253 | if [[ $(${cc} --version 2>&1) == *$1* ]]; then |
477 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 254 | return 0 |
478 | return 0 |
| 255 | else |
479 | else |
| 256 | return 1 |
480 | return 1 |
| 257 | fi |
481 | fi |
| 258 | } |
482 | } |
| 259 | |
483 | |
|
|
484 | # @FUNCTION: strip-unsupported-flags |
|
|
485 | # @DESCRIPTION: |
|
|
486 | # Strip {C,CXX,F,FC}FLAGS of any flags not supported by the active toolchain. |
| 260 | strip-unsupported-flags() { |
487 | strip-unsupported-flags() { |
| 261 | local NEW_CFLAGS NEW_CXXFLAGS |
488 | export CFLAGS=$(test-flags-CC ${CFLAGS}) |
| 262 | |
489 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS}) |
| 263 | for x in ${CFLAGS} ; do |
490 | export FFLAGS=$(test-flags-F77 ${FFLAGS}) |
| 264 | NEW_CFLAGS="${NEW_CFLAGS} `test_flag ${x}`" |
491 | export FCFLAGS=$(test-flags-FC ${FCFLAGS}) |
| 265 | done |
|
|
| 266 | for x in ${CXXFLAGS} ; do |
|
|
| 267 | NEW_CXXFLAGS="${NEW_CXXFLAGS} `test_flag ${x}`" |
|
|
| 268 | done |
|
|
| 269 | |
|
|
| 270 | export CFLAGS="${NEW_CFLAGS}" |
|
|
| 271 | export CXXFLAGS="${NEW_CXXFLAGS}" |
|
|
| 272 | } |
492 | } |
| 273 | |
493 | |
|
|
494 | # @FUNCTION: get-flag |
|
|
495 | # @USAGE: <flag> |
|
|
496 | # @DESCRIPTION: |
|
|
497 | # Find and echo the value for a particular flag. Accepts shell globs. |
| 274 | get-flag() { |
498 | get-flag() { |
| 275 | local f findflag="$1" |
499 | local f var findflag="$1" |
| 276 | |
500 | |
| 277 | # this code looks a little flaky but seems to work for |
501 | # this code looks a little flaky but seems to work for |
| 278 | # everything we want ... |
502 | # everything we want ... |
| 279 | # for example, if CFLAGS="-march=i686": |
503 | # for example, if CFLAGS="-march=i686": |
| 280 | # `get-flag -march` == "-march=i686" |
504 | # `get-flag -march` == "-march=i686" |
| 281 | # `get-flag march` == "i686" |
505 | # `get-flag march` == "i686" |
| 282 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
506 | for var in $(all-flag-vars) ; do |
|
|
507 | for f in ${!var} ; do |
| 283 | if [ "${f/${findflag}}" != "${f}" ] ; then |
508 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 284 | printf "%s\n" "${f/-${findflag}=}" |
509 | printf "%s\n" "${f/-${findflag}=}" |
| 285 | return 0 |
510 | return 0 |
| 286 | fi |
511 | fi |
|
|
512 | done |
| 287 | done |
513 | done |
| 288 | return 1 |
514 | return 1 |
| 289 | } |
515 | } |
| 290 | |
516 | |
| 291 | has_hardened() { |
517 | # @FUNCTION: has_m64 |
| 292 | test_version_info Hardened |
518 | # @DESCRIPTION: |
| 293 | return $? |
519 | # This doesn't test if the flag is accepted, it tests if the flag actually |
| 294 | } |
520 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
| 295 | |
521 | # return code is 0, else the return code is 1. |
| 296 | has_pic() { |
|
|
| 297 | [ "${CFLAGS/-fPIC}" != "${CFLAGS}" ] && return 0 |
|
|
| 298 | [ "${CFLAGS/-fpic}" != "${CFLAGS}" ] && return 0 |
|
|
| 299 | test_version_info pie && return 0 |
|
|
| 300 | return 1 |
|
|
| 301 | } |
|
|
| 302 | |
|
|
| 303 | has_pie() { |
|
|
| 304 | [ "${CFLAGS/-fPIE}" != "${CFLAGS}" ] && return 0 |
|
|
| 305 | [ "${CFLAGS/-fpie}" != "${CFLAGS}" ] && return 0 |
|
|
| 306 | test_version_info pie && return 0 |
|
|
| 307 | return 1 |
|
|
| 308 | } |
|
|
| 309 | |
|
|
| 310 | has_ssp() { |
|
|
| 311 | [ "${CFLAGS/-fstack-protector}" != "${CFLAGS}" ] && return 0 |
|
|
| 312 | test_version_info ssp && return 0 |
|
|
| 313 | return 1 |
|
|
| 314 | } |
|
|
| 315 | |
|
|
| 316 | has_m64() { |
522 | has_m64() { |
|
|
523 | eqawarn "${FUNCNAME}: don't use this anymore" |
|
|
524 | |
| 317 | # this doesnt test if the flag is accepted, it tests if the flag |
525 | # this doesnt test if the flag is accepted, it tests if the flag |
| 318 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
526 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 319 | # please dont replace this function with test_flag in some future |
527 | # please dont replace this function with test_flag in some future |
| 320 | # clean-up! |
528 | # clean-up! |
| 321 | temp=`mktemp` |
529 | |
|
|
530 | local temp="$(emktemp)" |
| 322 | echo "int main() { return(0); }" > ${temp}.c |
531 | echo "int main() { return(0); }" > "${temp}".c |
| 323 | ${CC/ .*/} -m64 -o /dev/null ${temp}.c > /dev/null 2>&1 |
532 | MY_CC=$(tc-getCC) |
| 324 | ret=$? |
533 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
534 | local ret=$? |
| 325 | rm -f ${temp}.c |
535 | rm -f "${temp}".c |
| 326 | [ "$ret" != "1" ] && return 0 |
536 | [[ ${ret} != 1 ]] && return 0 |
| 327 | return 1 |
537 | return 1 |
| 328 | } |
538 | } |
| 329 | |
539 | |
| 330 | has_m32() { |
540 | has_m32() { |
| 331 | # this doesnt test if the flag is accepted, it tests if the flag |
541 | die "${FUNCNAME}: don't use this anymore" |
| 332 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
| 333 | # please dont replace this function with test_flag in some future |
|
|
| 334 | # clean-up! |
|
|
| 335 | temp=`mktemp` |
|
|
| 336 | echo "int main() { return(0); }" > ${temp}.c |
|
|
| 337 | ${CC/ .*/} -m32 -o /dev/null ${temp}.c > /dev/null 2>&1 |
|
|
| 338 | ret=$? |
|
|
| 339 | rm -f ${temp}.c |
|
|
| 340 | [ "$ret" != "1" ] && return 0 |
|
|
| 341 | return 1 |
|
|
| 342 | } |
542 | } |
| 343 | |
543 | |
|
|
544 | # @FUNCTION: replace-sparc64-flags |
|
|
545 | # @DESCRIPTION: |
|
|
546 | # Sets mcpu to v8 and uses the original value as mtune if none specified. |
| 344 | replace-sparc64-flags() { |
547 | replace-sparc64-flags() { |
| 345 | local SPARC64_CPUS="ultrasparc v9" |
548 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
| 346 | |
549 | |
| 347 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
550 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 348 | for x in ${SPARC64_CPUS}; do |
551 | for x in ${SPARC64_CPUS}; do |
| 349 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
552 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 350 | done |
553 | done |
| 351 | else |
554 | else |
| 352 | for x in ${SPARC64_CPUS}; do |
555 | for x in ${SPARC64_CPUS}; do |
| 353 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
556 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 354 | done |
557 | done |
| 355 | fi |
558 | fi |
| 356 | |
559 | |
| 357 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
560 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
| 358 | for x in ${SPARC64_CPUS}; do |
561 | for x in ${SPARC64_CPUS}; do |
| 359 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
562 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 360 | done |
563 | done |
| 361 | else |
564 | else |
| 362 | for x in ${SPARC64_CPUS}; do |
565 | for x in ${SPARC64_CPUS}; do |
| 363 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
566 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 364 | done |
567 | done |
| 365 | fi |
568 | fi |
| 366 | |
569 | |
| 367 | export CFLAGS CXXFLAGS |
570 | export CFLAGS CXXFLAGS |
| 368 | } |
571 | } |
| 369 | |
572 | |
|
|
573 | # @FUNCTION: append-libs |
|
|
574 | # @USAGE: <libs> |
|
|
575 | # @DESCRIPTION: |
|
|
576 | # Add extra <libs> to the current LIBS. |
| 370 | append-ldflags() { |
577 | append-libs() { |
| 371 | export LDFLAGS="${LDFLAGS} $*" |
578 | [[ $# -eq 0 ]] && return 0 |
| 372 | return 0 |
579 | local flag |
| 373 | } |
|
|
| 374 | |
|
|
| 375 | filter-ldflags() { |
|
|
| 376 | local x |
|
|
| 377 | |
|
|
| 378 | # we do this fancy spacing stuff so as to not filter |
|
|
| 379 | # out part of a flag ... we want flag atoms ! :D |
|
|
| 380 | LDFLAGS=" ${LDFLAGS} " |
|
|
| 381 | for x in "$@" ; do |
580 | for flag in "$@"; do |
| 382 | LDFLAGS="${LDFLAGS// ${x} / }" |
581 | [[ ${flag} == -l* ]] && flag=${flag#-l} |
|
|
582 | export LIBS="${LIBS} -l${flag}" |
| 383 | done |
583 | done |
| 384 | LDFLAGS="${LDFLAGS:1:${#LDFLAGS}-2}" |
|
|
| 385 | export LDFLAGS |
|
|
| 386 | return 0 |
|
|
| 387 | } |
|
|
| 388 | |
584 | |
| 389 | etexec-flags() { |
585 | return 0 |
| 390 | # if you're not using a hardened compiler you wont need this |
586 | } |
| 391 | # PIC/no-pic kludge in the first place. |
|
|
| 392 | has_hardened || return 0 |
|
|
| 393 | |
587 | |
| 394 | if has_pie || has_pic; then |
588 | # @FUNCTION: raw-ldflags |
| 395 | [ -z "`is-flag -fno-pic`" ] && |
589 | # @USAGE: [flags] |
| 396 | export CFLAGS="${CFLAGS} `test_flag -fno-pic`" |
590 | # @DESCRIPTION: |
| 397 | [ -z "`is-flag -nopie`" ] && |
591 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
| 398 | export CFLAGS="${CFLAGS} `test_flag -nopie`" |
592 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
|
|
593 | # to gcc where it needs the '-Wl,'. |
|
|
594 | # |
|
|
595 | # If no flags are specified, then default to ${LDFLAGS}. |
|
|
596 | raw-ldflags() { |
|
|
597 | local x input="$@" |
|
|
598 | [[ -z ${input} ]] && input=${LDFLAGS} |
|
|
599 | set -- |
|
|
600 | for x in ${input} ; do |
|
|
601 | x=${x#-Wl,} |
|
|
602 | set -- "$@" ${x//,/ } |
|
|
603 | done |
|
|
604 | echo "$@" |
|
|
605 | } |
|
|
606 | |
|
|
607 | # @FUNCTION: no-as-needed |
|
|
608 | # @RETURN: Flag to disable asneeded behavior for use with append-ldflags. |
|
|
609 | no-as-needed() { |
|
|
610 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
|
|
611 | *GNU*) # GNU ld |
|
|
612 | echo "-Wl,--no-as-needed" ;; |
|
|
613 | esac |
|
|
614 | } |
|
|
615 | |
| 399 | fi |
616 | fi |
| 400 | return 0 |
|
|
| 401 | } |
|
|
| 402 | |
|
|
| 403 | fstack-flags() { |
|
|
| 404 | if has_ssp; then |
|
|
| 405 | [ -z "`is-flag -fno-stack-protector`" ] && |
|
|
| 406 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
|
|
| 407 | fi |
|
|
| 408 | return 0 |
|
|
| 409 | } |
|
|