2017-07-06 23:19:53 +02:00
|
|
|
# CC Wrapper hygiene
|
|
|
|
#
|
|
|
|
# For at least cross compilation, we need to depend on multiple cc-wrappers at
|
|
|
|
# once---specifically up to one per sort of dependency. This follows from having
|
|
|
|
# different tools targeting different platforms, and different flags for those
|
|
|
|
# tools. For example:
|
|
|
|
#
|
|
|
|
# # Flags for compiling (whether or not linking) C code for the...
|
2020-04-28 06:08:48 +02:00
|
|
|
# NIX_CFLAGS_COMPILE_FOR_BUILD # ...build platform
|
|
|
|
# NIX_CFLAGS_COMPILE # ...host platform
|
|
|
|
# NIX_CFLAGS_COMPILE_FOR_TARGET # ...target platform
|
2017-07-06 23:19:53 +02:00
|
|
|
#
|
|
|
|
# Notice that these platforms are the 3 *relative* to the package using
|
|
|
|
# cc-wrapper, not absolute like `x86_64-pc-linux-gnu`.
|
|
|
|
#
|
|
|
|
# The simplest solution would be to have separate cc-wrappers per (3 intended
|
|
|
|
# use-cases * n absolute concrete platforms). For the use-case axis, we would
|
|
|
|
# @-splice in 'BUILD_' '' 'TARGET_' to use the write environment variables when
|
|
|
|
# building the cc-wrapper, and likewise prefix the binaries' names so they didn't
|
|
|
|
# clobber each other on the PATH. But the need for 3x cc-wrappers, along with
|
|
|
|
# non-standard name prefixes, is annoying and liable to break packages' build
|
|
|
|
# systems.
|
|
|
|
#
|
|
|
|
# Instead, we opt to have just one cc-wrapper per absolute platform. Matching
|
|
|
|
# convention, the binaries' names can just be prefixed with their target
|
|
|
|
# platform. On the other hand, that means packages will depend on not just
|
|
|
|
# multiple cc-wrappers, but the exact same cc-wrapper derivation multiple ways.
|
|
|
|
# That means the exact same cc-wrapper derivation must be able to avoid
|
|
|
|
# conflicting with itself, despite the fact that `setup-hook.sh`, the `addCvars`
|
|
|
|
# function, and `add-flags.sh` are all communicating with each other with
|
|
|
|
# environment variables. Yuck.
|
|
|
|
#
|
|
|
|
# The basic strategy is:
|
|
|
|
#
|
|
|
|
# - Everyone exclusively *adds information* to relative-platform-specific
|
2020-04-28 06:08:48 +02:00
|
|
|
# environment variables, like `NIX_CFLAGS_COMPILE_FOR_TARGET`, to communicate
|
2017-07-06 23:19:53 +02:00
|
|
|
# with the wrapped binaries.
|
|
|
|
#
|
|
|
|
# - The wrapped binaries will exclusively *read* cc-wrapper-derivation-specific
|
2020-04-28 06:08:48 +02:00
|
|
|
# environment variables distinguished with with `suffixSalt`, like
|
|
|
|
# `NIX_CFLAGS_COMPILE_@suffixSalt@`.
|
2017-07-06 23:19:53 +02:00
|
|
|
#
|
|
|
|
# - `add-flags`, beyond its old task of reading extra flags stuck inside the
|
|
|
|
# cc-wrapper derivation, will convert the relative-platform-specific
|
|
|
|
# variables to cc-wrapper-derivation-specific variables. This conversion is
|
|
|
|
# the only time all but one of the cc-wrapper-derivation-specific variables
|
|
|
|
# are set.
|
|
|
|
#
|
|
|
|
# This ensures the flow of information is exclusive from
|
|
|
|
# relative-platform-specific variables to cc-wrapper-derivation-specific
|
|
|
|
# variables. This allows us to support the general case of a many--many relation
|
|
|
|
# between relative platforms and cc-wrapper derivations.
|
|
|
|
#
|
|
|
|
# For more details, read the individual files where the mechanisms used to
|
|
|
|
# accomplish this will be individually documented.
|
|
|
|
|
2017-08-28 17:33:08 +02:00
|
|
|
# Skip setup hook if we're neither a build-time dep, nor, temporarily, doing a
|
|
|
|
# native compile.
|
|
|
|
#
|
|
|
|
# TODO(@Ericson2314): No native exception
|
2018-05-13 17:31:24 +02:00
|
|
|
[[ -z ${strictDeps-} ]] || (( "$hostOffset" < 0 )) || return 0
|
2017-07-06 23:19:53 +02:00
|
|
|
|
|
|
|
# It's fine that any other cc-wrapper will redefine this. Bash functions close
|
|
|
|
# over no state, and there's no @-substitutions within, so any redefined
|
|
|
|
# function is guaranteed to be exactly the same.
|
2017-06-26 06:43:06 +02:00
|
|
|
ccWrapper_addCVars () {
|
2018-05-07 19:07:19 +02:00
|
|
|
# See ../setup-hooks/role.bash
|
2020-04-28 06:08:48 +02:00
|
|
|
local role_post
|
2018-06-02 01:42:05 +02:00
|
|
|
getHostRoleEnvHook
|
2017-07-06 23:19:53 +02:00
|
|
|
|
2019-06-28 22:25:57 +02:00
|
|
|
if [ -d "$1/include" ]; then
|
2020-04-28 06:08:48 +02:00
|
|
|
export NIX_CFLAGS_COMPILE${role_post}+=" -isystem $1/include"
|
2008-06-26 13:07:46 +02:00
|
|
|
fi
|
|
|
|
|
2019-06-28 22:25:57 +02:00
|
|
|
if [ -d "$1/Library/Frameworks" ]; then
|
2020-04-28 06:08:48 +02:00
|
|
|
export NIX_CFLAGS_COMPILE${role_post}+=" -iframework $1/Library/Frameworks"
|
2015-02-08 19:36:13 +01:00
|
|
|
fi
|
2008-06-26 13:07:46 +02:00
|
|
|
}
|
|
|
|
|
2018-05-07 19:07:19 +02:00
|
|
|
# See ../setup-hooks/role.bash
|
|
|
|
getTargetRole
|
|
|
|
getTargetRoleWrapper
|
2017-07-06 23:19:53 +02:00
|
|
|
|
2017-08-03 18:45:06 +02:00
|
|
|
# We use the `targetOffset` to choose the right env hook to accumulate the right
|
|
|
|
# sort of deps (those with that offset).
|
|
|
|
addEnvHooks "$targetOffset" ccWrapper_addCVars
|
2008-06-26 13:07:46 +02:00
|
|
|
|
2017-08-02 18:48:51 +02:00
|
|
|
# Note 1: these come *after* $out in the PATH (see setup.sh).
|
|
|
|
# Note 2: phase separation makes this look useless to shellcheck.
|
2008-06-26 13:07:46 +02:00
|
|
|
|
2017-08-02 18:48:51 +02:00
|
|
|
# shellcheck disable=SC2157
|
2015-01-09 20:22:12 +01:00
|
|
|
if [ -n "@cc@" ]; then
|
2016-02-28 01:13:15 +01:00
|
|
|
addToSearchPath _PATH @cc@/bin
|
2008-06-26 13:07:46 +02:00
|
|
|
fi
|
|
|
|
|
2017-08-02 18:48:51 +02:00
|
|
|
# shellcheck disable=SC2157
|
2015-04-18 11:00:58 +02:00
|
|
|
if [ -n "@libc_bin@" ]; then
|
2016-04-01 10:06:01 +02:00
|
|
|
addToSearchPath _PATH @libc_bin@/bin
|
2008-06-26 13:07:46 +02:00
|
|
|
fi
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2017-08-02 18:48:51 +02:00
|
|
|
# shellcheck disable=SC2157
|
2015-04-18 11:00:58 +02:00
|
|
|
if [ -n "@coreutils_bin@" ]; then
|
2016-04-01 10:06:01 +02:00
|
|
|
addToSearchPath _PATH @coreutils_bin@/bin
|
2009-11-08 01:32:12 +01:00
|
|
|
fi
|
2014-12-17 19:11:30 +01:00
|
|
|
|
2017-07-06 23:19:53 +02:00
|
|
|
# Export tool environment variables so various build systems use the right ones.
|
2017-06-26 07:17:09 +02:00
|
|
|
|
2020-04-28 06:08:48 +02:00
|
|
|
export NIX_CC${role_post}=@out@
|
2017-06-26 07:17:09 +02:00
|
|
|
|
2020-04-28 06:08:48 +02:00
|
|
|
export CC${role_post}=@named_cc@
|
|
|
|
export CXX${role_post}=@named_cxx@
|
2018-08-21 22:15:02 +02:00
|
|
|
export CC${role_post}=@named_cc@
|
|
|
|
export CXX${role_post}=@named_cxx@
|
2017-06-26 07:17:09 +02:00
|
|
|
|
2018-04-11 20:00:13 +02:00
|
|
|
# If unset, assume the default hardening flags.
|
|
|
|
: ${NIX_HARDENING_ENABLE="fortify stackprotector pic strictoverflow format relro bindnow"}
|
|
|
|
export NIX_HARDENING_ENABLE
|
|
|
|
|
2017-07-06 23:19:53 +02:00
|
|
|
# No local scope in sourced file
|
2020-04-28 06:08:48 +02:00
|
|
|
unset -v role_post
|