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

printf -v extraArgs ',\"%s\"' \
  $(cat @clang@/nix-support/libc-cflags \
        @clang@/nix-support/libcxx-cxxflags) \
  ${NIX_CFLAGS_COMPILE}
initString="--init={\"clang\":{\"extraArgs\":[${extraArgs:1}]}}"

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