mirror of
https://github.com/topjohnwu/Magisk
synced 2024-11-05 04:51:15 +01:00
20 lines
483 B
Bash
20 lines
483 B
Bash
OS=$(uname)
|
|
CCACHE_VER=4.4
|
|
|
|
case $OS in
|
|
Darwin )
|
|
brew install ccache
|
|
ln -s $(which ccache) ./ccache
|
|
;;
|
|
Linux )
|
|
sudo apt-get install -y ccache
|
|
ln -s $(which ccache) ./ccache
|
|
;;
|
|
* )
|
|
curl -OL https://github.com/ccache/ccache/releases/download/v${CCACHE_VER}/ccache-${CCACHE_VER}-windows-64.zip
|
|
unzip -j ccache-*-windows-64.zip '*/ccache.exe'
|
|
;;
|
|
esac
|
|
mkdir ./.ccache
|
|
./ccache -o compiler_check='%compiler% -dumpmachine; %compiler% -dumpversion'
|