diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-27 00:08:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-27 00:08:24 +0300 |
commit | 8c52c1aac1f116b11e7599c12c3db4edcbc0ddeb (patch) | |
tree | e0035350d8ea3f555dfb471068f7d64e658c876a /build/bmakedebug | |
parent | b9248394f45944640997a4dc761e3ffc03788f89 (diff) | |
download | manaplus-8c52c1aac1f116b11e7599c12c3db4edcbc0ddeb.tar.gz manaplus-8c52c1aac1f116b11e7599c12c3db4edcbc0ddeb.tar.bz2 manaplus-8c52c1aac1f116b11e7599c12c3db4edcbc0ddeb.tar.xz manaplus-8c52c1aac1f116b11e7599c12c3db4edcbc0ddeb.zip |
Add ccache into most build scripts.
Diffstat (limited to 'build/bmakedebug')
-rwxr-xr-x | build/bmakedebug | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/bmakedebug b/build/bmakedebug index 003a6293f..0ee9af5b2 100755 --- a/build/bmakedebug +++ b/build/bmakedebug @@ -5,9 +5,9 @@ mkdir tmp cd .. dir=`pwd` -export CC=gcc -export CXX=g++ - +export CCACHE_DIR="${dir}/build/ccache/bmakedebug" +export CC="ccache gcc" +export CXX="ccache g++" export LANG=C export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \ |