Merge pull request #41429 from lopsided98/fix-env-hook

cc-wrapper, bintools-wrapper: unbreak include/link paths when cross-compiling
This commit is contained in:
John Ericson
2018-06-04 22:42:27 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ set -u
bintoolsWrapper_addLDVars () {
# See ../setup-hooks/role.bash
local role_post role_pre
getTargetRoleEnvHook
getHostRoleEnvHook
if [[ -d "$1/lib64" && ! -L "$1/lib64" ]]; then
export NIX_${role_pre}LDFLAGS+=" -L$1/lib64"

View File

@@ -68,7 +68,7 @@ set -u
ccWrapper_addCVars () {
# See ../setup-hooks/role.bash
local role_post role_pre
getTargetRoleEnvHook
getHostRoleEnvHook
if [[ -d "$1/include" ]]; then
export NIX_${role_pre}CFLAGS_COMPILE+=" ${ccIncludeFlag:--isystem} $1/include"