2014-07-01 15:17:23 +01:00
|
|
|
export NIX_GCC=@out@
|
|
|
|
|
2008-06-26 12:07:46 +01:00
|
|
|
addCVars () {
|
2014-10-10 13:25:23 +01:00
|
|
|
if [ -d $1/include ]; then
|
2013-12-16 16:21:03 +00:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -isystem $1/include"
|
2008-06-26 12:07:46 +01:00
|
|
|
fi
|
|
|
|
|
2014-10-10 13:25:23 +01:00
|
|
|
if [ -d $1/lib64 -a ! -L $1/lib64 ]; then
|
2008-06-26 12:07:46 +01:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -L$1/lib64"
|
|
|
|
fi
|
|
|
|
|
2014-10-10 13:25:23 +01:00
|
|
|
if [ -d $1/lib ]; then
|
2008-06-26 12:07:46 +01:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -L$1/lib"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-07-08 13:20:05 +01:00
|
|
|
envHooks+=(addCVars)
|
2008-06-26 12:07:46 +01:00
|
|
|
|
|
|
|
# Note: these come *after* $out in the PATH (see setup.sh).
|
|
|
|
|
2014-10-10 13:25:23 +01:00
|
|
|
if [ -n "@gcc@" ]; then
|
2009-04-18 23:22:51 +01:00
|
|
|
addToSearchPath PATH @gcc@/bin
|
2008-06-26 12:07:46 +01:00
|
|
|
fi
|
|
|
|
|
2014-10-10 13:25:23 +01:00
|
|
|
if [ -n "@binutils@" ]; then
|
2009-04-18 23:22:51 +01:00
|
|
|
addToSearchPath PATH @binutils@/bin
|
2008-06-26 12:07:46 +01:00
|
|
|
fi
|
|
|
|
|
2014-10-10 13:25:23 +01:00
|
|
|
if [ -n "@libc@" ]; then
|
2009-04-18 23:22:51 +01:00
|
|
|
addToSearchPath PATH @libc@/bin
|
2008-06-26 12:07:46 +01:00
|
|
|
fi
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2014-10-10 13:25:23 +01:00
|
|
|
if [ -n "@coreutils@" ]; then
|
2009-11-08 00:32:12 +00:00
|
|
|
addToSearchPath PATH @coreutils@/bin
|
|
|
|
fi
|