aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools
diff options
context:
space:
mode:
Diffstat (limited to 'platform_tools')
-rwxr-xr-xplatform_tools/android/bin/android_setup.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/platform_tools/android/bin/android_setup.sh b/platform_tools/android/bin/android_setup.sh
index ee1160e6fa..503ee023e7 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