Support adding build flags from env var

This commit is contained in:
klzgrad 2019-04-02 19:07:38 +08:00 committed by GitHub
parent 0f66be50dd
commit 86270ba59c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,16 +6,16 @@ mkdir -p "$TMPDIR"
if [ "$1" = debug ]; then
out=out/Debug
flags='
flags="$EXTRA_FLAGS
is_debug=true
is_component_build=true'
is_component_build=true"
else
out=out/Release
flags='
flags="$EXTRA_FLAGS
is_official_build=true
use_jumbo_build=true
exclude_unwind_tables=true
symbol_level=0'
symbol_level=0"
fi
if which ccache >/dev/null 2>&1; then