| 1 |
dirtyepic |
1.157 |
# Copyright 1999-2011 Gentoo Foundation
|
| 2 |
verwilst |
1.1 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
vapier |
1.159 |
# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.158 2011/11/14 20:29:03 vapier Exp $
|
| 4 |
vapier |
1.121 |
|
| 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 |
vapier |
1.63 |
|
| 13 |
eradicator |
1.80 |
inherit eutils toolchain-funcs multilib
|
| 14 |
vapier |
1.72 |
|
| 15 |
kevquinn |
1.92 |
################ DEPRECATED functions ################
|
| 16 |
|
|
# The following are still present to avoid breaking existing
|
| 17 |
|
|
# code more than necessary; however they are deprecated. Please
|
| 18 |
|
|
# use gcc-specs-* from toolchain-funcs.eclass instead, if you
|
| 19 |
|
|
# need to know which hardened techs are active in the compiler.
|
| 20 |
|
|
# See bug #100974
|
| 21 |
|
|
#
|
| 22 |
vapier |
1.121 |
# has_hardened
|
| 23 |
|
|
# has_pie
|
| 24 |
|
|
# has_pic
|
| 25 |
|
|
# has_ssp_all
|
| 26 |
|
|
# has_ssp
|
| 27 |
|
|
|
| 28 |
verwilst |
1.3 |
|
| 29 |
dberkholz |
1.124 |
# {C,CXX,F,FC}FLAGS that we allow in strip-flags
|
| 30 |
vapier |
1.117 |
# Note: shell globs and character lists are allowed
|
| 31 |
vapier |
1.36 |
setup-allowed-flags() {
|
| 32 |
vapier |
1.84 |
if [[ -z ${ALLOWED_FLAGS} ]] ; then
|
| 33 |
vapier |
1.76 |
export ALLOWED_FLAGS="-pipe"
|
| 34 |
|
|
export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune"
|
| 35 |
vapier |
1.87 |
export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all"
|
| 36 |
solar |
1.127 |
export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-strict-overflow"
|
| 37 |
kevquinn |
1.105 |
export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time"
|
| 38 |
vapier |
1.117 |
export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+"
|
| 39 |
dirtyepic |
1.150 |
export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident -fpermissive"
|
| 40 |
dberkholz |
1.120 |
export ALLOWED_FLAGS="${ALLOWED_FLAGS} -W* -w"
|
| 41 |
vapier |
1.44 |
fi
|
| 42 |
vapier |
1.65 |
# allow a bunch of flags that negate features / control ABI
|
| 43 |
vapier |
1.119 |
ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all \
|
| 44 |
vapier |
1.135 |
-fno-strict-aliasing -fno-bounds-checking -fstrict-overflow -fno-omit-frame-pointer"
|
| 45 |
vapier |
1.87 |
ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \
|
| 46 |
dirtyepic |
1.139 |
-mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 \
|
| 47 |
|
|
-mno-sse4.2 -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow \
|
| 48 |
|
|
-mno-popcnt -mno-abm \
|
| 49 |
vapier |
1.140 |
-mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -mplt \
|
| 50 |
vapier |
1.87 |
-msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \
|
| 51 |
dirtyepic |
1.149 |
-mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe \
|
| 52 |
vapier |
1.91 |
-mtls-direct-seg-refs -mno-tls-direct-seg-refs \
|
| 53 |
vapier |
1.87 |
-mflat -mno-flat -mno-faster-structs -mfaster-structs \
|
| 54 |
vapier |
1.159 |
-m32 -m64 -mx32 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \
|
| 55 |
vapier |
1.114 |
-mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \
|
| 56 |
solar |
1.127 |
-msecure-plt -m*-toc -D* -U*"
|
| 57 |
vapier |
1.135 |
|
| 58 |
dirtyepic |
1.148 |
# 4.5
|
| 59 |
|
|
ALLOWED_FLAGS="${ALLOWED_FLAGS} -mno-fma4 -mno-movbe -mno-xop -mno-lwp"
|
| 60 |
dirtyepic |
1.149 |
# 4.6
|
| 61 |
|
|
ALLOWED_FLAGS="${ALLOWED_FLAGS} -mno-fsgsbase -mno-rdrnd -mno-f16c \
|
| 62 |
|
|
-mno-bmi -mno-tbm"
|
| 63 |
dirtyepic |
1.148 |
|
| 64 |
dberkholz |
1.124 |
# {C,CXX,F,FC}FLAGS that we are think is ok, but needs testing
|
| 65 |
vapier |
1.36 |
# NOTE: currently -Os have issues with gcc3 and K6* arch's
|
| 66 |
vapier |
1.106 |
export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks"
|
| 67 |
vapier |
1.36 |
return 0
|
| 68 |
aliz |
1.24 |
}
|
| 69 |
verwilst |
1.13 |
|
| 70 |
kevquinn |
1.105 |
# inverted filters for hardened compiler. This is trying to unpick
|
| 71 |
|
|
# the hardened compiler defaults.
|
| 72 |
|
|
_filter-hardened() {
|
| 73 |
|
|
local f
|
| 74 |
|
|
for f in "$@" ; do
|
| 75 |
|
|
case "${f}" in
|
| 76 |
|
|
# Ideally we should only concern ourselves with PIE flags,
|
| 77 |
|
|
# not -fPIC or -fpic, but too many places filter -fPIC without
|
| 78 |
|
|
# thinking about -fPIE.
|
| 79 |
|
|
-fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie)
|
| 80 |
|
|
gcc-specs-pie || continue
|
| 81 |
|
|
is-flagq -nopie || append-flags -nopie;;
|
| 82 |
|
|
-fstack-protector)
|
| 83 |
|
|
gcc-specs-ssp || continue
|
| 84 |
gengor |
1.131 |
is-flagq -fno-stack-protector || append-flags $(test-flags -fno-stack-protector);;
|
| 85 |
kevquinn |
1.105 |
-fstack-protector-all)
|
| 86 |
|
|
gcc-specs-ssp-to-all || continue
|
| 87 |
gengor |
1.131 |
is-flagq -fno-stack-protector-all || append-flags $(test-flags -fno-stack-protector-all);;
|
| 88 |
gengor |
1.128 |
-fno-strict-overflow)
|
| 89 |
|
|
gcc-specs-nostrict || continue
|
| 90 |
gengor |
1.131 |
is-flagq -fstrict-overflow || append-flags $(test-flags -fstrict-overflow);;
|
| 91 |
solar |
1.27 |
esac
|
| 92 |
|
|
done
|
| 93 |
kevquinn |
1.105 |
}
|
| 94 |
|
|
|
| 95 |
|
|
# Remove occurrences of strings from variable given in $1
|
| 96 |
|
|
# Strings removed are matched as globs, so for example
|
| 97 |
|
|
# '-O*' would remove -O1, -O2 etc.
|
| 98 |
|
|
_filter-var() {
|
| 99 |
|
|
local f x VAR VAL
|
| 100 |
|
|
declare -a new
|
| 101 |
vapier |
1.36 |
|
| 102 |
kevquinn |
1.105 |
VAR=$1
|
| 103 |
|
|
shift
|
| 104 |
|
|
eval VAL=\${${VAR}}
|
| 105 |
|
|
for f in ${VAL}; do
|
| 106 |
|
|
for x in "$@"; do
|
| 107 |
|
|
# Note this should work with globs like -O*
|
| 108 |
|
|
[[ ${f} == ${x} ]] && continue 2
|
| 109 |
agriffis |
1.61 |
done
|
| 110 |
kevquinn |
1.105 |
eval new\[\${\#new\[@]}]=\${f}
|
| 111 |
verwilst |
1.1 |
done
|
| 112 |
kevquinn |
1.105 |
eval export ${VAR}=\${new\[*]}
|
| 113 |
|
|
}
|
| 114 |
agriffis |
1.61 |
|
| 115 |
vapier |
1.121 |
# @FUNCTION: filter-flags
|
| 116 |
|
|
# @USAGE: <flags>
|
| 117 |
|
|
# @DESCRIPTION:
|
| 118 |
dberkholz |
1.124 |
# Remove particular <flags> from {C,CPP,CXX,F,FC}FLAGS. Accepts shell globs.
|
| 119 |
kevquinn |
1.105 |
filter-flags() {
|
| 120 |
|
|
_filter-hardened "$@"
|
| 121 |
|
|
_filter-var CFLAGS "$@"
|
| 122 |
vapier |
1.118 |
_filter-var CPPFLAGS "$@"
|
| 123 |
kevquinn |
1.105 |
_filter-var CXXFLAGS "$@"
|
| 124 |
dberkholz |
1.124 |
_filter-var FFLAGS "$@"
|
| 125 |
|
|
_filter-var FCFLAGS "$@"
|
| 126 |
vapier |
1.36 |
return 0
|
| 127 |
verwilst |
1.2 |
}
|
| 128 |
|
|
|
| 129 |
vapier |
1.121 |
# @FUNCTION: filter-lfs-flags
|
| 130 |
|
|
# @DESCRIPTION:
|
| 131 |
|
|
# Remove flags that enable Large File Support.
|
| 132 |
vapier |
1.40 |
filter-lfs-flags() {
|
| 133 |
vapier |
1.154 |
[[ $# -ne 0 ]] && die "filter-lfs-flags takes no arguments"
|
| 134 |
vapier |
1.153 |
# http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html
|
| 135 |
|
|
# _LARGEFILE_SOURCE: enable support for new LFS funcs (ftello/etc...)
|
| 136 |
|
|
# _LARGEFILE64_SOURCE: enable support for 64bit variants (off64_t/fseeko64/etc...)
|
| 137 |
|
|
# _FILE_OFFSET_BITS: default to 64bit variants (off_t is defined as off64_t)
|
| 138 |
vapier |
1.40 |
filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
|
| 139 |
|
|
}
|
| 140 |
|
|
|
| 141 |
vapier |
1.121 |
# @FUNCTION: append-cppflags
|
| 142 |
|
|
# @USAGE: <flags>
|
| 143 |
|
|
# @DESCRIPTION:
|
| 144 |
|
|
# Add extra <flags> to the current CPPFLAGS.
|
| 145 |
vapier |
1.118 |
append-cppflags() {
|
| 146 |
vapier |
1.158 |
[[ $# -eq 0 ]] && return 0
|
| 147 |
vapier |
1.118 |
export CPPFLAGS="${CPPFLAGS} $*"
|
| 148 |
|
|
return 0
|
| 149 |
|
|
}
|
| 150 |
|
|
|
| 151 |
vapier |
1.136 |
# @FUNCTION: append-cflags
|
| 152 |
|
|
# @USAGE: <flags>
|
| 153 |
|
|
# @DESCRIPTION:
|
| 154 |
|
|
# Add extra <flags> to the current CFLAGS.
|
| 155 |
mr_bones_ |
1.137 |
append-cflags() {
|
| 156 |
vapier |
1.158 |
[[ $# -eq 0 ]] && return 0
|
| 157 |
|
|
export CFLAGS=$(test-flags-CC ${CFLAGS} "$@")
|
| 158 |
vapier |
1.136 |
return 0
|
| 159 |
|
|
}
|
| 160 |
|
|
|
| 161 |
gengor |
1.132 |
# @FUNCTION: append-cxxflags
|
| 162 |
|
|
# @USAGE: <flags>
|
| 163 |
|
|
# @DESCRIPTION:
|
| 164 |
|
|
# Add extra <flags> to the current CXXFLAGS.
|
| 165 |
|
|
append-cxxflags() {
|
| 166 |
vapier |
1.158 |
[[ $# -eq 0 ]] && return 0
|
| 167 |
|
|
export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS} "$@")
|
| 168 |
gengor |
1.132 |
return 0
|
| 169 |
|
|
}
|
| 170 |
|
|
|
| 171 |
dberkholz |
1.124 |
# @FUNCTION: append-fflags
|
| 172 |
|
|
# @USAGE: <flags>
|
| 173 |
|
|
# @DESCRIPTION:
|
| 174 |
|
|
# Add extra <flags> to the current {F,FC}FLAGS.
|
| 175 |
|
|
append-fflags() {
|
| 176 |
vapier |
1.158 |
[[ $# -eq 0 ]] && return 0
|
| 177 |
|
|
export FFLAGS=$(test-flags-F77 ${FFLAGS} "$@")
|
| 178 |
|
|
export FCFLAGS=$(test-flags-FC ${FCFLAGS} "$@")
|
| 179 |
dberkholz |
1.124 |
return 0
|
| 180 |
|
|
}
|
| 181 |
|
|
|
| 182 |
vapier |
1.121 |
# @FUNCTION: append-lfs-flags
|
| 183 |
|
|
# @DESCRIPTION:
|
| 184 |
|
|
# Add flags that enable Large File Support.
|
| 185 |
vapier |
1.48 |
append-lfs-flags() {
|
| 186 |
vapier |
1.154 |
[[ $# -ne 0 ]] && die "append-lfs-flags takes no arguments"
|
| 187 |
vapier |
1.155 |
# see comments in filter-lfs-flags func for meaning of these
|
| 188 |
vapier |
1.118 |
append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
|
| 189 |
vapier |
1.48 |
}
|
| 190 |
|
|
|
| 191 |
vapier |
1.121 |
# @FUNCTION: append-flags
|
| 192 |
|
|
# @USAGE: <flags>
|
| 193 |
|
|
# @DESCRIPTION:
|
| 194 |
dberkholz |
1.124 |
# Add extra <flags> to your current {C,CXX,F,FC}FLAGS.
|
| 195 |
vapier |
1.18 |
append-flags() {
|
| 196 |
vapier |
1.158 |
[[ $# -eq 0 ]] && return 0
|
| 197 |
vapier |
1.136 |
append-cflags "$@"
|
| 198 |
vapier |
1.138 |
append-cxxflags "$@"
|
| 199 |
vapier |
1.136 |
append-fflags "$@"
|
| 200 |
vapier |
1.28 |
return 0
|
| 201 |
verwilst |
1.1 |
}
|
| 202 |
|
|
|
| 203 |
vapier |
1.121 |
# @FUNCTION: replace-flags
|
| 204 |
|
|
# @USAGE: <old> <new>
|
| 205 |
|
|
# @DESCRIPTION:
|
| 206 |
|
|
# Replace the <old> flag with <new>. Accepts shell globs for <old>.
|
| 207 |
vapier |
1.18 |
replace-flags() {
|
| 208 |
vapier |
1.93 |
[[ $# != 2 ]] \
|
| 209 |
|
|
&& echo && eerror "Usage: replace-flags <old flag> <new flag>" \
|
| 210 |
|
|
&& die "replace-flags takes 2 arguments, not $#"
|
| 211 |
|
|
|
| 212 |
mr_bones_ |
1.83 |
local f fset
|
| 213 |
dirtyepic |
1.125 |
declare -a new_CFLAGS new_CXXFLAGS new_FFLAGS new_FCFLAGS
|
| 214 |
agriffis |
1.64 |
|
| 215 |
dberkholz |
1.124 |
for fset in CFLAGS CXXFLAGS FFLAGS FCFLAGS; do
|
| 216 |
agriffis |
1.64 |
# Looping over the flags instead of using a global
|
| 217 |
|
|
# substitution ensures that we're working with flag atoms.
|
| 218 |
|
|
# Otherwise globs like -O* have the potential to wipe out the
|
| 219 |
|
|
# list of flags.
|
| 220 |
|
|
for f in ${!fset}; do
|
| 221 |
|
|
# Note this should work with globs like -O*
|
| 222 |
|
|
[[ ${f} == ${1} ]] && f=${2}
|
| 223 |
|
|
eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f}
|
| 224 |
|
|
done
|
| 225 |
|
|
eval export ${fset}=\${new_${fset}\[*]}
|
| 226 |
|
|
done
|
| 227 |
|
|
|
| 228 |
vapier |
1.28 |
return 0
|
| 229 |
danarmak |
1.7 |
}
|
| 230 |
|
|
|
| 231 |
vapier |
1.121 |
# @FUNCTION: replace-cpu-flags
|
| 232 |
|
|
# @USAGE: <old> <new>
|
| 233 |
|
|
# @DESCRIPTION:
|
| 234 |
|
|
# Replace cpu flags (like -march/-mcpu/-mtune) that select the <old> cpu
|
| 235 |
|
|
# with flags that select the <new> cpu. Accepts shell globs for <old>.
|
| 236 |
vapier |
1.37 |
replace-cpu-flags() {
|
| 237 |
vapier |
1.70 |
local newcpu="$#" ; newcpu="${!newcpu}"
|
| 238 |
|
|
while [ $# -gt 1 ] ; do
|
| 239 |
agriffis |
1.64 |
# quote to make sure that no globbing is done (particularly on
|
| 240 |
vapier |
1.113 |
# ${oldcpu}) prior to calling replace-flags
|
| 241 |
vapier |
1.70 |
replace-flags "-march=${1}" "-march=${newcpu}"
|
| 242 |
|
|
replace-flags "-mcpu=${1}" "-mcpu=${newcpu}"
|
| 243 |
|
|
replace-flags "-mtune=${1}" "-mtune=${newcpu}"
|
| 244 |
|
|
shift
|
| 245 |
vapier |
1.37 |
done
|
| 246 |
|
|
return 0
|
| 247 |
|
|
}
|
| 248 |
|
|
|
| 249 |
vapier |
1.113 |
_is_flagq() {
|
| 250 |
kevquinn |
1.105 |
local x
|
| 251 |
vapier |
1.113 |
for x in ${!1} ; do
|
| 252 |
|
|
[[ ${x} == $2 ]] && return 0
|
| 253 |
kevquinn |
1.105 |
done
|
| 254 |
|
|
return 1
|
| 255 |
|
|
}
|
| 256 |
|
|
|
| 257 |
vapier |
1.121 |
# @FUNCTION: is-flagq
|
| 258 |
|
|
# @USAGE: <flag>
|
| 259 |
|
|
# @DESCRIPTION:
|
| 260 |
dberkholz |
1.124 |
# Returns shell true if <flag> is in {C,CXX,F,FC}FLAGS, else returns shell false. Accepts shell globs.
|
| 261 |
vapier |
1.113 |
is-flagq() {
|
| 262 |
|
|
[[ -n $2 ]] && die "Usage: is-flag <flag>"
|
| 263 |
dberkholz |
1.124 |
_is_flagq CFLAGS $1 || _is_flagq CXXFLAGS $1 || _is_flagq FFLAGS $1 || _is_flagq FCFLAGS $1
|
| 264 |
vapier |
1.113 |
}
|
| 265 |
|
|
|
| 266 |
vapier |
1.121 |
# @FUNCTION: is-flag
|
| 267 |
|
|
# @USAGE: <flag>
|
| 268 |
|
|
# @DESCRIPTION:
|
| 269 |
dberkholz |
1.124 |
# Echo's "true" if flag is set in {C,CXX,F,FC}FLAGS. Accepts shell globs.
|
| 270 |
danarmak |
1.7 |
is-flag() {
|
| 271 |
vapier |
1.113 |
is-flagq "$@" && echo true
|
| 272 |
kevquinn |
1.105 |
}
|
| 273 |
|
|
|
| 274 |
vapier |
1.121 |
# @FUNCTION: is-ldflagq
|
| 275 |
|
|
# @USAGE: <flag>
|
| 276 |
|
|
# @DESCRIPTION:
|
| 277 |
|
|
# Returns shell true if <flag> is in LDFLAGS, else returns shell false. Accepts shell globs.
|
| 278 |
kevquinn |
1.105 |
is-ldflagq() {
|
| 279 |
vapier |
1.113 |
[[ -n $2 ]] && die "Usage: is-ldflag <flag>"
|
| 280 |
|
|
_is_flagq LDFLAGS $1
|
| 281 |
verwilst |
1.1 |
}
|
| 282 |
azarah |
1.8 |
|
| 283 |
vapier |
1.121 |
# @FUNCTION: is-ldflag
|
| 284 |
|
|
# @USAGE: <flag>
|
| 285 |
|
|
# @DESCRIPTION:
|
| 286 |
|
|
# Echo's "true" if flag is set in LDFLAGS. Accepts shell globs.
|
| 287 |
kevquinn |
1.105 |
is-ldflag() {
|
| 288 |
vapier |
1.113 |
is-ldflagq "$@" && echo true
|
| 289 |
kevquinn |
1.105 |
}
|
| 290 |
|
|
|
| 291 |
vapier |
1.121 |
# @FUNCTION: filter-mfpmath
|
| 292 |
|
|
# @USAGE: <math types>
|
| 293 |
|
|
# @DESCRIPTION:
|
| 294 |
|
|
# Remove specified math types from the fpmath flag. For example, if the user
|
| 295 |
|
|
# has -mfpmath=sse,386, running `filter-mfpmath sse` will leave the user with
|
| 296 |
|
|
# -mfpmath=386.
|
| 297 |
vapier |
1.36 |
filter-mfpmath() {
|
| 298 |
agriffis |
1.58 |
local orig_mfpmath new_math prune_math
|
| 299 |
|
|
|
| 300 |
vapier |
1.36 |
# save the original -mfpmath flag
|
| 301 |
vapier |
1.109 |
orig_mfpmath=$(get-flag -mfpmath)
|
| 302 |
vapier |
1.36 |
# get the value of the current -mfpmath flag
|
| 303 |
vapier |
1.109 |
new_math=$(get-flag mfpmath)
|
| 304 |
|
|
new_math=" ${new_math//,/ } "
|
| 305 |
vapier |
1.36 |
# figure out which math values are to be removed
|
| 306 |
agriffis |
1.58 |
prune_math=""
|
| 307 |
vapier |
1.36 |
for prune_math in "$@" ; do
|
| 308 |
vapier |
1.109 |
new_math=${new_math/ ${prune_math} / }
|
| 309 |
vapier |
1.36 |
done
|
| 310 |
vapier |
1.109 |
new_math=$(echo ${new_math})
|
| 311 |
|
|
new_math=${new_math// /,}
|
| 312 |
vapier |
1.36 |
|
| 313 |
vapier |
1.109 |
if [[ -z ${new_math} ]] ; then
|
| 314 |
vapier |
1.36 |
# if we're removing all user specified math values are
|
| 315 |
|
|
# slated for removal, then we just filter the flag
|
| 316 |
|
|
filter-flags ${orig_mfpmath}
|
| 317 |
|
|
else
|
| 318 |
|
|
# if we only want to filter some of the user specified
|
| 319 |
|
|
# math values, then we replace the current flag
|
| 320 |
|
|
replace-flags ${orig_mfpmath} -mfpmath=${new_math}
|
| 321 |
|
|
fi
|
| 322 |
|
|
return 0
|
| 323 |
|
|
}
|
| 324 |
|
|
|
| 325 |
vapier |
1.121 |
# @FUNCTION: strip-flags
|
| 326 |
|
|
# @DESCRIPTION:
|
| 327 |
|
|
# Strip C[XX]FLAGS of everything except known good/safe flags.
|
| 328 |
azarah |
1.8 |
strip-flags() {
|
| 329 |
dberkholz |
1.124 |
local x y flag NEW_CFLAGS NEW_CXXFLAGS NEW_FFLAGS NEW_FCFLAGS
|
| 330 |
agriffis |
1.58 |
|
| 331 |
vapier |
1.36 |
setup-allowed-flags
|
| 332 |
|
|
|
| 333 |
azarah |
1.8 |
local NEW_CFLAGS=""
|
| 334 |
|
|
local NEW_CXXFLAGS=""
|
| 335 |
dberkholz |
1.124 |
local NEW_FFLAGS=""
|
| 336 |
|
|
local NEW_FCFLAGS=""
|
| 337 |
azarah |
1.8 |
|
| 338 |
azarah |
1.17 |
# Allow unstable C[XX]FLAGS if we are using unstable profile ...
|
| 339 |
vapier |
1.144 |
if has "~$(tc-arch)" ${ACCEPT_KEYWORDS} ; then
|
| 340 |
azarah |
1.17 |
ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}"
|
| 341 |
|
|
fi
|
| 342 |
|
|
|
| 343 |
agriffis |
1.58 |
set -f # disable pathname expansion
|
| 344 |
azarah |
1.8 |
|
| 345 |
agriffis |
1.58 |
for x in ${CFLAGS}; do
|
| 346 |
|
|
for y in ${ALLOWED_FLAGS}; do
|
| 347 |
lostlogic |
1.14 |
flag=${x%%=*}
|
| 348 |
vapier |
1.65 |
if [ "${flag%%${y}}" = "" ] ; then
|
| 349 |
lostlogic |
1.14 |
NEW_CFLAGS="${NEW_CFLAGS} ${x}"
|
| 350 |
|
|
break
|
| 351 |
azarah |
1.8 |
fi
|
| 352 |
|
|
done
|
| 353 |
|
|
done
|
| 354 |
|
|
|
| 355 |
agriffis |
1.58 |
for x in ${CXXFLAGS}; do
|
| 356 |
|
|
for y in ${ALLOWED_FLAGS}; do
|
| 357 |
lostlogic |
1.14 |
flag=${x%%=*}
|
| 358 |
vapier |
1.65 |
if [ "${flag%%${y}}" = "" ] ; then
|
| 359 |
lostlogic |
1.14 |
NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}"
|
| 360 |
|
|
break
|
| 361 |
azarah |
1.8 |
fi
|
| 362 |
|
|
done
|
| 363 |
|
|
done
|
| 364 |
azarah |
1.30 |
|
| 365 |
dberkholz |
1.124 |
for x in ${FFLAGS}; do
|
| 366 |
|
|
for y in ${ALLOWED_FLAGS}; do
|
| 367 |
|
|
flag=${x%%=*}
|
| 368 |
|
|
if [ "${flag%%${y}}" = "" ] ; then
|
| 369 |
|
|
NEW_FFLAGS="${NEW_FFLAGS} ${x}"
|
| 370 |
|
|
break
|
| 371 |
|
|
fi
|
| 372 |
|
|
done
|
| 373 |
|
|
done
|
| 374 |
|
|
|
| 375 |
|
|
for x in ${FCFLAGS}; do
|
| 376 |
|
|
for y in ${ALLOWED_FLAGS}; do
|
| 377 |
|
|
flag=${x%%=*}
|
| 378 |
|
|
if [ "${flag%%${y}}" = "" ] ; then
|
| 379 |
|
|
NEW_FCFLAGS="${NEW_FCFLAGS} ${x}"
|
| 380 |
|
|
break
|
| 381 |
|
|
fi
|
| 382 |
|
|
done
|
| 383 |
|
|
done
|
| 384 |
|
|
|
| 385 |
azarah |
1.30 |
# In case we filtered out all optimization flags fallback to -O2
|
| 386 |
|
|
if [ "${CFLAGS/-O}" != "${CFLAGS}" -a "${NEW_CFLAGS/-O}" = "${NEW_CFLAGS}" ]; then
|
| 387 |
|
|
NEW_CFLAGS="${NEW_CFLAGS} -O2"
|
| 388 |
|
|
fi
|
| 389 |
|
|
if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then
|
| 390 |
|
|
NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2"
|
| 391 |
|
|
fi
|
| 392 |
dberkholz |
1.124 |
if [ "${FFLAGS/-O}" != "${FFLAGS}" -a "${NEW_FFLAGS/-O}" = "${NEW_FFLAGS}" ]; then
|
| 393 |
|
|
NEW_FFLAGS="${NEW_FFLAGS} -O2"
|
| 394 |
|
|
fi
|
| 395 |
|
|
if [ "${FCFLAGS/-O}" != "${FCFLAGS}" -a "${NEW_FCFLAGS/-O}" = "${NEW_FCFLAGS}" ]; then
|
| 396 |
|
|
NEW_FCFLAGS="${NEW_FCFLAGS} -O2"
|
| 397 |
|
|
fi
|
| 398 |
azarah |
1.8 |
|
| 399 |
agriffis |
1.58 |
set +f # re-enable pathname expansion
|
| 400 |
azarah |
1.8 |
|
| 401 |
|
|
export CFLAGS="${NEW_CFLAGS}"
|
| 402 |
|
|
export CXXFLAGS="${NEW_CXXFLAGS}"
|
| 403 |
dberkholz |
1.124 |
export FFLAGS="${NEW_FFLAGS}"
|
| 404 |
|
|
export FCFLAGS="${NEW_FCFLAGS}"
|
| 405 |
vapier |
1.36 |
return 0
|
| 406 |
puggy |
1.29 |
}
|
| 407 |
|
|
|
| 408 |
azarah |
1.96 |
test-flag-PROG() {
|
| 409 |
|
|
local comp=$1
|
| 410 |
|
|
local flags="$2"
|
| 411 |
|
|
|
| 412 |
vapier |
1.152 |
[[ -z ${comp} || -z ${flags} ]] && return 1
|
| 413 |
azarah |
1.96 |
|
| 414 |
vapier |
1.152 |
# use -c so we can test the assembler as well
|
| 415 |
azarah |
1.96 |
local PROG=$(tc-get${comp})
|
| 416 |
vapier |
1.152 |
${PROG} ${flags} -c -o /dev/null -xc /dev/null \
|
| 417 |
azarah |
1.96 |
> /dev/null 2>&1
|
| 418 |
|
|
}
|
| 419 |
|
|
|
| 420 |
vapier |
1.121 |
# @FUNCTION: test-flag-CC
|
| 421 |
|
|
# @USAGE: <flag>
|
| 422 |
|
|
# @DESCRIPTION:
|
| 423 |
|
|
# Returns shell true if <flag> is supported by the C compiler, else returns shell false.
|
| 424 |
azarah |
1.96 |
test-flag-CC() { test-flag-PROG "CC" "$1"; }
|
| 425 |
|
|
|
| 426 |
vapier |
1.121 |
# @FUNCTION: test-flag-CXX
|
| 427 |
|
|
# @USAGE: <flag>
|
| 428 |
|
|
# @DESCRIPTION:
|
| 429 |
|
|
# Returns shell true if <flag> is supported by the C++ compiler, else returns shell false.
|
| 430 |
azarah |
1.96 |
test-flag-CXX() { test-flag-PROG "CXX" "$1"; }
|
| 431 |
|
|
|
| 432 |
dberkholz |
1.124 |
# @FUNCTION: test-flag-F77
|
| 433 |
|
|
# @USAGE: <flag>
|
| 434 |
|
|
# @DESCRIPTION:
|
| 435 |
|
|
# Returns shell true if <flag> is supported by the Fortran 77 compiler, else returns shell false.
|
| 436 |
|
|
test-flag-F77() { test-flag-PROG "F77" "$1"; }
|
| 437 |
|
|
|
| 438 |
|
|
# @FUNCTION: test-flag-FC
|
| 439 |
|
|
# @USAGE: <flag>
|
| 440 |
|
|
# @DESCRIPTION:
|
| 441 |
|
|
# Returns shell true if <flag> is supported by the Fortran 90 compiler, else returns shell false.
|
| 442 |
|
|
test-flag-FC() { test-flag-PROG "FC" "$1"; }
|
| 443 |
|
|
|
| 444 |
azarah |
1.99 |
test-flags-PROG() {
|
| 445 |
|
|
local comp=$1
|
| 446 |
|
|
local flags
|
| 447 |
azarah |
1.96 |
local x
|
| 448 |
azarah |
1.99 |
|
| 449 |
|
|
shift
|
| 450 |
|
|
|
| 451 |
vapier |
1.113 |
[[ -z ${comp} ]] && return 1
|
| 452 |
swegener |
1.101 |
|
| 453 |
azarah |
1.96 |
for x in "$@" ; do
|
| 454 |
vapier |
1.113 |
test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}"
|
| 455 |
azarah |
1.96 |
done
|
| 456 |
|
|
|
| 457 |
azarah |
1.99 |
echo "${flags}"
|
| 458 |
azarah |
1.96 |
|
| 459 |
azarah |
1.99 |
# Just bail if we dont have any flags
|
| 460 |
|
|
[[ -n ${flags} ]]
|
| 461 |
azarah |
1.96 |
}
|
| 462 |
|
|
|
| 463 |
vapier |
1.121 |
# @FUNCTION: test-flags-CC
|
| 464 |
|
|
# @USAGE: <flags>
|
| 465 |
|
|
# @DESCRIPTION:
|
| 466 |
|
|
# Returns shell true if <flags> are supported by the C compiler, else returns shell false.
|
| 467 |
azarah |
1.99 |
test-flags-CC() { test-flags-PROG "CC" "$@"; }
|
| 468 |
|
|
|
| 469 |
vapier |
1.121 |
# @FUNCTION: test-flags-CXX
|
| 470 |
|
|
# @USAGE: <flags>
|
| 471 |
|
|
# @DESCRIPTION:
|
| 472 |
|
|
# Returns shell true if <flags> are supported by the C++ compiler, else returns shell false.
|
| 473 |
azarah |
1.99 |
test-flags-CXX() { test-flags-PROG "CXX" "$@"; }
|
| 474 |
|
|
|
| 475 |
dberkholz |
1.124 |
# @FUNCTION: test-flags-F77
|
| 476 |
|
|
# @USAGE: <flags>
|
| 477 |
|
|
# @DESCRIPTION:
|
| 478 |
|
|
# Returns shell true if <flags> are supported by the Fortran 77 compiler, else returns shell false.
|
| 479 |
|
|
test-flags-F77() { test-flags-PROG "F77" "$@"; }
|
| 480 |
|
|
|
| 481 |
|
|
# @FUNCTION: test-flags-FC
|
| 482 |
|
|
# @USAGE: <flags>
|
| 483 |
|
|
# @DESCRIPTION:
|
| 484 |
|
|
# Returns shell true if <flags> are supported by the Fortran 90 compiler, else returns shell false.
|
| 485 |
|
|
test-flags-FC() { test-flags-PROG "FC" "$@"; }
|
| 486 |
|
|
|
| 487 |
vapier |
1.121 |
# @FUNCTION: test-flags
|
| 488 |
|
|
# @USAGE: <flags>
|
| 489 |
|
|
# @DESCRIPTION:
|
| 490 |
azarah |
1.99 |
# Short-hand that should hopefully work for both C and C++ compiler, but
|
| 491 |
azarah |
1.100 |
# its really only present due to the append-flags() abomination.
|
| 492 |
azarah |
1.99 |
test-flags() { test-flags-CC "$@"; }
|
| 493 |
|
|
|
| 494 |
vapier |
1.121 |
# @FUNCTION: test_version_info
|
| 495 |
|
|
# @USAGE: <version>
|
| 496 |
|
|
# @DESCRIPTION:
|
| 497 |
|
|
# Returns shell true if the current C compiler version matches <version>, else returns shell false.
|
| 498 |
|
|
# Accepts shell globs.
|
| 499 |
agriffis |
1.58 |
test_version_info() {
|
| 500 |
vapier |
1.75 |
if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then
|
| 501 |
agriffis |
1.58 |
return 0
|
| 502 |
|
|
else
|
| 503 |
|
|
return 1
|
| 504 |
|
|
fi
|
| 505 |
|
|
}
|
| 506 |
|
|
|
| 507 |
vapier |
1.121 |
# @FUNCTION: strip-unsupported-flags
|
| 508 |
|
|
# @DESCRIPTION:
|
| 509 |
dberkholz |
1.124 |
# Strip {C,CXX,F,FC}FLAGS of any flags not supported by the active toolchain.
|
| 510 |
puggy |
1.29 |
strip-unsupported-flags() {
|
| 511 |
vapier |
1.113 |
export CFLAGS=$(test-flags-CC ${CFLAGS})
|
| 512 |
|
|
export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS})
|
| 513 |
dberkholz |
1.124 |
export FFLAGS=$(test-flags-F77 ${FFLAGS})
|
| 514 |
|
|
export FCFLAGS=$(test-flags-FC ${FCFLAGS})
|
| 515 |
azarah |
1.8 |
}
|
| 516 |
|
|
|
| 517 |
vapier |
1.121 |
# @FUNCTION: get-flag
|
| 518 |
|
|
# @USAGE: <flag>
|
| 519 |
|
|
# @DESCRIPTION:
|
| 520 |
|
|
# Find and echo the value for a particular flag. Accepts shell globs.
|
| 521 |
vapier |
1.10 |
get-flag() {
|
| 522 |
agriffis |
1.58 |
local f findflag="$1"
|
| 523 |
|
|
|
| 524 |
vapier |
1.36 |
# this code looks a little flaky but seems to work for
|
| 525 |
|
|
# everything we want ...
|
| 526 |
|
|
# for example, if CFLAGS="-march=i686":
|
| 527 |
agriffis |
1.58 |
# `get-flag -march` == "-march=i686"
|
| 528 |
|
|
# `get-flag march` == "i686"
|
| 529 |
dberkholz |
1.124 |
for f in ${CFLAGS} ${CXXFLAGS} ${FFLAGS} ${FCFLAGS} ; do
|
| 530 |
vapier |
1.10 |
if [ "${f/${findflag}}" != "${f}" ] ; then
|
| 531 |
agriffis |
1.58 |
printf "%s\n" "${f/-${findflag}=}"
|
| 532 |
vapier |
1.28 |
return 0
|
| 533 |
vapier |
1.10 |
fi
|
| 534 |
|
|
done
|
| 535 |
vapier |
1.28 |
return 1
|
| 536 |
joker |
1.16 |
}
|
| 537 |
|
|
|
| 538 |
vapier |
1.151 |
# DEAD FUNCS. Remove by Dec 2011.
|
| 539 |
|
|
test_flag() { die "$0: deprecated, please use test-flags()!" ; }
|
| 540 |
|
|
has_hardened() { die "$0: deprecated, please use gcc-specs-{relro,now}()!" ; }
|
| 541 |
|
|
has_pic() { die "$0: deprecated, please use gcc-specs-pie()!" ; }
|
| 542 |
|
|
has_pie() { die "$0: deprecated, please use gcc-specs-pie()!" ; }
|
| 543 |
|
|
has_ssp_all() { die "$0: deprecated, please use gcc-specs-ssp()!" ; }
|
| 544 |
|
|
has_ssp() { die "$0: deprecated, please use gcc-specs-ssp()!" ; }
|
| 545 |
tseng |
1.42 |
|
| 546 |
vapier |
1.121 |
# @FUNCTION: has_m64
|
| 547 |
|
|
# @DESCRIPTION:
|
| 548 |
|
|
# This doesn't test if the flag is accepted, it tests if the flag actually
|
| 549 |
|
|
# WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works
|
| 550 |
|
|
# return code is 0, else the return code is 1.
|
| 551 |
lv |
1.56 |
has_m64() {
|
| 552 |
lv |
1.62 |
# this doesnt test if the flag is accepted, it tests if the flag
|
| 553 |
|
|
# actually -WORKS-. non-multilib gcc will take both -m32 and -m64!
|
| 554 |
|
|
# please dont replace this function with test_flag in some future
|
| 555 |
|
|
# clean-up!
|
| 556 |
swegener |
1.101 |
|
| 557 |
vapier |
1.72 |
local temp="$(emktemp)"
|
| 558 |
azarah |
1.96 |
echo "int main() { return(0); }" > "${temp}".c
|
| 559 |
kugelfang |
1.74 |
MY_CC=$(tc-getCC)
|
| 560 |
azarah |
1.96 |
${MY_CC/ .*/} -m64 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1
|
| 561 |
vapier |
1.72 |
local ret=$?
|
| 562 |
azarah |
1.96 |
rm -f "${temp}".c
|
| 563 |
|
|
[[ ${ret} != 1 ]] && return 0
|
| 564 |
lv |
1.62 |
return 1
|
| 565 |
lv |
1.56 |
}
|
| 566 |
|
|
|
| 567 |
vapier |
1.121 |
# @FUNCTION: has_m32
|
| 568 |
|
|
# @DESCRIPTION:
|
| 569 |
|
|
# This doesn't test if the flag is accepted, it tests if the flag actually
|
| 570 |
|
|
# WORKS. Non-mulilib gcc will take both -m32 and -64. If the flag works return
|
| 571 |
|
|
# code is 0, else return code is 1.
|
| 572 |
lv |
1.56 |
has_m32() {
|
| 573 |
lv |
1.62 |
# this doesnt test if the flag is accepted, it tests if the flag
|
| 574 |
|
|
# actually -WORKS-. non-multilib gcc will take both -m32 and -m64!
|
| 575 |
|
|
# please dont replace this function with test_flag in some future
|
| 576 |
|
|
# clean-up!
|
| 577 |
eradicator |
1.80 |
|
| 578 |
|
|
[ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0
|
| 579 |
|
|
|
| 580 |
vapier |
1.95 |
local temp=$(emktemp)
|
| 581 |
|
|
echo "int main() { return(0); }" > "${temp}".c
|
| 582 |
kugelfang |
1.74 |
MY_CC=$(tc-getCC)
|
| 583 |
vapier |
1.95 |
${MY_CC/ .*/} -m32 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1
|
| 584 |
vapier |
1.72 |
local ret=$?
|
| 585 |
vapier |
1.95 |
rm -f "${temp}".c
|
| 586 |
azarah |
1.96 |
[[ ${ret} != 1 ]] && return 0
|
| 587 |
lv |
1.62 |
return 1
|
| 588 |
lv |
1.56 |
}
|
| 589 |
|
|
|
| 590 |
vapier |
1.121 |
# @FUNCTION: replace-sparc64-flags
|
| 591 |
|
|
# @DESCRIPTION:
|
| 592 |
|
|
# Sets mcpu to v8 and uses the original value as mtune if none specified.
|
| 593 |
vapier |
1.18 |
replace-sparc64-flags() {
|
| 594 |
fmccor |
1.98 |
local SPARC64_CPUS="ultrasparc3 ultrasparc v9"
|
| 595 |
joker |
1.16 |
|
| 596 |
mr_bones_ |
1.83 |
if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then
|
| 597 |
agriffis |
1.58 |
for x in ${SPARC64_CPUS}; do
|
| 598 |
joker |
1.16 |
CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}"
|
| 599 |
|
|
done
|
| 600 |
mr_bones_ |
1.83 |
else
|
| 601 |
swegener |
1.111 |
for x in ${SPARC64_CPUS}; do
|
| 602 |
joker |
1.16 |
CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}"
|
| 603 |
|
|
done
|
| 604 |
|
|
fi
|
| 605 |
mr_bones_ |
1.83 |
|
| 606 |
|
|
if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then
|
| 607 |
agriffis |
1.58 |
for x in ${SPARC64_CPUS}; do
|
| 608 |
joker |
1.16 |
CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}"
|
| 609 |
|
|
done
|
| 610 |
|
|
else
|
| 611 |
swegener |
1.111 |
for x in ${SPARC64_CPUS}; do
|
| 612 |
joker |
1.16 |
CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}"
|
| 613 |
|
|
done
|
| 614 |
|
|
fi
|
| 615 |
vapier |
1.59 |
|
| 616 |
|
|
export CFLAGS CXXFLAGS
|
| 617 |
solar |
1.27 |
}
|
| 618 |
|
|
|
| 619 |
abcd |
1.147 |
# @FUNCTION: append-libs
|
| 620 |
|
|
# @USAGE: <libs>
|
| 621 |
|
|
# @DESCRIPTION:
|
| 622 |
|
|
# Add extra <libs> to the current LIBS.
|
| 623 |
|
|
append-libs() {
|
| 624 |
vapier |
1.158 |
[[ $# -eq 0 ]] && return 0
|
| 625 |
abcd |
1.147 |
local flag
|
| 626 |
|
|
for flag in "$@"; do
|
| 627 |
|
|
[[ ${flag} == -l* ]] && flag=${flag#-l}
|
| 628 |
|
|
export LIBS="${LIBS} -l${flag}"
|
| 629 |
|
|
done
|
| 630 |
|
|
|
| 631 |
|
|
return 0
|
| 632 |
|
|
}
|
| 633 |
|
|
|
| 634 |
vapier |
1.121 |
# @FUNCTION: append-ldflags
|
| 635 |
|
|
# @USAGE: <flags>
|
| 636 |
|
|
# @DESCRIPTION:
|
| 637 |
|
|
# Add extra <flags> to the current LDFLAGS.
|
| 638 |
solar |
1.27 |
append-ldflags() {
|
| 639 |
vapier |
1.158 |
[[ $# -eq 0 ]] && return 0
|
| 640 |
flameeyes |
1.123 |
local flag
|
| 641 |
|
|
for flag in "$@"; do
|
| 642 |
|
|
[[ ${flag} == -l* ]] && \
|
| 643 |
|
|
ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS"
|
| 644 |
|
|
done
|
| 645 |
|
|
|
| 646 |
vapier |
1.59 |
export LDFLAGS="${LDFLAGS} $*"
|
| 647 |
vapier |
1.28 |
return 0
|
| 648 |
solar |
1.27 |
}
|
| 649 |
|
|
|
| 650 |
vapier |
1.121 |
# @FUNCTION: filter-ldflags
|
| 651 |
|
|
# @USAGE: <flags>
|
| 652 |
|
|
# @DESCRIPTION:
|
| 653 |
|
|
# Remove particular <flags> from LDFLAGS. Accepts shell globs.
|
| 654 |
solar |
1.41 |
filter-ldflags() {
|
| 655 |
kevquinn |
1.105 |
_filter-var LDFLAGS "$@"
|
| 656 |
solar |
1.41 |
return 0
|
| 657 |
|
|
}
|
| 658 |
|
|
|
| 659 |
vapier |
1.121 |
# @FUNCTION: raw-ldflags
|
| 660 |
vapier |
1.156 |
# @USAGE: [flags]
|
| 661 |
vapier |
1.121 |
# @DESCRIPTION:
|
| 662 |
kevquinn |
1.105 |
# Turn C style ldflags (-Wl,-foo) into straight ldflags - the results
|
| 663 |
|
|
# are suitable for passing directly to 'ld'; note LDFLAGS is usually passed
|
| 664 |
|
|
# to gcc where it needs the '-Wl,'.
|
| 665 |
vapier |
1.156 |
#
|
| 666 |
|
|
# If no flags are specified, then default to ${LDFLAGS}.
|
| 667 |
vapier |
1.102 |
raw-ldflags() {
|
| 668 |
|
|
local x input="$@"
|
| 669 |
|
|
[[ -z ${input} ]] && input=${LDFLAGS}
|
| 670 |
|
|
set --
|
| 671 |
|
|
for x in ${input} ; do
|
| 672 |
vapier |
1.103 |
x=${x#-Wl,}
|
| 673 |
|
|
set -- "$@" ${x//,/ }
|
| 674 |
vapier |
1.102 |
done
|
| 675 |
|
|
echo "$@"
|
| 676 |
|
|
}
|
| 677 |
|
|
|
| 678 |
ssuominen |
1.145 |
# @FUNCTION: no-as-needed
|
| 679 |
|
|
# @RETURN: Flag to disable asneeded behavior for use with append-ldflags.
|
| 680 |
|
|
no-as-needed() {
|
| 681 |
|
|
case $($(tc-getLD) -v 2>&1 </dev/null) in
|
| 682 |
|
|
*GNU*) # GNU ld
|
| 683 |
|
|
echo "-Wl,--no-as-needed" ;;
|
| 684 |
|
|
esac
|
| 685 |
|
|
}
|
| 686 |
vapier |
1.113 |
|
| 687 |
|
|
# Some tests for when we screw with things and want to make
|
| 688 |
|
|
# sure we didn't break anything
|
| 689 |
|
|
#TESTS() {
|
| 690 |
|
|
# CFLAGS="-a -b -c=1"
|
| 691 |
|
|
# CXXFLAGS="-x -y -z=2"
|
| 692 |
|
|
# LDFLAGS="-l -m -n=3"
|
| 693 |
|
|
#
|
| 694 |
|
|
# die() { exit 1; }
|
| 695 |
|
|
# (is-flag 1 2 3) && die
|
| 696 |
|
|
# (is-ldflag 1 2 3) && die
|
| 697 |
|
|
#
|
| 698 |
|
|
# is-flagq -l && die
|
| 699 |
|
|
# is-ldflagq -a && die
|
| 700 |
|
|
# is-flagq -a || die
|
| 701 |
|
|
# is-flagq -x || die
|
| 702 |
|
|
# is-ldflagq -n=* || die
|
| 703 |
|
|
# is-ldflagq -n && die
|
| 704 |
|
|
#
|
| 705 |
|
|
# strip-unsupported-flags
|
| 706 |
|
|
# [[ ${CFLAGS} == "-c=1" ]] || die
|
| 707 |
|
|
# [[ ${CXXFLAGS} == "-y -z=2" ]] || die
|
| 708 |
|
|
#
|
| 709 |
|
|
# echo "All tests pass"
|
| 710 |
|
|
#}
|
| 711 |
|
|
#TESTS
|