2019-11-13 14:38:22 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
buildcpath() {
|
|
|
|
local path
|
|
|
|
while (( $# )); do
|
|
|
|
case $1 in
|
|
|
|
-isystem)
|
|
|
|
shift
|
2019-12-01 17:11:21 +00:00
|
|
|
path=$path${path:+':'}$1
|
2019-11-13 14:38:22 +00:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
echo $path
|
|
|
|
}
|
|
|
|
|
|
|
|
export CPATH=${CPATH}${CPATH:+':'}$(buildcpath ${NIX_CFLAGS_COMPILE})
|
|
|
|
export CPATH=${CPATH}${CPATH:+':'}@libc_includes@
|
|
|
|
export CPLUS_INCLUDE_PATH=${CPATH}${CPATH:+':'}@libcpp_includes@
|
|
|
|
|
|
|
|
exec -a "$0" @clang@/bin/$(basename $0) "$@"
|