| Index: platform_tools/android/bin/android_setup.sh
|
| diff --git a/platform_tools/android/bin/android_setup.sh b/platform_tools/android/bin/android_setup.sh
|
| index ee1160e6fa2049f3cf1c90b66fed9607958fcc74..503ee023e724651857aac811c9dfc1d933d0bc2b 100755
|
| --- a/platform_tools/android/bin/android_setup.sh
|
| +++ b/platform_tools/android/bin/android_setup.sh
|
| @@ -11,7 +11,7 @@
|
| # Fail-fast if anything in the script fails.
|
| set -e
|
|
|
| -BUILDTYPE=${BUILDTYPE-Debug}
|
| +BUILDTYPE=${BUILDTYPE-Release_Developer}
|
| USE_CLANG="true"
|
|
|
| while (( "$#" )); do
|
| @@ -28,6 +28,8 @@ while (( "$#" )); do
|
| elif [[ "$1" == "-t" ]]; then
|
| BUILDTYPE=$2
|
| shift
|
| + elif [[ "$1" == "--debug" ]]; then
|
| + BUILDTYPE=Debug
|
| elif [[ "$1" == "--release" ]]; then
|
| BUILDTYPE=Release
|
| elif [[ "$1" == "--gcc" ]]; then
|
|
|