ccache-launcher-c.in 387 B

12345678910111213
  1. #!/bin/sh
  2. if [[ "$1" == "${CMAKE_C_COMPILER}" ]] ; then
  3. shift
  4. fi
  5. export CCACHE_CPP2=true
  6. export CCACHE_DEPEND=true
  7. export CCACHE_DIRECT=true
  8. export CCACHE_FILECLONE=true
  9. export CCACHE_INODECACHE=true
  10. export CCACHE_SLOPPINESS="modules,include_file_mtime,include_file_ctime,pch_defines,clang_index_store,system_headers"
  11. exec "${CMAKE_C_COMPILER_LAUNCHER}" "${CMAKE_C_COMPILER}" "$@"