10 lines
143 B
Bash
Executable file
10 lines
143 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "compile core"
|
|
export CCACHE_CPP2=true
|
|
export CCACHE_MAXSIZE='500MB'
|
|
ccache -s
|
|
./acore.sh "compiler" "all"
|
|
ccache -s
|