summaryrefslogtreecommitdiff
path: root/scripts/ci/ccache-cxx.in
blob: 81831ad4dcd8c4fa7d0bdb7c52f93c212094c2b2 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# Xcode generator doesn't include the compiler as the
# first argument, Ninja and Makefiles do. Handle both cases.
if [[ "$1" = "${CMAKE_CXX_COMPILER}" ]] ; then
    shift
fi

exec "${CXX_LAUNCHER}" "${CMAKE_CXX_COMPILER}" "$@"