1
0
Fork 0

Make ccache work better maybe.

This commit is contained in:
NamedKitten 2018-10-16 07:57:40 +01:00
parent e1c014bd17
commit 0bfbbc3a62

View file

@ -3,6 +3,11 @@ set -ex
CFLAGS="-fPIC -Os" CFLAGS="-fPIC -Os"
export CCACHE_SLOPPINESS=time_macros
export CFLAGS="-D__DATE__= -D__TIME__= -D__TIMESTAMP__= $CFLAGS"
git clone --depth 1 https://github.com/mpv-player/mpv-build mpv-build || true git clone --depth 1 https://github.com/mpv-player/mpv-build mpv-build || true
cd mpv-build cd mpv-build
@ -28,4 +33,5 @@ echo "--disable-caca --disable-wayland --disable-gl-wayland --disable-libarchive
./rebuild -j`nproc` ./rebuild -j`nproc`
sudo ./install sudo ./install
ccache -s
cd .. cd ..