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