summary refs log tree commit diff
path: root/pkgs/development/tools/clang-tools/wrapper
blob: 53c99a67f2d36ad7b46d98e3442152a4359a2d63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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=${CPATH}${CPATH:+':'}@libcpp_includes@

exec -a "$0" @clang@/bin/$(basename $0) "$@"