about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ccls/wrapper
blob: 155e6d4f64747ada5c8a1221e662cdb7d32fcc7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#! @shell@ -e

initString="--init={\"clang\":{\"extraArgs\": [@standard_library_includes@"

if [ "${NIX_CFLAGS_COMPILE}" != "" ]; then
  read -a cflags_array <<< ${NIX_CFLAGS_COMPILE}
  initString+=$(printf ', \"%s\"' "${cflags_array[@]}")
fi

initString+="]}}"

exec -a "$0" "@out@/bin/@wrapped@" "${initString}" "$@"