tvl-depot/pkgs/clang-tools/wrapper

21 lines
421 B
Text
Raw Normal View History

2020-05-26 17:29:00 +02:00
#!/bin/sh
buildcpath() {
local path
while (( $# )); do
case $1 in
-isystem)
shift
path=$path${path:+':'}$1
esac
shift
done
echo $path
}
export CPATH=${CPATH}${CPATH:+':'}$(buildcpath ${NIX_CFLAGS_COMPILE})
export CPATH=${CPATH}${CPATH:+':'}@libc_includes@
export CPLUS_INCLUDE_PATH=@libcpp_includes@${CPATH:+':'}${CPATH}
exec -a "$0" @clang@/bin/$(basename $0) "$@"