10 lines
216 B
Bash
10 lines
216 B
Bash
#!/bin/bash
|
|
|
|
if [[ "$1" = "${CMAKE_C_COMPILER}" ]]; then
|
|
shift
|
|
fi
|
|
|
|
export CCACHE_CPP2=true
|
|
export CCACHE_SLOPPINESS=file_macro,time_macros,locale,file_stat_matches
|
|
exec "${C_LAUNCHER}" "${CMAKE_C_COMPILER}" "$@"
|