| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2009 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.108 2006/06/15 14:45:59 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.132 2009/01/21 00:42:20 gengor Exp $ |
| 4 | # |
|
|
| 5 | # Maintainer: base-system@gentoo.org |
|
|
| 6 | |
4 | |
| 7 | # need access to emktemp() |
5 | # @ECLASS: flag-o-matic.eclass |
|
|
6 | # @MAINTAINER: |
|
|
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. |
|
|
12 | |
| 8 | inherit eutils toolchain-funcs multilib |
13 | inherit eutils toolchain-funcs multilib |
| 9 | |
14 | |
| 10 | # |
|
|
| 11 | #### filter-flags <flags> #### |
|
|
| 12 | # Remove particular flags from C[XX]FLAGS |
|
|
| 13 | # Matches only complete flags |
|
|
| 14 | # |
|
|
| 15 | #### append-flags <flags> #### |
|
|
| 16 | # Add extra flags to your current C[XX]FLAGS |
|
|
| 17 | # |
|
|
| 18 | #### replace-flags <orig.flag> <new.flag> ### |
|
|
| 19 | # Replace a flag by another one |
|
|
| 20 | # |
|
|
| 21 | #### replace-cpu-flags <old.cpus> <new.cpu> ### |
|
|
| 22 | # Replace march/mcpu flags that specify <old.cpus> |
|
|
| 23 | # with flags that specify <new.cpu> |
|
|
| 24 | # |
|
|
| 25 | #### is-flag[q] <flag> #### |
|
|
| 26 | # Returns "true" if flag is set in C[XX]FLAGS |
|
|
| 27 | # Matches only complete a flag |
|
|
| 28 | # q version sets return code but doesn't echo |
|
|
| 29 | # |
|
|
| 30 | #### is-ldflag[q] <flag> #### |
|
|
| 31 | # Returns "true" if flag is set in LDFLAGS |
|
|
| 32 | # Matches only complete a flag |
|
|
| 33 | # q version sets return code but doesn't echo |
|
|
| 34 | # |
|
|
| 35 | #### strip-flags #### |
|
|
| 36 | # Strip C[XX]FLAGS of everything except known |
|
|
| 37 | # good options. |
|
|
| 38 | # |
|
|
| 39 | #### strip-unsupported-flags #### |
|
|
| 40 | # Strip C[XX]FLAGS of any flags not supported by |
|
|
| 41 | # installed version of gcc |
|
|
| 42 | # |
|
|
| 43 | #### get-flag <flag> #### |
|
|
| 44 | # Find and echo the value for a particular flag |
|
|
| 45 | # |
|
|
| 46 | #### replace-sparc64-flags #### |
|
|
| 47 | # Sets mcpu to v8 and uses the original value |
|
|
| 48 | # as mtune if none specified. |
|
|
| 49 | # |
|
|
| 50 | #### filter-mfpmath <math types> #### |
|
|
| 51 | # Remove specified math types from the fpmath specification |
|
|
| 52 | # If the user has -mfpmath=sse,386, running `filter-mfpmath sse` |
|
|
| 53 | # will leave the user with -mfpmath=386 |
|
|
| 54 | # |
|
|
| 55 | #### append-ldflags #### |
|
|
| 56 | # Add extra flags to your current LDFLAGS |
|
|
| 57 | # |
|
|
| 58 | #### filter-ldflags <flags> #### |
|
|
| 59 | # Remove particular flags from LDFLAGS |
|
|
| 60 | # Matches only complete flags |
|
|
| 61 | # |
|
|
| 62 | #### bindnow-flags #### |
|
|
| 63 | # Returns the flags to enable "now" binding in the current selected linker. |
|
|
| 64 | # |
|
|
| 65 | ################ DEPRECATED functions ################ |
15 | ################ DEPRECATED functions ################ |
| 66 | # The following are still present to avoid breaking existing |
16 | # The following are still present to avoid breaking existing |
| 67 | # code more than necessary; however they are deprecated. Please |
17 | # code more than necessary; however they are deprecated. Please |
| 68 | # use gcc-specs-* from toolchain-funcs.eclass instead, if you |
18 | # use gcc-specs-* from toolchain-funcs.eclass instead, if you |
| 69 | # need to know which hardened techs are active in the compiler. |
19 | # need to know which hardened techs are active in the compiler. |
| 70 | # See bug #100974 |
20 | # See bug #100974 |
| 71 | # |
21 | # |
| 72 | #### has_hardened #### |
22 | # has_hardened |
| 73 | # Returns true if the compiler has 'Hardened' in its version string, |
23 | # has_pie |
| 74 | # (note; switched-spec vanilla compilers satisfy this condition) or |
24 | # has_pic |
| 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 #### |
25 | # has_ssp_all |
| 86 | # Returns true if the compiler by default or with current CFLAGS |
26 | # has_ssp |
| 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 | # |
|
|
| 93 | |
27 | |
|
|
28 | |
| 94 | # C[XX]FLAGS that we allow in strip-flags |
29 | # {C,CXX,F,FC}FLAGS that we allow in strip-flags |
|
|
30 | # Note: shell globs and character lists are allowed |
| 95 | setup-allowed-flags() { |
31 | setup-allowed-flags() { |
| 96 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
32 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
| 97 | export ALLOWED_FLAGS="-pipe" |
33 | export ALLOWED_FLAGS="-pipe" |
| 98 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
34 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
| 99 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
35 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
| 100 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-bounds-checking" |
36 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-strict-overflow" |
| 101 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time" |
37 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time" |
| 102 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3 -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3" |
38 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+" |
| 103 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident" |
39 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident" |
|
|
40 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -W* -w" |
| 104 | fi |
41 | fi |
| 105 | # allow a bunch of flags that negate features / control ABI |
42 | # allow a bunch of flags that negate features / control ABI |
| 106 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all" |
43 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all \ |
|
|
44 | -fno-strict-aliasing -fno-bounds-checking -fstrict-overflow" |
| 107 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
45 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
| 108 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow \ |
46 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow \ |
| 109 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
47 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
| 110 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
48 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
| 111 | -mieee -mieee-with-inexact \ |
49 | -mieee -mieee-with-inexact -mschedule \ |
| 112 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
50 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
| 113 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
51 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
| 114 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
52 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
| 115 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias" |
53 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \ |
|
|
54 | -msecure-plt -m*-toc -D* -U*" |
| 116 | |
55 | |
| 117 | # C[XX]FLAGS that we are think is ok, but needs testing |
56 | # {C,CXX,F,FC}FLAGS that we are think is ok, but needs testing |
| 118 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
57 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 119 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
58 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
| 120 | return 0 |
59 | return 0 |
| 121 | } |
60 | } |
| 122 | |
61 | |
| … | |
… | |
| 132 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
71 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
| 133 | gcc-specs-pie || continue |
72 | gcc-specs-pie || continue |
| 134 | is-flagq -nopie || append-flags -nopie;; |
73 | is-flagq -nopie || append-flags -nopie;; |
| 135 | -fstack-protector) |
74 | -fstack-protector) |
| 136 | gcc-specs-ssp || continue |
75 | gcc-specs-ssp || continue |
| 137 | is-flagq -fno-stack-protector || append-flags -fno-stack-protector;; |
76 | is-flagq -fno-stack-protector || append-flags $(test-flags -fno-stack-protector);; |
| 138 | -fstack-protector-all) |
77 | -fstack-protector-all) |
| 139 | gcc-specs-ssp-to-all || continue |
78 | gcc-specs-ssp-to-all || continue |
| 140 | is-flagq -fno-stack-protector-all || append-flags -fno-stack-protector-all;; |
79 | is-flagq -fno-stack-protector-all || append-flags $(test-flags -fno-stack-protector-all);; |
|
|
80 | -fno-strict-overflow) |
|
|
81 | gcc-specs-nostrict || continue |
|
|
82 | is-flagq -fstrict-overflow || append-flags $(test-flags -fstrict-overflow);; |
| 141 | esac |
83 | esac |
| 142 | done |
84 | done |
| 143 | } |
85 | } |
| 144 | |
86 | |
| 145 | # Remove occurrences of strings from variable given in $1 |
87 | # Remove occurrences of strings from variable given in $1 |
| … | |
… | |
| 160 | eval new\[\${\#new\[@]}]=\${f} |
102 | eval new\[\${\#new\[@]}]=\${f} |
| 161 | done |
103 | done |
| 162 | eval export ${VAR}=\${new\[*]} |
104 | eval export ${VAR}=\${new\[*]} |
| 163 | } |
105 | } |
| 164 | |
106 | |
|
|
107 | # @FUNCTION: filter-flags |
|
|
108 | # @USAGE: <flags> |
|
|
109 | # @DESCRIPTION: |
|
|
110 | # Remove particular <flags> from {C,CPP,CXX,F,FC}FLAGS. Accepts shell globs. |
| 165 | filter-flags() { |
111 | filter-flags() { |
| 166 | _filter-hardened "$@" |
112 | _filter-hardened "$@" |
| 167 | _filter-var CFLAGS "$@" |
113 | _filter-var CFLAGS "$@" |
|
|
114 | _filter-var CPPFLAGS "$@" |
| 168 | _filter-var CXXFLAGS "$@" |
115 | _filter-var CXXFLAGS "$@" |
|
|
116 | _filter-var FFLAGS "$@" |
|
|
117 | _filter-var FCFLAGS "$@" |
| 169 | return 0 |
118 | return 0 |
| 170 | } |
119 | } |
| 171 | |
120 | |
|
|
121 | # @FUNCTION: filter-lfs-flags |
|
|
122 | # @DESCRIPTION: |
|
|
123 | # Remove flags that enable Large File Support. |
| 172 | filter-lfs-flags() { |
124 | filter-lfs-flags() { |
| 173 | [[ -n $@ ]] && die "filter-lfs-flags takes no arguments" |
125 | [[ -n $@ ]] && die "filter-lfs-flags takes no arguments" |
| 174 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
126 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 175 | } |
127 | } |
| 176 | |
128 | |
|
|
129 | # @FUNCTION: append-cppflags |
|
|
130 | # @USAGE: <flags> |
|
|
131 | # @DESCRIPTION: |
|
|
132 | # Add extra <flags> to the current CPPFLAGS. |
|
|
133 | append-cppflags() { |
|
|
134 | [[ -z $* ]] && return 0 |
|
|
135 | export CPPFLAGS="${CPPFLAGS} $*" |
|
|
136 | return 0 |
|
|
137 | } |
|
|
138 | |
|
|
139 | # @FUNCTION: append-cxxflags |
|
|
140 | # @USAGE: <flags> |
|
|
141 | # @DESCRIPTION: |
|
|
142 | # Add extra <flags> to the current CXXFLAGS. |
|
|
143 | append-cxxflags() { |
|
|
144 | [[ -z $* ]] && return 0 |
|
|
145 | export CXXFLAGS="${CXXFLAGS} $*" |
|
|
146 | return 0 |
|
|
147 | } |
|
|
148 | |
|
|
149 | # @FUNCTION: append-fflags |
|
|
150 | # @USAGE: <flags> |
|
|
151 | # @DESCRIPTION: |
|
|
152 | # Add extra <flags> to the current {F,FC}FLAGS. |
|
|
153 | append-fflags() { |
|
|
154 | [[ -z $* ]] && return 0 |
|
|
155 | export FFLAGS="${FFLAGS} $*" |
|
|
156 | export FCFLAGS="${FCFLAGS} $*" |
|
|
157 | return 0 |
|
|
158 | } |
|
|
159 | |
|
|
160 | # @FUNCTION: append-lfs-flags |
|
|
161 | # @DESCRIPTION: |
|
|
162 | # Add flags that enable Large File Support. |
| 177 | append-lfs-flags() { |
163 | append-lfs-flags() { |
| 178 | [[ -n $@ ]] && die "append-lfs-flags takes no arguments" |
164 | [[ -n $@ ]] && die "append-lfs-flags takes no arguments" |
| 179 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
165 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 180 | } |
166 | } |
| 181 | |
167 | |
|
|
168 | # @FUNCTION: append-flags |
|
|
169 | # @USAGE: <flags> |
|
|
170 | # @DESCRIPTION: |
|
|
171 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
| 182 | append-flags() { |
172 | append-flags() { |
| 183 | [[ -z $* ]] && return 0 |
173 | [[ -z $* ]] && return 0 |
| 184 | export CFLAGS="${CFLAGS} $*" |
174 | export CFLAGS="${CFLAGS} $*" |
| 185 | export CXXFLAGS="${CXXFLAGS} $*" |
175 | export CXXFLAGS="${CXXFLAGS} $*" |
|
|
176 | export FFLAGS="${FFLAGS} $*" |
|
|
177 | export FCFLAGS="${FCFLAGS} $*" |
| 186 | return 0 |
178 | return 0 |
| 187 | } |
179 | } |
| 188 | |
180 | |
|
|
181 | # @FUNCTION: replace-flags |
|
|
182 | # @USAGE: <old> <new> |
|
|
183 | # @DESCRIPTION: |
|
|
184 | # Replace the <old> flag with <new>. Accepts shell globs for <old>. |
| 189 | replace-flags() { |
185 | replace-flags() { |
| 190 | [[ $# != 2 ]] \ |
186 | [[ $# != 2 ]] \ |
| 191 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
187 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
| 192 | && die "replace-flags takes 2 arguments, not $#" |
188 | && die "replace-flags takes 2 arguments, not $#" |
| 193 | |
189 | |
| 194 | local f fset |
190 | local f fset |
| 195 | declare -a new_CFLAGS new_CXXFLAGS |
191 | declare -a new_CFLAGS new_CXXFLAGS new_FFLAGS new_FCFLAGS |
| 196 | |
192 | |
| 197 | for fset in CFLAGS CXXFLAGS; do |
193 | for fset in CFLAGS CXXFLAGS FFLAGS FCFLAGS; do |
| 198 | # Looping over the flags instead of using a global |
194 | # Looping over the flags instead of using a global |
| 199 | # substitution ensures that we're working with flag atoms. |
195 | # substitution ensures that we're working with flag atoms. |
| 200 | # Otherwise globs like -O* have the potential to wipe out the |
196 | # Otherwise globs like -O* have the potential to wipe out the |
| 201 | # list of flags. |
197 | # list of flags. |
| 202 | for f in ${!fset}; do |
198 | for f in ${!fset}; do |
| … | |
… | |
| 208 | done |
204 | done |
| 209 | |
205 | |
| 210 | return 0 |
206 | return 0 |
| 211 | } |
207 | } |
| 212 | |
208 | |
|
|
209 | # @FUNCTION: replace-cpu-flags |
|
|
210 | # @USAGE: <old> <new> |
|
|
211 | # @DESCRIPTION: |
|
|
212 | # Replace cpu flags (like -march/-mcpu/-mtune) that select the <old> cpu |
|
|
213 | # with flags that select the <new> cpu. Accepts shell globs for <old>. |
| 213 | replace-cpu-flags() { |
214 | replace-cpu-flags() { |
| 214 | local newcpu="$#" ; newcpu="${!newcpu}" |
215 | local newcpu="$#" ; newcpu="${!newcpu}" |
| 215 | while [ $# -gt 1 ] ; do |
216 | while [ $# -gt 1 ] ; do |
| 216 | # quote to make sure that no globbing is done (particularly on |
217 | # quote to make sure that no globbing is done (particularly on |
| 217 | # ${oldcpu} prior to calling replace-flags |
218 | # ${oldcpu}) prior to calling replace-flags |
| 218 | replace-flags "-march=${1}" "-march=${newcpu}" |
219 | replace-flags "-march=${1}" "-march=${newcpu}" |
| 219 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
220 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
| 220 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
221 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
| 221 | shift |
222 | shift |
| 222 | done |
223 | done |
| 223 | return 0 |
224 | return 0 |
| 224 | } |
225 | } |
| 225 | |
226 | |
|
|
227 | _is_flagq() { |
|
|
228 | local x |
|
|
229 | for x in ${!1} ; do |
|
|
230 | [[ ${x} == $2 ]] && return 0 |
|
|
231 | done |
|
|
232 | return 1 |
|
|
233 | } |
|
|
234 | |
|
|
235 | # @FUNCTION: is-flagq |
|
|
236 | # @USAGE: <flag> |
|
|
237 | # @DESCRIPTION: |
|
|
238 | # Returns shell true if <flag> is in {C,CXX,F,FC}FLAGS, else returns shell false. Accepts shell globs. |
| 226 | is-flagq() { |
239 | is-flagq() { |
| 227 | local x |
240 | [[ -n $2 ]] && die "Usage: is-flag <flag>" |
| 228 | |
241 | _is_flagq CFLAGS $1 || _is_flagq CXXFLAGS $1 || _is_flagq FFLAGS $1 || _is_flagq FCFLAGS $1 |
| 229 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
|
|
| 230 | # Note this should work with globs like -mcpu=ultrasparc* |
|
|
| 231 | if [[ ${x} == ${1} ]]; then |
|
|
| 232 | return 0 |
|
|
| 233 | fi |
|
|
| 234 | done |
|
|
| 235 | return 1 |
|
|
| 236 | } |
242 | } |
| 237 | |
243 | |
|
|
244 | # @FUNCTION: is-flag |
|
|
245 | # @USAGE: <flag> |
|
|
246 | # @DESCRIPTION: |
|
|
247 | # Echo's "true" if flag is set in {C,CXX,F,FC}FLAGS. Accepts shell globs. |
| 238 | is-flag() { |
248 | is-flag() { |
| 239 | if is-flagq ${1}; then |
249 | is-flagq "$@" && echo true |
| 240 | echo true |
|
|
| 241 | return 0 |
|
|
| 242 | fi |
|
|
| 243 | return 1 |
|
|
| 244 | } |
250 | } |
| 245 | |
251 | |
|
|
252 | # @FUNCTION: is-ldflagq |
|
|
253 | # @USAGE: <flag> |
|
|
254 | # @DESCRIPTION: |
|
|
255 | # Returns shell true if <flag> is in LDFLAGS, else returns shell false. Accepts shell globs. |
| 246 | is-ldflagq() { |
256 | is-ldflagq() { |
| 247 | local x |
257 | [[ -n $2 ]] && die "Usage: is-ldflag <flag>" |
| 248 | |
258 | _is_flagq LDFLAGS $1 |
| 249 | for x in ${LDFLAGS} ; do |
|
|
| 250 | # Note this should work with globs like -mcpu=ultrasparc* |
|
|
| 251 | if [[ ${x} == ${1} ]]; then |
|
|
| 252 | return 0 |
|
|
| 253 | fi |
|
|
| 254 | done |
|
|
| 255 | return 1 |
|
|
| 256 | } |
259 | } |
| 257 | |
260 | |
|
|
261 | # @FUNCTION: is-ldflag |
|
|
262 | # @USAGE: <flag> |
|
|
263 | # @DESCRIPTION: |
|
|
264 | # Echo's "true" if flag is set in LDFLAGS. Accepts shell globs. |
| 258 | is-ldflag() { |
265 | is-ldflag() { |
| 259 | if is-ldflagq ${1}; then |
266 | is-ldflagq "$@" && echo true |
| 260 | echo true |
|
|
| 261 | return 0 |
|
|
| 262 | fi |
|
|
| 263 | return 1 |
|
|
| 264 | } |
267 | } |
| 265 | |
268 | |
|
|
269 | # @FUNCTION: filter-mfpmath |
|
|
270 | # @USAGE: <math types> |
|
|
271 | # @DESCRIPTION: |
|
|
272 | # Remove specified math types from the fpmath flag. For example, if the user |
|
|
273 | # has -mfpmath=sse,386, running `filter-mfpmath sse` will leave the user with |
|
|
274 | # -mfpmath=386. |
| 266 | filter-mfpmath() { |
275 | filter-mfpmath() { |
| 267 | local orig_mfpmath new_math prune_math |
276 | local orig_mfpmath new_math prune_math |
| 268 | |
277 | |
| 269 | # save the original -mfpmath flag |
278 | # save the original -mfpmath flag |
| 270 | orig_mfpmath="`get-flag -mfpmath`" |
279 | orig_mfpmath=$(get-flag -mfpmath) |
| 271 | # get the value of the current -mfpmath flag |
280 | # get the value of the current -mfpmath flag |
| 272 | new_math=" `get-flag mfpmath | tr , ' '` " |
281 | new_math=$(get-flag mfpmath) |
|
|
282 | new_math=" ${new_math//,/ } " |
| 273 | # figure out which math values are to be removed |
283 | # figure out which math values are to be removed |
| 274 | prune_math="" |
284 | prune_math="" |
| 275 | for prune_math in "$@" ; do |
285 | for prune_math in "$@" ; do |
| 276 | new_math="${new_math/ ${prune_math} / }" |
286 | new_math=${new_math/ ${prune_math} / } |
| 277 | done |
287 | done |
| 278 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
288 | new_math=$(echo ${new_math}) |
|
|
289 | new_math=${new_math// /,} |
| 279 | |
290 | |
| 280 | if [ -z "${new_math}" ] ; then |
291 | if [[ -z ${new_math} ]] ; then |
| 281 | # if we're removing all user specified math values are |
292 | # if we're removing all user specified math values are |
| 282 | # slated for removal, then we just filter the flag |
293 | # slated for removal, then we just filter the flag |
| 283 | filter-flags ${orig_mfpmath} |
294 | filter-flags ${orig_mfpmath} |
| 284 | else |
295 | else |
| 285 | # if we only want to filter some of the user specified |
296 | # if we only want to filter some of the user specified |
| … | |
… | |
| 287 | replace-flags ${orig_mfpmath} -mfpmath=${new_math} |
298 | replace-flags ${orig_mfpmath} -mfpmath=${new_math} |
| 288 | fi |
299 | fi |
| 289 | return 0 |
300 | return 0 |
| 290 | } |
301 | } |
| 291 | |
302 | |
|
|
303 | # @FUNCTION: strip-flags |
|
|
304 | # @DESCRIPTION: |
|
|
305 | # Strip C[XX]FLAGS of everything except known good/safe flags. |
| 292 | strip-flags() { |
306 | strip-flags() { |
| 293 | local x y flag NEW_CFLAGS NEW_CXXFLAGS |
307 | local x y flag NEW_CFLAGS NEW_CXXFLAGS NEW_FFLAGS NEW_FCFLAGS |
| 294 | |
308 | |
| 295 | setup-allowed-flags |
309 | setup-allowed-flags |
| 296 | |
310 | |
| 297 | local NEW_CFLAGS="" |
311 | local NEW_CFLAGS="" |
| 298 | local NEW_CXXFLAGS="" |
312 | local NEW_CXXFLAGS="" |
|
|
313 | local NEW_FFLAGS="" |
|
|
314 | local NEW_FCFLAGS="" |
| 299 | |
315 | |
| 300 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
316 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
| 301 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
317 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
| 302 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
318 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
| 303 | fi |
319 | fi |
| … | |
… | |
| 322 | break |
338 | break |
| 323 | fi |
339 | fi |
| 324 | done |
340 | done |
| 325 | done |
341 | done |
| 326 | |
342 | |
|
|
343 | for x in ${FFLAGS}; do |
|
|
344 | for y in ${ALLOWED_FLAGS}; do |
|
|
345 | flag=${x%%=*} |
|
|
346 | if [ "${flag%%${y}}" = "" ] ; then |
|
|
347 | NEW_FFLAGS="${NEW_FFLAGS} ${x}" |
|
|
348 | break |
|
|
349 | fi |
|
|
350 | done |
|
|
351 | done |
|
|
352 | |
|
|
353 | for x in ${FCFLAGS}; do |
|
|
354 | for y in ${ALLOWED_FLAGS}; do |
|
|
355 | flag=${x%%=*} |
|
|
356 | if [ "${flag%%${y}}" = "" ] ; then |
|
|
357 | NEW_FCFLAGS="${NEW_FCFLAGS} ${x}" |
|
|
358 | break |
|
|
359 | fi |
|
|
360 | done |
|
|
361 | done |
|
|
362 | |
| 327 | # In case we filtered out all optimization flags fallback to -O2 |
363 | # In case we filtered out all optimization flags fallback to -O2 |
| 328 | if [ "${CFLAGS/-O}" != "${CFLAGS}" -a "${NEW_CFLAGS/-O}" = "${NEW_CFLAGS}" ]; then |
364 | if [ "${CFLAGS/-O}" != "${CFLAGS}" -a "${NEW_CFLAGS/-O}" = "${NEW_CFLAGS}" ]; then |
| 329 | NEW_CFLAGS="${NEW_CFLAGS} -O2" |
365 | NEW_CFLAGS="${NEW_CFLAGS} -O2" |
| 330 | fi |
366 | fi |
| 331 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
367 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
| 332 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
368 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
| 333 | fi |
369 | fi |
|
|
370 | if [ "${FFLAGS/-O}" != "${FFLAGS}" -a "${NEW_FFLAGS/-O}" = "${NEW_FFLAGS}" ]; then |
|
|
371 | NEW_FFLAGS="${NEW_FFLAGS} -O2" |
|
|
372 | fi |
|
|
373 | if [ "${FCFLAGS/-O}" != "${FCFLAGS}" -a "${NEW_FCFLAGS/-O}" = "${NEW_FCFLAGS}" ]; then |
|
|
374 | NEW_FCFLAGS="${NEW_FCFLAGS} -O2" |
|
|
375 | fi |
| 334 | |
376 | |
| 335 | set +f # re-enable pathname expansion |
377 | set +f # re-enable pathname expansion |
| 336 | |
378 | |
| 337 | export CFLAGS="${NEW_CFLAGS}" |
379 | export CFLAGS="${NEW_CFLAGS}" |
| 338 | export CXXFLAGS="${NEW_CXXFLAGS}" |
380 | export CXXFLAGS="${NEW_CXXFLAGS}" |
|
|
381 | export FFLAGS="${NEW_FFLAGS}" |
|
|
382 | export FCFLAGS="${NEW_FCFLAGS}" |
| 339 | return 0 |
383 | return 0 |
| 340 | } |
384 | } |
| 341 | |
385 | |
| 342 | test-flag-PROG() { |
386 | test-flag-PROG() { |
| 343 | local comp=$1 |
387 | local comp=$1 |
| … | |
… | |
| 349 | local PROG=$(tc-get${comp}) |
393 | local PROG=$(tc-get${comp}) |
| 350 | ${PROG} ${flags} -S -o /dev/null -xc /dev/null \ |
394 | ${PROG} ${flags} -S -o /dev/null -xc /dev/null \ |
| 351 | > /dev/null 2>&1 |
395 | > /dev/null 2>&1 |
| 352 | } |
396 | } |
| 353 | |
397 | |
| 354 | # Returns true if C compiler support given flag |
398 | # @FUNCTION: test-flag-CC |
|
|
399 | # @USAGE: <flag> |
|
|
400 | # @DESCRIPTION: |
|
|
401 | # Returns shell true if <flag> is supported by the C compiler, else returns shell false. |
| 355 | test-flag-CC() { test-flag-PROG "CC" "$1"; } |
402 | test-flag-CC() { test-flag-PROG "CC" "$1"; } |
| 356 | |
403 | |
| 357 | # Returns true if C++ compiler support given flag |
404 | # @FUNCTION: test-flag-CXX |
|
|
405 | # @USAGE: <flag> |
|
|
406 | # @DESCRIPTION: |
|
|
407 | # Returns shell true if <flag> is supported by the C++ compiler, else returns shell false. |
| 358 | test-flag-CXX() { test-flag-PROG "CXX" "$1"; } |
408 | test-flag-CXX() { test-flag-PROG "CXX" "$1"; } |
|
|
409 | |
|
|
410 | # @FUNCTION: test-flag-F77 |
|
|
411 | # @USAGE: <flag> |
|
|
412 | # @DESCRIPTION: |
|
|
413 | # Returns shell true if <flag> is supported by the Fortran 77 compiler, else returns shell false. |
|
|
414 | test-flag-F77() { test-flag-PROG "F77" "$1"; } |
|
|
415 | |
|
|
416 | # @FUNCTION: test-flag-FC |
|
|
417 | # @USAGE: <flag> |
|
|
418 | # @DESCRIPTION: |
|
|
419 | # Returns shell true if <flag> is supported by the Fortran 90 compiler, else returns shell false. |
|
|
420 | test-flag-FC() { test-flag-PROG "FC" "$1"; } |
| 359 | |
421 | |
| 360 | test-flags-PROG() { |
422 | test-flags-PROG() { |
| 361 | local comp=$1 |
423 | local comp=$1 |
| 362 | local flags |
424 | local flags |
| 363 | local x |
425 | local x |
| 364 | |
426 | |
| 365 | shift |
427 | shift |
| 366 | |
428 | |
| 367 | [[ -z ${comp} ]] && \ |
429 | [[ -z ${comp} ]] && return 1 |
| 368 | return 1 |
|
|
| 369 | |
430 | |
|
|
431 | x="" |
| 370 | for x in "$@" ; do |
432 | for x in "$@" ; do |
| 371 | test-flag-${comp} "${x}" && flags="${flags} ${x}" |
433 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
| 372 | done |
434 | done |
| 373 | |
435 | |
| 374 | echo "${flags}" |
436 | echo "${flags}" |
| 375 | |
437 | |
| 376 | # Just bail if we dont have any flags |
438 | # Just bail if we dont have any flags |
| 377 | [[ -n ${flags} ]] |
439 | [[ -n ${flags} ]] |
| 378 | } |
440 | } |
| 379 | |
441 | |
| 380 | # Returns (echo's) the given flags supported by the C compiler |
442 | # @FUNCTION: test-flags-CC |
|
|
443 | # @USAGE: <flags> |
|
|
444 | # @DESCRIPTION: |
|
|
445 | # Returns shell true if <flags> are supported by the C compiler, else returns shell false. |
| 381 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
446 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
| 382 | |
447 | |
| 383 | # Returns (echo's) the given flags supported by the C++ compiler |
448 | # @FUNCTION: test-flags-CXX |
|
|
449 | # @USAGE: <flags> |
|
|
450 | # @DESCRIPTION: |
|
|
451 | # Returns shell true if <flags> are supported by the C++ compiler, else returns shell false. |
| 384 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
452 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
| 385 | |
453 | |
|
|
454 | # @FUNCTION: test-flags-F77 |
|
|
455 | # @USAGE: <flags> |
|
|
456 | # @DESCRIPTION: |
|
|
457 | # Returns shell true if <flags> are supported by the Fortran 77 compiler, else returns shell false. |
|
|
458 | test-flags-F77() { test-flags-PROG "F77" "$@"; } |
|
|
459 | |
|
|
460 | # @FUNCTION: test-flags-FC |
|
|
461 | # @USAGE: <flags> |
|
|
462 | # @DESCRIPTION: |
|
|
463 | # Returns shell true if <flags> are supported by the Fortran 90 compiler, else returns shell false. |
|
|
464 | test-flags-FC() { test-flags-PROG "FC" "$@"; } |
|
|
465 | |
|
|
466 | # @FUNCTION: test-flags |
|
|
467 | # @USAGE: <flags> |
|
|
468 | # @DESCRIPTION: |
| 386 | # Short-hand that should hopefully work for both C and C++ compiler, but |
469 | # Short-hand that should hopefully work for both C and C++ compiler, but |
| 387 | # its really only present due to the append-flags() abomination. |
470 | # its really only present due to the append-flags() abomination. |
| 388 | test-flags() { test-flags-CC "$@"; } |
471 | test-flags() { test-flags-CC "$@"; } |
| 389 | |
472 | |
| 390 | # Depriciated, use test-flags() |
473 | # @FUNCTION: test_flag |
|
|
474 | # @DESCRIPTION: |
|
|
475 | # DEPRICIATED, use test-flags() |
| 391 | test_flag() { |
476 | test_flag() { |
| 392 | ewarn "test_flag: deprecated, please use test-flags()!" >&2 |
477 | ewarn "test_flag: deprecated, please use test-flags()!" >&2 |
| 393 | |
478 | |
| 394 | test-flags-CC "$@" |
479 | test-flags-CC "$@" |
| 395 | } |
480 | } |
| 396 | |
481 | |
|
|
482 | # @FUNCTION: test_version_info |
|
|
483 | # @USAGE: <version> |
|
|
484 | # @DESCRIPTION: |
|
|
485 | # Returns shell true if the current C compiler version matches <version>, else returns shell false. |
|
|
486 | # Accepts shell globs. |
| 397 | test_version_info() { |
487 | test_version_info() { |
| 398 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
488 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 399 | return 0 |
489 | return 0 |
| 400 | else |
490 | else |
| 401 | return 1 |
491 | return 1 |
| 402 | fi |
492 | fi |
| 403 | } |
493 | } |
| 404 | |
494 | |
|
|
495 | # @FUNCTION: strip-unsupported-flags |
|
|
496 | # @DESCRIPTION: |
|
|
497 | # Strip {C,CXX,F,FC}FLAGS of any flags not supported by the active toolchain. |
| 405 | strip-unsupported-flags() { |
498 | strip-unsupported-flags() { |
| 406 | local x NEW_CFLAGS NEW_CXXFLAGS |
499 | export CFLAGS=$(test-flags-CC ${CFLAGS}) |
| 407 | |
500 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS}) |
| 408 | for x in ${CFLAGS} ; do |
501 | export FFLAGS=$(test-flags-F77 ${FFLAGS}) |
| 409 | NEW_CFLAGS="${NEW_CFLAGS} $(test-flags ${x})" |
502 | export FCFLAGS=$(test-flags-FC ${FCFLAGS}) |
| 410 | done |
|
|
| 411 | for x in ${CXXFLAGS} ; do |
|
|
| 412 | NEW_CXXFLAGS="${NEW_CXXFLAGS} $(test-flags ${x})" |
|
|
| 413 | done |
|
|
| 414 | |
|
|
| 415 | export CFLAGS=${NEW_CFLAGS} |
|
|
| 416 | export CXXFLAGS=${NEW_CXXFLAGS} |
|
|
| 417 | } |
503 | } |
| 418 | |
504 | |
|
|
505 | # @FUNCTION: get-flag |
|
|
506 | # @USAGE: <flag> |
|
|
507 | # @DESCRIPTION: |
|
|
508 | # Find and echo the value for a particular flag. Accepts shell globs. |
| 419 | get-flag() { |
509 | get-flag() { |
| 420 | local f findflag="$1" |
510 | local f findflag="$1" |
| 421 | |
511 | |
| 422 | # this code looks a little flaky but seems to work for |
512 | # this code looks a little flaky but seems to work for |
| 423 | # everything we want ... |
513 | # everything we want ... |
| 424 | # for example, if CFLAGS="-march=i686": |
514 | # for example, if CFLAGS="-march=i686": |
| 425 | # `get-flag -march` == "-march=i686" |
515 | # `get-flag -march` == "-march=i686" |
| 426 | # `get-flag march` == "i686" |
516 | # `get-flag march` == "i686" |
| 427 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
517 | for f in ${CFLAGS} ${CXXFLAGS} ${FFLAGS} ${FCFLAGS} ; do |
| 428 | if [ "${f/${findflag}}" != "${f}" ] ; then |
518 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 429 | printf "%s\n" "${f/-${findflag}=}" |
519 | printf "%s\n" "${f/-${findflag}=}" |
| 430 | return 0 |
520 | return 0 |
| 431 | fi |
521 | fi |
| 432 | done |
522 | done |
| 433 | return 1 |
523 | return 1 |
| 434 | } |
524 | } |
| 435 | |
525 | |
|
|
526 | # @FUNCTION: has_hardened |
|
|
527 | # @DESCRIPTION: |
| 436 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
528 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
| 437 | has_hardened() { |
529 | has_hardened() { |
| 438 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" >&2 |
530 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" >&2 |
| 439 | |
531 | |
| 440 | test_version_info Hardened && return 0 |
532 | test_version_info Hardened && return 0 |
| 441 | # The specs file wont exist unless gcc has GCC_SPECS support |
533 | # The specs file wont exist unless gcc has GCC_SPECS support |
| 442 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
534 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
| 443 | } |
535 | } |
| 444 | |
536 | |
|
|
537 | # @FUNCTION: has_pic |
|
|
538 | # @DESCRIPTION: |
| 445 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
539 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
| 446 | # indicate whether PIC is set |
540 | # indicate whether PIC is set |
| 447 | has_pic() { |
541 | has_pic() { |
| 448 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >&2 |
542 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >&2 |
| 449 | |
543 | |
| 450 | [[ ${CFLAGS/-fPIC} != ${CFLAGS} || \ |
544 | [[ ${CFLAGS/-fPIC} != ${CFLAGS} || \ |
| 451 | ${CFLAGS/-fpic} != ${CFLAGS} ]] || \ |
545 | ${CFLAGS/-fpic} != ${CFLAGS} ]] || \ |
| 452 | gcc-specs-pie |
546 | gcc-specs-pie |
| 453 | } |
547 | } |
| 454 | |
548 | |
|
|
549 | # @FUNCTION: has_pie |
|
|
550 | # @DESCRIPTION: |
| 455 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
551 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
| 456 | # indicate whether PIE is set |
552 | # indicate whether PIE is set |
| 457 | has_pie() { |
553 | has_pie() { |
| 458 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >&2 |
554 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >&2 |
| 459 | |
555 | |
| 460 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
556 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
| 461 | ${CFLAGS/-fpie} != ${CFLAGS} ]] || \ |
557 | ${CFLAGS/-fpie} != ${CFLAGS} ]] || \ |
| 462 | gcc-specs-pie |
558 | gcc-specs-pie |
| 463 | } |
559 | } |
| 464 | |
560 | |
|
|
561 | # @FUNCTION: has_ssp_all |
|
|
562 | # @DESCRIPTION: |
| 465 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
563 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
| 466 | # indicate whether code for SSP is being generated for all functions |
564 | # indicate whether code for SSP is being generated for all functions |
| 467 | has_ssp_all() { |
565 | has_ssp_all() { |
| 468 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >&2 |
566 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >&2 |
| 469 | |
567 | |
| 470 | # note; this matches only -fstack-protector-all |
568 | # note; this matches only -fstack-protector-all |
| 471 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
569 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
| 472 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
570 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
| 473 | gcc-specs-ssp-all |
571 | gcc-specs-ssp-to-all |
| 474 | } |
572 | } |
| 475 | |
573 | |
|
|
574 | # @FUNCTION: has_ssp |
|
|
575 | # @DESCRIPTION: |
| 476 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
576 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
| 477 | # indicate whether code for SSP is being generated |
577 | # indicate whether code for SSP is being generated |
| 478 | has_ssp() { |
578 | has_ssp() { |
| 479 | ewarn "has_ssp: deprecated, please use gcc-specs-ssp()!" >&2 |
579 | ewarn "has_ssp: deprecated, please use gcc-specs-ssp()!" >&2 |
| 480 | |
580 | |
| … | |
… | |
| 482 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
582 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
| 483 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
583 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
| 484 | gcc-specs-ssp |
584 | gcc-specs-ssp |
| 485 | } |
585 | } |
| 486 | |
586 | |
|
|
587 | # @FUNCTION: has_m64 |
|
|
588 | # @DESCRIPTION: |
|
|
589 | # This doesn't test if the flag is accepted, it tests if the flag actually |
|
|
590 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
|
|
591 | # return code is 0, else the return code is 1. |
| 487 | has_m64() { |
592 | has_m64() { |
| 488 | # this doesnt test if the flag is accepted, it tests if the flag |
593 | # this doesnt test if the flag is accepted, it tests if the flag |
| 489 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
594 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 490 | # please dont replace this function with test_flag in some future |
595 | # please dont replace this function with test_flag in some future |
| 491 | # clean-up! |
596 | # clean-up! |
| … | |
… | |
| 498 | rm -f "${temp}".c |
603 | rm -f "${temp}".c |
| 499 | [[ ${ret} != 1 ]] && return 0 |
604 | [[ ${ret} != 1 ]] && return 0 |
| 500 | return 1 |
605 | return 1 |
| 501 | } |
606 | } |
| 502 | |
607 | |
|
|
608 | # @FUNCTION: has_m32 |
|
|
609 | # @DESCRIPTION: |
|
|
610 | # This doesn't test if the flag is accepted, it tests if the flag actually |
|
|
611 | # WORKS. Non-mulilib gcc will take both -m32 and -64. If the flag works return |
|
|
612 | # code is 0, else return code is 1. |
| 503 | has_m32() { |
613 | has_m32() { |
| 504 | # this doesnt test if the flag is accepted, it tests if the flag |
614 | # this doesnt test if the flag is accepted, it tests if the flag |
| 505 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
615 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 506 | # please dont replace this function with test_flag in some future |
616 | # please dont replace this function with test_flag in some future |
| 507 | # clean-up! |
617 | # clean-up! |
| … | |
… | |
| 516 | rm -f "${temp}".c |
626 | rm -f "${temp}".c |
| 517 | [[ ${ret} != 1 ]] && return 0 |
627 | [[ ${ret} != 1 ]] && return 0 |
| 518 | return 1 |
628 | return 1 |
| 519 | } |
629 | } |
| 520 | |
630 | |
|
|
631 | # @FUNCTION: replace-sparc64-flags |
|
|
632 | # @DESCRIPTION: |
|
|
633 | # Sets mcpu to v8 and uses the original value as mtune if none specified. |
| 521 | replace-sparc64-flags() { |
634 | replace-sparc64-flags() { |
| 522 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
635 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
| 523 | |
636 | |
| 524 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
637 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 525 | for x in ${SPARC64_CPUS}; do |
638 | for x in ${SPARC64_CPUS}; do |
| 526 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
639 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 527 | done |
640 | done |
| 528 | else |
641 | else |
| 529 | for x in ${SPARC64_CPUS}; do |
642 | for x in ${SPARC64_CPUS}; do |
| 530 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
643 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 531 | done |
644 | done |
| 532 | fi |
645 | fi |
| 533 | |
646 | |
| 534 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
647 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
| 535 | for x in ${SPARC64_CPUS}; do |
648 | for x in ${SPARC64_CPUS}; do |
| 536 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
649 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 537 | done |
650 | done |
| 538 | else |
651 | else |
| 539 | for x in ${SPARC64_CPUS}; do |
652 | for x in ${SPARC64_CPUS}; do |
| 540 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
653 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 541 | done |
654 | done |
| 542 | fi |
655 | fi |
| 543 | |
656 | |
| 544 | export CFLAGS CXXFLAGS |
657 | export CFLAGS CXXFLAGS |
| 545 | } |
658 | } |
| 546 | |
659 | |
|
|
660 | # @FUNCTION: append-ldflags |
|
|
661 | # @USAGE: <flags> |
|
|
662 | # @DESCRIPTION: |
|
|
663 | # Add extra <flags> to the current LDFLAGS. |
| 547 | append-ldflags() { |
664 | append-ldflags() { |
| 548 | [[ -z $* ]] && return 0 |
665 | [[ -z $* ]] && return 0 |
|
|
666 | local flag |
|
|
667 | for flag in "$@"; do |
|
|
668 | [[ ${flag} == -l* ]] && \ |
|
|
669 | ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS" |
|
|
670 | done |
|
|
671 | |
| 549 | export LDFLAGS="${LDFLAGS} $*" |
672 | export LDFLAGS="${LDFLAGS} $*" |
| 550 | return 0 |
673 | return 0 |
| 551 | } |
674 | } |
| 552 | |
675 | |
| 553 | # Remove flags from LDFLAGS - it's up to the ebuild to filter |
676 | # @FUNCTION: filter-ldflags |
| 554 | # CFLAGS and CXXFLAGS via filter-flags if they need to. |
677 | # @USAGE: <flags> |
|
|
678 | # @DESCRIPTION: |
|
|
679 | # Remove particular <flags> from LDFLAGS. Accepts shell globs. |
| 555 | filter-ldflags() { |
680 | filter-ldflags() { |
| 556 | _filter-var LDFLAGS "$@" |
681 | _filter-var LDFLAGS "$@" |
| 557 | return 0 |
682 | return 0 |
| 558 | } |
683 | } |
| 559 | |
684 | |
|
|
685 | # @FUNCTION: raw-ldflags |
|
|
686 | # @USAGE: <flags> |
|
|
687 | # @DESCRIPTION: |
| 560 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
688 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
| 561 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
689 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
| 562 | # to gcc where it needs the '-Wl,'. |
690 | # to gcc where it needs the '-Wl,'. |
| 563 | raw-ldflags() { |
691 | raw-ldflags() { |
| 564 | local x input="$@" |
692 | local x input="$@" |
| … | |
… | |
| 569 | set -- "$@" ${x//,/ } |
697 | set -- "$@" ${x//,/ } |
| 570 | done |
698 | done |
| 571 | echo "$@" |
699 | echo "$@" |
| 572 | } |
700 | } |
| 573 | |
701 | |
| 574 | # This is thanks to great work from Paul de Vrieze <gentoo-user@devrieze.net>, |
702 | # @FUNCTION: bindnow-flags |
| 575 | # bug #9016. Also thanks to Jukka Salmi <salmi@gmx.net> (bug #13907) for more |
703 | # @RETURN: Returns the flags to enable "now" binding in the current selected linker. |
| 576 | # fixes. |
704 | # @DESCRIPTION: |
|
|
705 | # DEPRECATED - Gets the flags needed for "NOW" binding |
|
|
706 | bindnow-flags() { |
|
|
707 | ewarn "QA: stop using the bindnow-flags function ... simply drop it from your ebuild" |
|
|
708 | } |
|
|
709 | |
|
|
710 | |
|
|
711 | # Some tests for when we screw with things and want to make |
|
|
712 | # sure we didn't break anything |
|
|
713 | #TESTS() { |
|
|
714 | # CFLAGS="-a -b -c=1" |
|
|
715 | # CXXFLAGS="-x -y -z=2" |
|
|
716 | # LDFLAGS="-l -m -n=3" |
| 577 | # |
717 | # |
| 578 | # Export CFLAGS and CXXFLAGS that are compadible with gcc-2.95.3 |
718 | # die() { exit 1; } |
| 579 | gcc2-flags() { |
719 | # (is-flag 1 2 3) && die |
| 580 | if [[ $(tc-arch) == "x86" || $(tc-arch) == "amd64" ]] ; then |
720 | # (is-ldflag 1 2 3) && die |
| 581 | CFLAGS=${CFLAGS//-mtune=/-mcpu=} |
721 | # |
| 582 | CXXFLAGS=${CXXFLAGS//-mtune=/-mcpu=} |
722 | # is-flagq -l && die |
| 583 | fi |
723 | # is-ldflagq -a && die |
| 584 | |
724 | # is-flagq -a || die |
| 585 | replace-cpu-flags k6-{2,3} k6 |
725 | # is-flagq -x || die |
| 586 | replace-cpu-flags athlon{,-{tbird,4,xp,mp}} i686 |
726 | # is-ldflagq -n=* || die |
| 587 | |
727 | # is-ldflagq -n && die |
| 588 | replace-cpu-flags pentium-mmx i586 |
728 | # |
| 589 | replace-cpu-flags pentium{2,3,4} i686 |
729 | # strip-unsupported-flags |
| 590 | |
730 | # [[ ${CFLAGS} == "-c=1" ]] || die |
| 591 | replace-cpu-flags ev6{7,8} ev6 |
731 | # [[ ${CXXFLAGS} == "-y -z=2" ]] || die |
| 592 | |
732 | # |
| 593 | export CFLAGS CXXFLAGS |
733 | # echo "All tests pass" |
| 594 | } |
734 | #} |
| 595 | |
735 | #TESTS |
| 596 | # Gets the flags needed for "NOW" binding |
|
|
| 597 | bindnow-flags() { |
|
|
| 598 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
|
|
| 599 | *GNU* | *'with BFD'*) # GNU ld |
|
|
| 600 | echo "-Wl,-z,now" ;; |
|
|
| 601 | *Apple*) # Darwin ld |
|
|
| 602 | echo "-bind_at_load" ;; |
|
|
| 603 | *) |
|
|
| 604 | # Some linkers just recognize -V instead of -v |
|
|
| 605 | case $($(tc-getLD) -V 2>&1 </dev/null) in |
|
|
| 606 | *Solaris*) # Solaris accept almost the same GNU options |
|
|
| 607 | echo "-Wl,-z,now" ;; |
|
|
| 608 | esac |
|
|
| 609 | ;; |
|
|
| 610 | esac |
|
|
| 611 | } |
|
|