2017-07-06 14:19:53 -07:00
|
|
|
# N.B. It may be a surprise that the derivation-specific variables are exported,
|
|
|
|
# since this is just sourced by the wrapped binaries---the end consumers. This
|
|
|
|
# is because one wrapper binary may invoke another (e.g. cc invoking ld). In
|
|
|
|
# that case, it is cheaper/better to not repeat this step and let the forked
|
|
|
|
# wrapped binary just inherit the work of the forker's wrapper script.
|
|
|
|
|
2017-08-31 12:29:03 -07:00
|
|
|
var_templates_list=(
|
2020-04-27 21:08:48 -07:00
|
|
|
NIX_CFLAGS_COMPILE
|
|
|
|
NIX_CFLAGS_COMPILE_BEFORE
|
|
|
|
NIX_CFLAGS_LINK
|
|
|
|
NIX_CXXSTDLIB_COMPILE
|
|
|
|
NIX_CXXSTDLIB_LINK
|
|
|
|
NIX_GNATFLAGS_COMPILE
|
2017-08-31 12:29:03 -07:00
|
|
|
)
|
|
|
|
var_templates_bool=(
|
2020-04-27 21:08:48 -07:00
|
|
|
NIX_ENFORCE_NO_NATIVE
|
2017-08-07 17:15:10 -07:00
|
|
|
)
|
|
|
|
|
2018-05-07 10:15:34 -07:00
|
|
|
accumulateRoles
|
2017-07-06 14:19:53 -07:00
|
|
|
|
2017-08-07 17:15:10 -07:00
|
|
|
# We need to mangle names for hygiene, but also take parameters/overrides
|
|
|
|
# from the environment.
|
2017-08-31 12:29:03 -07:00
|
|
|
for var in "${var_templates_list[@]}"; do
|
2020-04-27 21:08:48 -07:00
|
|
|
mangleVarList "$var" ${role_suffixes[@]+"${role_suffixes[@]}"}
|
2017-08-31 12:29:03 -07:00
|
|
|
done
|
2017-08-31 12:29:03 -07:00
|
|
|
for var in "${var_templates_bool[@]}"; do
|
2020-04-27 21:08:48 -07:00
|
|
|
mangleVarBool "$var" ${role_suffixes[@]+"${role_suffixes[@]}"}
|
2017-08-31 12:29:03 -07:00
|
|
|
done
|
2017-07-06 14:19:53 -07:00
|
|
|
|
2016-02-05 02:59:18 -08:00
|
|
|
# `-B@out@/bin' forces cc to use ld-wrapper.sh when calling ld.
|
2020-04-27 21:08:48 -07:00
|
|
|
NIX_CFLAGS_COMPILE_@suffixSalt@="-B@out@/bin/ $NIX_CFLAGS_COMPILE_@suffixSalt@"
|
2008-06-26 04:07:46 -07:00
|
|
|
|
2017-08-02 09:48:51 -07:00
|
|
|
# Export and assign separately in order that a failing $(..) will fail
|
|
|
|
# the script.
|
|
|
|
|
2020-07-01 13:55:06 -07:00
|
|
|
if [[ "$cInclude" = 1 ]] && [ -e @out@/nix-support/libc-cflags ]; then
|
2020-04-27 21:08:48 -07:00
|
|
|
NIX_CFLAGS_COMPILE_@suffixSalt@="$(< @out@/nix-support/libc-cflags) $NIX_CFLAGS_COMPILE_@suffixSalt@"
|
2020-07-01 13:55:06 -07:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -e @out@/nix-support/libc-crt1-cflags ]; then
|
|
|
|
NIX_CFLAGS_COMPILE_@suffixSalt@="$(< @out@/nix-support/libc-crt1-cflags) $NIX_CFLAGS_COMPILE_@suffixSalt@"
|
2008-06-26 04:07:46 -07:00
|
|
|
fi
|
|
|
|
|
2020-04-13 17:44:43 -07:00
|
|
|
if [ -e @out@/nix-support/libcxx-cxxflags ]; then
|
|
|
|
NIX_CXXSTDLIB_COMPILE_@suffixSalt@+=" $(< @out@/nix-support/libcxx-cxxflags)"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -e @out@/nix-support/libcxx-ldflags ]; then
|
|
|
|
NIX_CXXSTDLIB_LINK_@suffixSalt@+=" $(< @out@/nix-support/libcxx-ldflags)"
|
|
|
|
fi
|
|
|
|
|
2016-02-05 02:59:18 -08:00
|
|
|
if [ -e @out@/nix-support/cc-cflags ]; then
|
2020-04-27 21:08:48 -07:00
|
|
|
NIX_CFLAGS_COMPILE_@suffixSalt@="$(< @out@/nix-support/cc-cflags) $NIX_CFLAGS_COMPILE_@suffixSalt@"
|
2008-06-26 04:07:46 -07:00
|
|
|
fi
|
|
|
|
|
2019-05-11 14:16:17 -07:00
|
|
|
if [ -e @out@/nix-support/gnat-cflags ]; then
|
2020-04-27 21:08:48 -07:00
|
|
|
NIX_GNATFLAGS_COMPILE_@suffixSalt@="$(< @out@/nix-support/gnat-cflags) $NIX_GNATFLAGS_COMPILE_@suffixSalt@"
|
2019-05-11 14:16:17 -07:00
|
|
|
fi
|
|
|
|
|
2016-02-05 02:59:18 -08:00
|
|
|
if [ -e @out@/nix-support/cc-ldflags ]; then
|
2020-04-27 21:08:48 -07:00
|
|
|
NIX_LDFLAGS_@suffixSalt@+=" $(< @out@/nix-support/cc-ldflags)"
|
2008-06-26 04:07:46 -07:00
|
|
|
fi
|
|
|
|
|
2019-04-09 11:21:54 -07:00
|
|
|
if [ -e @out@/nix-support/cc-cflags-before ]; then
|
2020-04-27 21:08:48 -07:00
|
|
|
NIX_CFLAGS_COMPILE_BEFORE_@suffixSalt@="$(< @out@/nix-support/cc-cflags-before) $NIX_CFLAGS_COMPILE_BEFORE_@suffixSalt@"
|
2019-04-09 11:21:54 -07:00
|
|
|
fi
|
|
|
|
|
2021-04-09 21:11:28 -07:00
|
|
|
# Only add darwin min version flag if a default darwin min version is set,
|
|
|
|
# which is a signal that we're targetting darwin.
|
|
|
|
if [ "@darwinMinVersion@" ]; then
|
|
|
|
mangleVarSingle MACOSX_DEPLOYMENT_TARGET ${role_suffixes[@]+"${role_suffixes[@]}"}
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE_BEFORE_@suffixSalt@="-m@darwinPlatformForCC@-version-min=${MACOSX_DEPLOYMENT_TARGET_@suffixSalt@:-@darwinMinVersion@} $NIX_CFLAGS_COMPILE_BEFORE_@suffixSalt@"
|
|
|
|
fi
|
|
|
|
|
2017-08-07 17:15:10 -07:00
|
|
|
# That way forked processes will not extend these environment variables again.
|
2020-04-27 21:08:48 -07:00
|
|
|
export NIX_CC_WRAPPER_FLAGS_SET_@suffixSalt@=1
|