12 lines
168 B
Bash
12 lines
168 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "compile core"
|
|
export CCACHE_CPP2=true
|
|
export CCACHE_MAXSIZE='500MB'
|
|
export CCACHE_COMPRESS=1
|
|
ccache -s
|
|
./acore.sh "compiler" "all"
|
|
ccache -s
|