2014-12-17 19:11:30 +01:00
|
|
|
export NIX_CC=@out@
|
2014-07-01 16:17:23 +02:00
|
|
|
|
2008-06-26 13:07:46 +02: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 13:07:46 +02: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 13:07:46 +02: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 13:07:46 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-07-08 14:20:05 +02:00
|
|
|
envHooks+=(addCVars)
|
2008-06-26 13:07:46 +02:00
|
|
|
|
|
|
|
# Note: these come *after* $out in the PATH (see setup.sh).
|
|
|
|
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -n "@gcc@" ]; then
|
2009-04-19 00:22:51 +02:00
|
|
|
addToSearchPath PATH @gcc@/bin
|
2008-06-26 13:07:46 +02:00
|
|
|
fi
|
|
|
|
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -n "@binutils@" ]; then
|
2009-04-19 00:22:51 +02:00
|
|
|
addToSearchPath PATH @binutils@/bin
|
2008-06-26 13:07:46 +02:00
|
|
|
fi
|
|
|
|
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -n "@libc@" ]; then
|
2009-04-19 00:22:51 +02:00
|
|
|
addToSearchPath PATH @libc@/bin
|
2008-06-26 13:07:46 +02:00
|
|
|
fi
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2014-10-10 14:25:23 +02:00
|
|
|
if [ -n "@coreutils@" ]; then
|
2009-11-08 01:32:12 +01:00
|
|
|
addToSearchPath PATH @coreutils@/bin
|
|
|
|
fi
|
2014-12-17 19:11:30 +01:00
|
|
|
|
|
|
|
export CC=gcc
|
|
|
|
export CXX=g++
|