mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-09 22:05:57 +00:00
12 lines
331 B
Bash
Executable File
12 lines
331 B
Bash
Executable File
#!/bin/sh
|
|
if type -p /usr/local/bin/ccache >/dev/null 2>&1; then
|
|
export CCACHE_MAXSIZE=10G
|
|
export CCACHE_CPP2=true
|
|
export CCACHE_HARDLINK=true
|
|
export CCACHE_SLOPPINESS=file_macro,time_macros,include_file_mtime,include_file_ctime,file_stat_matches
|
|
exec /usr/local/bin/ccache /usr/bin/clang "$@"
|
|
else
|
|
exec clang "$@"
|
|
fi
|
|
|