2017-07-06 22:19:53 +01: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 20:29:03 +01:00
|
|
|
var_templates_list=(
|
2020-04-28 05:08:48 +01:00
|
|
|
NIX_CFLAGS_COMPILE
|
|
|
|
NIX_CFLAGS_COMPILE_BEFORE
|
|
|
|
NIX_CFLAGS_LINK
|
|
|
|
NIX_CXXSTDLIB_COMPILE
|
|
|
|
NIX_CXXSTDLIB_LINK
|
|
|
|
NIX_GNATFLAGS_COMPILE
|
2017-08-31 20:29:03 +01:00
|
|
|
)
|
|
|
|
var_templates_bool=(
|
2020-04-28 05:08:48 +01:00
|
|
|
NIX_ENFORCE_NO_NATIVE
|
2017-08-08 01:15:10 +01:00
|
|
|
)
|
|
|
|
|
2018-05-07 18:15:34 +01:00
|
|
|
accumulateRoles
|
2017-07-06 22:19:53 +01:00
|
|
|
|
2017-08-08 01:15:10 +01:00
|
|
|
# We need to mangle names for hygiene, but also take parameters/overrides
|
|
|
|
# from the environment.
|
2017-08-31 20:29:03 +01:00
|
|
|
for var in "${var_templates_list[@]}"; do
|
2020-04-28 05:08:48 +01:00
|
|
|
mangleVarList "$var" ${role_suffixes[@]+"${role_suffixes[@]}"}
|
2017-08-31 20:29:03 +01:00
|
|
|
done
|
2017-08-31 20:29:03 +01:00
|
|
|
for var in "${var_templates_bool[@]}"; do
|
2020-04-28 05:08:48 +01:00
|
|
|
mangleVarBool "$var" ${role_suffixes[@]+"${role_suffixes[@]}"}
|
2017-08-31 20:29:03 +01:00
|
|
|
done
|
2017-07-06 22:19:53 +01:00
|
|
|
|
2016-02-05 10:59:18 +00:00
|
|
|
# `-B@out@/bin' forces cc to use ld-wrapper.sh when calling ld.
|
2020-04-28 05:08:48 +01:00
|
|
|
NIX_CFLAGS_COMPILE_@suffixSalt@="-B@out@/bin/ $NIX_CFLAGS_COMPILE_@suffixSalt@"
|
2008-06-26 12:07:46 +01:00
|
|
|
|
2017-08-02 17:48:51 +01:00
|
|
|
# Export and assign separately in order that a failing $(..) will fail
|
|
|
|
# the script.
|
|
|
|
|
2020-07-01 21:55:06 +01:00
|
|
|
if [[ "$cInclude" = 1 ]] && [ -e @out@/nix-support/libc-cflags ]; then
|
2020-04-28 05:08:48 +01:00
|
|
|
NIX_CFLAGS_COMPILE_@suffixSalt@="$(< @out@/nix-support/libc-cflags) $NIX_CFLAGS_COMPILE_@suffixSalt@"
|
2020-07-01 21:55:06 +01: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 12:07:46 +01:00
|
|
|
fi
|
|
|
|
|
2020-04-14 01:44:43 +01: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 10:59:18 +00:00
|
|
|
if [ -e @out@/nix-support/cc-cflags ]; then
|
2020-04-28 05:08:48 +01:00
|
|
|
NIX_CFLAGS_COMPILE_@suffixSalt@="$(< @out@/nix-support/cc-cflags) $NIX_CFLAGS_COMPILE_@suffixSalt@"
|
2008-06-26 12:07:46 +01:00
|
|
|
fi
|
|
|
|
|
2019-05-11 22:16:17 +01:00
|
|
|
if [ -e @out@/nix-support/gnat-cflags ]; then
|
2020-04-28 05:08:48 +01:00
|
|
|
NIX_GNATFLAGS_COMPILE_@suffixSalt@="$(< @out@/nix-support/gnat-cflags) $NIX_GNATFLAGS_COMPILE_@suffixSalt@"
|
2019-05-11 22:16:17 +01:00
|
|
|
fi
|
|
|
|
|
2016-02-05 10:59:18 +00:00
|
|
|
if [ -e @out@/nix-support/cc-ldflags ]; then
|
2020-04-28 05:08:48 +01:00
|
|
|
NIX_LDFLAGS_@suffixSalt@+=" $(< @out@/nix-support/cc-ldflags)"
|
2008-06-26 12:07:46 +01:00
|
|
|
fi
|
|
|
|
|
2019-04-09 19:21:54 +01:00
|
|
|
if [ -e @out@/nix-support/cc-cflags-before ]; then
|
2020-04-28 05:08:48 +01:00
|
|
|
NIX_CFLAGS_COMPILE_BEFORE_@suffixSalt@="$(< @out@/nix-support/cc-cflags-before) $NIX_CFLAGS_COMPILE_BEFORE_@suffixSalt@"
|
2019-04-09 19:21:54 +01:00
|
|
|
fi
|
|
|
|
|
2017-08-08 01:15:10 +01:00
|
|
|
# That way forked processes will not extend these environment variables again.
|
2020-04-28 05:08:48 +01:00
|
|
|
export NIX_CC_WRAPPER_FLAGS_SET_@suffixSalt@=1
|