2014-12-17 18:11:30 +00:00
|
|
|
export NIX_CC=@out@
|
2014-07-01 15:17:23 +01:00
|
|
|
|
2008-06-26 12:07:46 +01:00
|
|
|
addCVars () {
|
2014-10-10 13:25:23 +01:00
|
|
|
if [ -d $1/include ]; then
|
2014-10-10 14:23:16 +01:00
|
|
|
export 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
|
2014-10-10 14:23:16 +01:00
|
|
|
export NIX_LDFLAGS+=" -L$1/lib64"
|
2008-06-26 12:07:46 +01:00
|
|
|
fi
|
|
|
|
|
2014-10-10 13:25:23 +01:00
|
|
|
if [ -d $1/lib ]; then
|
2014-10-10 14:23:16 +01:00
|
|
|
export NIX_LDFLAGS+=" -L$1/lib"
|
2008-06-26 12:07:46 +01:00
|
|
|
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
|
2014-12-17 18:11:30 +00:00
|
|
|
|
2014-12-29 00:24:09 +00:00
|
|
|
export CC=cc
|
|
|
|
export CXX=c++
|