2014-12-17 12:11:30 -06:00
|
|
|
export NIX_CC=@out@
|
2014-07-01 16:17:23 +02:00
|
|
|
|
2008-06-26 11:07:46 +00:00
|
|
|
addCVars () {
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -d $1/include ]; then
|
2014-10-10 15:23:16 +02:00
|
|
|
export NIX_CFLAGS_COMPILE+=" -isystem $1/include"
|
2008-06-26 11:07:46 +00:00
|
|
|
fi
|
|
|
|
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -d $1/lib64 -a ! -L $1/lib64 ]; then
|
2014-10-10 15:23:16 +02:00
|
|
|
export NIX_LDFLAGS+=" -L$1/lib64"
|
2008-06-26 11:07:46 +00:00
|
|
|
fi
|
|
|
|
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -d $1/lib ]; then
|
2014-10-10 15:23:16 +02:00
|
|
|
export NIX_LDFLAGS+=" -L$1/lib"
|
2008-06-26 11:07:46 +00:00
|
|
|
fi
|
2015-02-08 13:36:13 -05:00
|
|
|
|
|
|
|
if test -d $1/Library/Frameworks; then
|
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -F$1/Library/Frameworks"
|
|
|
|
fi
|
2008-06-26 11:07:46 +00:00
|
|
|
}
|
|
|
|
|
2014-07-08 14:20:05 +02:00
|
|
|
envHooks+=(addCVars)
|
2008-06-26 11:07:46 +00:00
|
|
|
|
|
|
|
# Note: these come *after* $out in the PATH (see setup.sh).
|
|
|
|
|
2015-01-09 11:22:12 -08:00
|
|
|
if [ -n "@cc@" ]; then
|
|
|
|
addToSearchPath PATH @cc@/bin
|
2008-06-26 11:07:46 +00:00
|
|
|
fi
|
|
|
|
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -n "@binutils@" ]; then
|
2009-04-18 22:22:51 +00:00
|
|
|
addToSearchPath PATH @binutils@/bin
|
2008-06-26 11:07:46 +00:00
|
|
|
fi
|
|
|
|
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -n "@libc@" ]; then
|
2009-04-18 22:22:51 +00:00
|
|
|
addToSearchPath PATH @libc@/bin
|
2008-06-26 11:07:46 +00:00
|
|
|
fi
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -n "@coreutils@" ]; then
|
2009-11-08 00:32:12 +00:00
|
|
|
addToSearchPath PATH @coreutils@/bin
|
|
|
|
fi
|
2014-12-17 12:11:30 -06:00
|
|
|
|
2015-01-25 23:29:06 -05:00
|
|
|
if [ -z "$crossConfig" ]; then
|
|
|
|
export CC=@real_cc@
|
|
|
|
export CXX=@real_cxx@
|
|
|
|
else
|
|
|
|
export BUILD_CC=@real_cc@
|
|
|
|
export BUILD_CXX=@real_cxx@
|
|
|
|
fi
|