| 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.101 2006/01/01 01:14:59 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.167 2012/01/14 09:10:54 vapier 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,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,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 flags="$2" |
| 301 | |
351 | |
| 302 | [[ -z ${comp} || -z ${flags} ]] && \ |
352 | [[ -z ${comp} || -z ${flags} ]] && 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} ${flags} -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"; } |
|
|
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"; } |
| 315 | |
383 | |
| 316 | test-flags-PROG() { |
384 | test-flags-PROG() { |
| 317 | local comp=$1 |
385 | local comp=$1 |
| 318 | local flags |
386 | local flags |
| 319 | local x |
387 | local x |
| 320 | |
388 | |
| 321 | shift |
389 | shift |
| 322 | |
390 | |
| 323 | [[ -z ${comp} ]] && \ |
391 | [[ -z ${comp} ]] && return 1 |
| 324 | return 1 |
|
|
| 325 | |
392 | |
| 326 | for x in "$@" ; do |
393 | for x in "$@" ; do |
| 327 | test-flag-${comp} "${x}" && flags="${flags} ${x}" |
394 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
| 328 | done |
395 | done |
| 329 | |
396 | |
| 330 | echo "${flags}" |
397 | echo "${flags}" |
| 331 | |
398 | |
| 332 | # Just bail if we dont have any flags |
399 | # Just bail if we dont have any flags |
| 333 | [[ -n ${flags} ]] |
400 | [[ -n ${flags} ]] |
| 334 | } |
401 | } |
| 335 | |
402 | |
| 336 | # Returns (echo's) the given flags supported by the C compiler |
403 | # @FUNCTION: test-flags-CC |
|
|
404 | # @USAGE: <flags> |
|
|
405 | # @DESCRIPTION: |
|
|
406 | # Returns shell true if <flags> are supported by the C compiler, else returns shell false. |
| 337 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
407 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
| 338 | |
408 | |
| 339 | # Returns (echo's) the given flags supported by the C++ compiler |
409 | # @FUNCTION: test-flags-CXX |
|
|
410 | # @USAGE: <flags> |
|
|
411 | # @DESCRIPTION: |
|
|
412 | # Returns shell true if <flags> are supported by the C++ compiler, else returns shell false. |
| 340 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
413 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
| 341 | |
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: |
| 342 | # Short-hand that should hopefully work for both C and C++ compiler, but |
430 | # Short-hand that should hopefully work for both C and C++ compiler, but |
| 343 | # its really only present due to the append-flags() abomination. |
431 | # its really only present due to the append-flags() abomination. |
| 344 | test-flags() { test-flags-CC "$@"; } |
432 | test-flags() { test-flags-CC "$@"; } |
| 345 | |
433 | |
| 346 | # Depriciated, use test-flags() |
434 | # @FUNCTION: test_version_info |
| 347 | test_flag() { |
435 | # @USAGE: <version> |
| 348 | addwrite "/dev/stderr" |
436 | # @DESCRIPTION: |
| 349 | ewarn "test_flag: deprecated, please use test-flags()!" >/dev/stderr |
437 | # Returns shell true if the current C compiler version matches <version>, else returns shell false. |
| 350 | |
438 | # Accepts shell globs. |
| 351 | test-flags-CC "$@" |
|
|
| 352 | } |
|
|
| 353 | |
|
|
| 354 | test_version_info() { |
439 | test_version_info() { |
| 355 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
440 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 356 | return 0 |
441 | return 0 |
| 357 | else |
442 | else |
| 358 | return 1 |
443 | return 1 |
| 359 | fi |
444 | fi |
| 360 | } |
445 | } |
| 361 | |
446 | |
|
|
447 | # @FUNCTION: strip-unsupported-flags |
|
|
448 | # @DESCRIPTION: |
|
|
449 | # Strip {C,CXX,F,FC}FLAGS of any flags not supported by the active toolchain. |
| 362 | strip-unsupported-flags() { |
450 | strip-unsupported-flags() { |
| 363 | local x NEW_CFLAGS NEW_CXXFLAGS |
451 | export CFLAGS=$(test-flags-CC ${CFLAGS}) |
| 364 | |
452 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS}) |
| 365 | for x in ${CFLAGS} ; do |
453 | export FFLAGS=$(test-flags-F77 ${FFLAGS}) |
| 366 | NEW_CFLAGS="${NEW_CFLAGS} $(test-flags ${x})" |
454 | export FCFLAGS=$(test-flags-FC ${FCFLAGS}) |
| 367 | done |
|
|
| 368 | for x in ${CXXFLAGS} ; do |
|
|
| 369 | NEW_CXXFLAGS="${NEW_CXXFLAGS} $(test-flags ${x})" |
|
|
| 370 | done |
|
|
| 371 | |
|
|
| 372 | export CFLAGS=${NEW_CFLAGS} |
|
|
| 373 | export CXXFLAGS=${NEW_CXXFLAGS} |
|
|
| 374 | } |
455 | } |
| 375 | |
456 | |
|
|
457 | # @FUNCTION: get-flag |
|
|
458 | # @USAGE: <flag> |
|
|
459 | # @DESCRIPTION: |
|
|
460 | # Find and echo the value for a particular flag. Accepts shell globs. |
| 376 | get-flag() { |
461 | get-flag() { |
| 377 | local f findflag="$1" |
462 | local f var findflag="$1" |
| 378 | |
463 | |
| 379 | # this code looks a little flaky but seems to work for |
464 | # this code looks a little flaky but seems to work for |
| 380 | # everything we want ... |
465 | # everything we want ... |
| 381 | # for example, if CFLAGS="-march=i686": |
466 | # for example, if CFLAGS="-march=i686": |
| 382 | # `get-flag -march` == "-march=i686" |
467 | # `get-flag -march` == "-march=i686" |
| 383 | # `get-flag march` == "i686" |
468 | # `get-flag march` == "i686" |
| 384 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
469 | for var in $(all-flag-vars) ; do |
|
|
470 | for f in ${!var} ; do |
| 385 | if [ "${f/${findflag}}" != "${f}" ] ; then |
471 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 386 | printf "%s\n" "${f/-${findflag}=}" |
472 | printf "%s\n" "${f/-${findflag}=}" |
| 387 | return 0 |
473 | return 0 |
| 388 | fi |
474 | fi |
|
|
475 | done |
| 389 | done |
476 | done |
| 390 | return 1 |
477 | return 1 |
| 391 | } |
478 | } |
| 392 | |
479 | |
| 393 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
480 | # @FUNCTION: has_m64 |
| 394 | has_hardened() { |
481 | # @DESCRIPTION: |
| 395 | addwrite "/dev/stderr" |
482 | # This doesn't test if the flag is accepted, it tests if the flag actually |
| 396 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" \ |
483 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
| 397 | >/dev/stderr |
484 | # return code is 0, else the return code is 1. |
| 398 | |
|
|
| 399 | test_version_info Hardened && return 0 |
|
|
| 400 | # The specs file wont exist unless gcc has GCC_SPECS support |
|
|
| 401 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
|
|
| 402 | } |
|
|
| 403 | |
|
|
| 404 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
| 405 | # indicate whether PIC is set |
|
|
| 406 | has_pic() { |
|
|
| 407 | addwrite "/dev/stderr" |
|
|
| 408 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >/dev/stderr |
|
|
| 409 | |
|
|
| 410 | [[ ${CFLAGS/-fPIC} != ${CFLAGS} || \ |
|
|
| 411 | ${CFLAGS/-fpic} != ${CFLAGS} || \ |
|
|
| 412 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__) ]] |
|
|
| 413 | } |
|
|
| 414 | |
|
|
| 415 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
| 416 | # indicate whether PIE is set |
|
|
| 417 | has_pie() { |
|
|
| 418 | addwrite "/dev/stderr" |
|
|
| 419 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >/dev/stderr |
|
|
| 420 | |
|
|
| 421 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
|
|
| 422 | ${CFLAGS/-fpie} != ${CFLAGS} || \ |
|
|
| 423 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIE__) || \ |
|
|
| 424 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__) ]] |
|
|
| 425 | # test PIC while waiting for specs to be updated to generate __PIE__ |
|
|
| 426 | } |
|
|
| 427 | |
|
|
| 428 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
| 429 | # indicate whether code for SSP is being generated for all functions |
|
|
| 430 | has_ssp_all() { |
|
|
| 431 | addwrite "/dev/stderr" |
|
|
| 432 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >/dev/stderr |
|
|
| 433 | |
|
|
| 434 | # note; this matches only -fstack-protector-all |
|
|
| 435 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
|
|
| 436 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
|
|
| 437 | gcc-specs-ssp |
|
|
| 438 | } |
|
|
| 439 | |
|
|
| 440 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
| 441 | # indicate whether code for SSP is being generated |
|
|
| 442 | has_ssp() { |
|
|
| 443 | addwrite "/dev/stderr" |
|
|
| 444 | ewarn "has_ssp: deprecated, please use gcc-specs-ssp()!" >/dev/stderr |
|
|
| 445 | |
|
|
| 446 | # note; this matches both -fstack-protector and -fstack-protector-all |
|
|
| 447 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
|
|
| 448 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
|
|
| 449 | gcc-specs-ssp |
|
|
| 450 | } |
|
|
| 451 | |
|
|
| 452 | has_m64() { |
485 | has_m64() { |
|
|
486 | eqawarn "${FUNCNAME}: don't use this anymore" |
|
|
487 | |
| 453 | # 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 |
| 454 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
489 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 455 | # please dont replace this function with test_flag in some future |
490 | # please dont replace this function with test_flag in some future |
| 456 | # clean-up! |
491 | # clean-up! |
| 457 | |
492 | |
| … | |
… | |
| 464 | [[ ${ret} != 1 ]] && return 0 |
499 | [[ ${ret} != 1 ]] && return 0 |
| 465 | return 1 |
500 | return 1 |
| 466 | } |
501 | } |
| 467 | |
502 | |
| 468 | has_m32() { |
503 | has_m32() { |
| 469 | # this doesnt test if the flag is accepted, it tests if the flag |
504 | die "${FUNCNAME}: don't use this anymore" |
| 470 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
| 471 | # please dont replace this function with test_flag in some future |
|
|
| 472 | # clean-up! |
|
|
| 473 | |
|
|
| 474 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
|
|
| 475 | |
|
|
| 476 | local temp=$(emktemp) |
|
|
| 477 | echo "int main() { return(0); }" > "${temp}".c |
|
|
| 478 | MY_CC=$(tc-getCC) |
|
|
| 479 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
| 480 | local ret=$? |
|
|
| 481 | rm -f "${temp}".c |
|
|
| 482 | [[ ${ret} != 1 ]] && return 0 |
|
|
| 483 | return 1 |
|
|
| 484 | } |
505 | } |
| 485 | |
506 | |
|
|
507 | # @FUNCTION: replace-sparc64-flags |
|
|
508 | # @DESCRIPTION: |
|
|
509 | # Sets mcpu to v8 and uses the original value as mtune if none specified. |
| 486 | replace-sparc64-flags() { |
510 | replace-sparc64-flags() { |
| 487 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
511 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
| 488 | |
512 | |
| 489 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
513 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 490 | for x in ${SPARC64_CPUS}; do |
514 | for x in ${SPARC64_CPUS}; do |
| 491 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
515 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 492 | done |
516 | done |
| 493 | else |
517 | else |
| 494 | for x in ${SPARC64_CPUS}; do |
518 | for x in ${SPARC64_CPUS}; do |
| 495 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
519 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 496 | done |
520 | done |
| 497 | fi |
521 | fi |
| 498 | |
522 | |
| 499 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
523 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
| 500 | for x in ${SPARC64_CPUS}; do |
524 | for x in ${SPARC64_CPUS}; do |
| 501 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
525 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 502 | done |
526 | done |
| 503 | else |
527 | else |
| 504 | for x in ${SPARC64_CPUS}; do |
528 | for x in ${SPARC64_CPUS}; do |
| 505 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
529 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 506 | done |
530 | done |
| 507 | fi |
531 | fi |
| 508 | |
532 | |
| 509 | export CFLAGS CXXFLAGS |
533 | export CFLAGS CXXFLAGS |
| 510 | } |
534 | } |
| 511 | |
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. |
| 512 | 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 | |
| 513 | export LDFLAGS="${LDFLAGS} $*" |
563 | export LDFLAGS="${LDFLAGS} $*" |
| 514 | return 0 |
564 | return 0 |
| 515 | } |
565 | } |
| 516 | |
566 | |
|
|
567 | # @FUNCTION: filter-ldflags |
|
|
568 | # @USAGE: <flags> |
|
|
569 | # @DESCRIPTION: |
|
|
570 | # Remove particular <flags> from LDFLAGS. Accepts shell globs. |
| 517 | filter-ldflags() { |
571 | filter-ldflags() { |
| 518 | local x |
572 | _filter-var LDFLAGS "$@" |
| 519 | |
|
|
| 520 | # we do this fancy spacing stuff so as to not filter |
|
|
| 521 | # out part of a flag ... we want flag atoms ! :D |
|
|
| 522 | LDFLAGS=" ${LDFLAGS} " |
|
|
| 523 | for x in "$@" ; do |
|
|
| 524 | LDFLAGS=${LDFLAGS// ${x} / } |
|
|
| 525 | done |
|
|
| 526 | [[ -z ${LDFLAGS// } ]] \ |
|
|
| 527 | && LDFLAGS="" \ |
|
|
| 528 | || LDFLAGS=${LDFLAGS:1:${#LDFLAGS}-2} |
|
|
| 529 | export LDFLAGS |
|
|
| 530 | return 0 |
573 | return 0 |
| 531 | } |
574 | } |
| 532 | |
575 | |
| 533 | fstack-flags() { |
576 | # @FUNCTION: raw-ldflags |
| 534 | if gcc-specs-ssp; then |
577 | # @USAGE: [flags] |
| 535 | [ -z "`is-flag -fno-stack-protector`" ] && |
578 | # @DESCRIPTION: |
| 536 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
579 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
| 537 | fi |
580 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
| 538 | return 0 |
581 | # to gcc where it needs the '-Wl,'. |
| 539 | } |
|
|
| 540 | |
|
|
| 541 | # This is thanks to great work from Paul de Vrieze <gentoo-user@devrieze.net>, |
|
|
| 542 | # bug #9016. Also thanks to Jukka Salmi <salmi@gmx.net> (bug #13907) for more |
|
|
| 543 | # fixes. |
|
|
| 544 | # |
582 | # |
| 545 | # Export CFLAGS and CXXFLAGS that are compadible with gcc-2.95.3 |
583 | # If no flags are specified, then default to ${LDFLAGS}. |
| 546 | gcc2-flags() { |
584 | raw-ldflags() { |
| 547 | if [[ $(tc-arch) == "x86" || $(tc-arch) == "amd64" ]] ; then |
585 | local x input="$@" |
| 548 | CFLAGS=${CFLAGS//-mtune=/-mcpu=} |
586 | [[ -z ${input} ]] && input=${LDFLAGS} |
| 549 | CXXFLAGS=${CXXFLAGS//-mtune=/-mcpu=} |
587 | set -- |
| 550 | fi |
588 | for x in ${input} ; do |
| 551 | |
589 | x=${x#-Wl,} |
| 552 | replace-cpu-flags k6-{2,3} k6 |
590 | set -- "$@" ${x//,/ } |
| 553 | replace-cpu-flags athlon{,-{tbird,4,xp,mp}} i686 |
591 | done |
| 554 | |
592 | echo "$@" |
| 555 | replace-cpu-flags pentium-mmx i586 |
|
|
| 556 | replace-cpu-flags pentium{2,3,4} i686 |
|
|
| 557 | |
|
|
| 558 | replace-cpu-flags ev6{7,8} ev6 |
|
|
| 559 | |
|
|
| 560 | export CFLAGS CXXFLAGS |
|
|
| 561 | } |
593 | } |
| 562 | |
594 | |
| 563 | # Gets the flags needed for "NOW" binding |
595 | # @FUNCTION: no-as-needed |
| 564 | bindnow-flags() { |
596 | # @RETURN: Flag to disable asneeded behavior for use with append-ldflags. |
|
|
597 | no-as-needed() { |
| 565 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
598 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
| 566 | *GNU* | *'with BFD'*) # GNU ld |
599 | *GNU*) # GNU ld |
| 567 | echo "-Wl,-z,now" ;; |
600 | echo "-Wl,--no-as-needed" ;; |
| 568 | *Apple*) # Darwin ld |
|
|
| 569 | echo "-bind_at_load" ;; |
|
|
| 570 | *) |
|
|
| 571 | # Some linkers just recognize -V instead of -v |
|
|
| 572 | case $($(tc-getLD) -V 2>&1 </dev/null) in |
|
|
| 573 | *Solaris*) # Solaris accept almost the same GNU options |
|
|
| 574 | echo "-Wl,-z,now" ;; |
|
|
| 575 | esac |
|
|
| 576 | ;; |
|
|
| 577 | esac |
601 | esac |
| 578 | } |
602 | } |
|
|
603 | |
|
|
604 | fi |