2014-07-01 16:17:23 +02:00
|
|
|
export NIX_GCC=@out@
|
|
|
|
|
2011-10-18 22:03:09 +02:00
|
|
|
addCVars () {
|
|
|
|
if test -d $1/include; then
|
2014-01-23 10:57:34 +01:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -isystem $1/include"
|
2011-10-18 22:03:09 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test -d $1/lib64; then
|
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -L$1/lib64"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -d $1/lib; then
|
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -L$1/lib"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-07-08 14:20:05 +02:00
|
|
|
envHooks+=(addCVars)
|
2011-10-18 22:03:09 +02:00
|
|
|
|
|
|
|
# Note: these come *after* $out in the PATH (see setup.sh).
|
|
|
|
|
|
|
|
if test -n "@clang@"; then
|
|
|
|
addToSearchPath PATH @clang@/bin
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "@binutils@"; then
|
|
|
|
addToSearchPath PATH @binutils@/bin
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "@libc@"; then
|
|
|
|
addToSearchPath PATH @libc@/bin
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "@coreutils@"; then
|
|
|
|
addToSearchPath PATH @coreutils@/bin
|
|
|
|
fi
|
2014-01-23 11:22:44 +01:00
|
|
|
|
|
|
|
: ${CXX:=clang++}
|
|
|
|
export CXX
|