blob: ae628cfdc18625cdd8e4cc1934f62c4bcb1da288 [file] [log] [blame]
Scott Anderson1a5fc952012-03-07 17:15:06 -08001function hmm() {
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07002cat <<EOF
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08003Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:
Ying Wang67f02922012-08-22 10:25:20 -07004- lunch: lunch <product_name>-<build_variant>
Ying Wangb541ab62014-05-29 17:57:40 -07005- tapas: tapas [<App1> <App2> ...] [arm|x86|mips|armv5|arm64|x86_64|mips64] [eng|userdebug|user]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07006- croot: Changes directory to the top of the tree.
7- m: Makes from the top of the tree.
Ying Wangb607f7b2013-02-08 18:01:04 -08008- mm: Builds all of the modules in the current directory, but not their dependencies.
9- mmm: Builds all of the modules in the supplied directories, but not their dependencies.
Primiano Tucci6a8069d2014-02-26 11:09:19 +000010 To limit the modules being built use the syntax: mmm dir/:target1,target2.
Ying Wangb607f7b2013-02-08 18:01:04 -080011- mma: Builds all of the modules in the current directory, and their dependencies.
12- mmma: Builds all of the modules in the supplied directories, and their dependencies.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070013- cgrep: Greps on all local C/C++ files.
Jon Boekenoogencbca56f2014-04-07 10:57:38 -070014- ggrep: Greps on all local Gradle files.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070015- jgrep: Greps on all local Java files.
16- resgrep: Greps on all local res/*.xml files.
Jeff Brown46cbd202014-07-26 15:15:41 -070017- sgrep: Greps on all local source files.
The Android Open Source Project88b60792009-03-03 19:28:42 -080018- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070019
20Look at the source to view more functions. The complete list is:
21EOF
22 T=$(gettop)
23 local A
24 A=""
Jeff Brown46cbd202014-07-26 15:15:41 -070025 for i in `cat $T/build/envsetup.sh | sed -n "/^[ \t]*function /s/function \([a-z_]*\).*/\1/p" | sort | uniq`; do
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070026 A="$A $i"
27 done
28 echo $A
29}
30
31# Get the value of a build variable as an absolute path.
32function get_abs_build_var()
33{
34 T=$(gettop)
35 if [ ! "$T" ]; then
36 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
37 return
38 fi
Ying Wang9cd17642012-12-13 10:52:07 -080039 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070040 command make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070041}
42
43# Get the exact value of a build variable.
44function get_build_var()
45{
46 T=$(gettop)
47 if [ ! "$T" ]; then
48 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
49 return
50 fi
Andrew Boie6905e212013-12-19 13:21:46 -080051 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070052 command make --no-print-directory -f build/core/config.mk dumpvar-$1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080053}
54
55# check to see if the supplied product is one we can build
56function check_product()
57{
58 T=$(gettop)
59 if [ ! "$T" ]; then
60 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
61 return
62 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -070063 TARGET_PRODUCT=$1 \
64 TARGET_BUILD_VARIANT= \
65 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070066 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080067 get_build_var TARGET_DEVICE > /dev/null
68 # hide successful answers, but allow the errors to show
69}
70
71VARIANT_CHOICES=(user userdebug eng)
72
73# check to see if the supplied variant is valid
74function check_variant()
75{
76 for v in ${VARIANT_CHOICES[@]}
77 do
78 if [ "$v" = "$1" ]
79 then
80 return 0
81 fi
82 done
83 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070084}
85
86function setpaths()
87{
88 T=$(gettop)
89 if [ ! "$T" ]; then
90 echo "Couldn't locate the top of the tree. Try setting TOP."
91 return
92 fi
93
94 ##################################################################
95 # #
96 # Read me before you modify this code #
97 # #
98 # This function sets ANDROID_BUILD_PATHS to what it is adding #
99 # to PATH, and the next time it is run, it removes that from #
100 # PATH. This is required so lunch can be run more than once #
101 # and still have working paths. #
102 # #
103 ##################################################################
104
Raphael Mollc639c782011-06-20 17:25:01 -0700105 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
106 # due to "C:\Program Files" being in the path.
107
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700108 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700109 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700110 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
111 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700112 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700113 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800114 # strip leading ':', if any
115 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500116 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700117
118 # and in with the new
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700119 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700120 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700121
Ben Cheng8bc4c432012-11-16 13:29:13 -0800122 # defined in core/config.mk
123 targetgccversion=$(get_build_var TARGET_GCC_VERSION)
Colin Cross03b424a2014-05-22 11:57:43 -0700124 targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800125 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800126
Raphael Mollc639c782011-06-20 17:25:01 -0700127 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800128 export ANDROID_TOOLCHAIN=
129 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200130 local ARCH=$(get_build_var TARGET_ARCH)
131 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400132 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700133 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400134 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
135 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800136 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200137 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800138 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700139 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700140 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700141 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000142 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200143 *)
144 echo "Can't find toolchain for unknown architecture: $ARCH"
145 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700146 ;;
147 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700148 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800149 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700150 fi
Raphael732936d2011-06-22 14:35:32 -0700151
Ben Chengfba67bf2014-02-25 10:27:07 -0800152 if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
153 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
154 fi
155
156 unset ANDROID_KERNEL_TOOLCHAIN_PATH
Ying Wang08f5e9a2012-04-17 18:10:11 -0700157 case $ARCH in
Bruce Beare42ced6d2012-07-17 21:40:01 -0700158 arm)
Ben Chengfba67bf2014-02-25 10:27:07 -0800159 # Legacy toolchain configuration used for ARM kernel compilation
Ben Cheng8bc4c432012-11-16 13:29:13 -0800160 toolchaindir=arm/arm-eabi-$targetgccversion/bin
Bruce Beare42ced6d2012-07-17 21:40:01 -0700161 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Torne (Richard Coles)f24c3562014-04-25 16:24:22 +0100162 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
163 ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
Bruce Beare42ced6d2012-07-17 21:40:01 -0700164 fi
Ying Wang08f5e9a2012-04-17 18:10:11 -0700165 ;;
166 *)
Bruce Beare42ced6d2012-07-17 21:40:01 -0700167 # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang08f5e9a2012-04-17 18:10:11 -0700168 ;;
169 esac
Ying Wang08f5e9a2012-04-17 18:10:11 -0700170
Ying Wang564f9122013-03-29 17:40:14 -0700171 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
Ying Wang2a859d52014-06-30 10:25:33 -0700172 export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN:$ANDROID_TOOLCHAIN_2ND_ARCH:$ANDROID_KERNEL_TOOLCHAIN_PATH$ANDROID_DEV_SCRIPTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200173
174 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
175 # to ensure that the corresponding 'emulator' binaries are used.
176 case $(uname -s) in
177 Darwin)
178 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
179 ;;
180 Linux)
181 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
182 ;;
183 *)
184 ANDROID_EMULATOR_PREBUILTS=
185 ;;
186 esac
187 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700188 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200189 export ANDROID_EMULATOR_PREBUILTS
190 fi
191
Ying Wangaa1c9b52012-11-26 20:51:59 -0800192 export PATH=$ANDROID_BUILD_PATHS$PATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800193
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500194 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900195 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500196 if [ -n "$JAVA_HOME" ]; then
197 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900198 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
199 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500200 fi
201
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800202 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700203 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
204 export OUT=$ANDROID_PRODUCT_OUT
205
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700206 unset ANDROID_HOST_OUT
207 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
208
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800209 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700210 # TODO: fix the path
211 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
212}
213
214function printconfig()
215{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800216 T=$(gettop)
217 if [ ! "$T" ]; then
218 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
219 return
220 fi
221 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700222}
223
224function set_stuff_for_environment()
225{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800226 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500227 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800228 setpaths
229 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700230
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800231 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700232 # With this environment variable new GCC can apply colors to warnings/errors
233 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700234}
235
236function set_sequence_number()
237{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700238 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700239}
240
241function settitle()
242{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800243 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700244 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700245 local product=$TARGET_PRODUCT
246 local variant=$TARGET_BUILD_VARIANT
247 local apps=$TARGET_BUILD_APPS
248 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700249 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700250 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700251 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700252 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800253 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700254}
255
Kenny Root52aa81c2011-07-15 11:07:06 -0700256function addcompletions()
257{
258 local T dir f
259
260 # Keep us from trying to run in something that isn't bash.
261 if [ -z "${BASH_VERSION}" ]; then
262 return
263 fi
264
265 # Keep us from trying to run in bash that's too old.
266 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
267 return
268 fi
269
270 dir="sdk/bash_completion"
271 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700272 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700273 echo "including $f"
274 . $f
275 done
276 fi
277}
278
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700279function choosetype()
280{
281 echo "Build type choices are:"
282 echo " 1. release"
283 echo " 2. debug"
284 echo
285
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800286 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700287 DEFAULT_NUM=1
288 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700289
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800290 export TARGET_BUILD_TYPE=
291 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700292 while [ -z $TARGET_BUILD_TYPE ]
293 do
294 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800295 if [ -z "$1" ] ; then
296 read ANSWER
297 else
298 echo $1
299 ANSWER=$1
300 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700301 case $ANSWER in
302 "")
303 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
304 ;;
305 1)
306 export TARGET_BUILD_TYPE=release
307 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800308 release)
309 export TARGET_BUILD_TYPE=release
310 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700311 2)
312 export TARGET_BUILD_TYPE=debug
313 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800314 debug)
315 export TARGET_BUILD_TYPE=debug
316 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700317 *)
318 echo
319 echo "I didn't understand your response. Please try again."
320 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700321 ;;
322 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800323 if [ -n "$1" ] ; then
324 break
325 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700326 done
327
328 set_stuff_for_environment
329}
330
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800331#
332# This function isn't really right: It chooses a TARGET_PRODUCT
333# based on the list of boards. Usually, that gets you something
334# that kinda works with a generic product, but really, you should
335# pick a product by name.
336#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700337function chooseproduct()
338{
wangxlf9562e12015-01-27 19:58:05 +0800339# Find the list of all products by looking for all AndroidProducts.mk files under the
340# device/, vendor/ and build/target/product/ directories and look for the format
341# LOCAL_DIR/<ProductSpecificFile.mk> and extract the name ProductSpecificFile from it.
342# This will give the list of all products that can be built using choosecombo
343 local -a prodlist
344
345# Find all AndroidProducts.mk files under the dirs device/, build/target/ and vendor/
346# Extract lines containing .mk from them
347# Extract lines containing LOCAL_DIR
348# Extract the name of the product specific file
349
350
351 prodlist=(`/usr/bin/find device/fairphone_devices device/qcom/msm8974 -name AndroidProducts.mk 2>/dev/null | \
352 xargs grep -h \.mk| grep LOCAL_DIR| cut -d'/' -f2|cut -d' ' -f1|sort|uniq|cut -d'.' -f1`)
353
354 local index=1
355 local p
356 echo "Product choices are:"
357 for p in ${prodlist[@]}
358 do
359 echo " $index. $p"
360 let "index = $index + 1"
361 done
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700362 if [ "x$TARGET_PRODUCT" != x ] ; then
363 default_value=$TARGET_PRODUCT
364 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700365 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700366 fi
367
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800368 export TARGET_PRODUCT=
369 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700370 while [ -z "$TARGET_PRODUCT" ]
371 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700372 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800373 if [ -z "$1" ] ; then
374 read ANSWER
375 else
376 echo $1
377 ANSWER=$1
378 fi
379
wangxlf9562e12015-01-27 19:58:05 +0800380 if [ -z "$ANSWER" ] ; then
381 export TARGET_PRODUCT=$default_value
382 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
383 local poo=`echo -n $ANSWER`
384 if [ $poo -le ${#prodlist[@]} ] ; then
385 export TARGET_PRODUCT=${prodlist[$(($ANSWER-1))]}
386 else
387 echo "** Bad product selection: $ANSWER"
388 fi
389 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800390 if check_product $ANSWER
391 then
392 export TARGET_PRODUCT=$ANSWER
393 else
394 echo "** Not a valid product: $ANSWER"
395 fi
396 fi
397 if [ -n "$1" ] ; then
398 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700399 fi
400 done
401
402 set_stuff_for_environment
403}
404
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800405function choosevariant()
406{
407 echo "Variant choices are:"
408 local index=1
409 local v
410 for v in ${VARIANT_CHOICES[@]}
411 do
412 # The product name is the name of the directory containing
413 # the makefile we found, above.
414 echo " $index. $v"
415 index=$(($index+1))
416 done
417
418 local default_value=eng
419 local ANSWER
420
421 export TARGET_BUILD_VARIANT=
422 while [ -z "$TARGET_BUILD_VARIANT" ]
423 do
424 echo -n "Which would you like? [$default_value] "
425 if [ -z "$1" ] ; then
426 read ANSWER
427 else
428 echo $1
429 ANSWER=$1
430 fi
431
432 if [ -z "$ANSWER" ] ; then
433 export TARGET_BUILD_VARIANT=$default_value
434 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
435 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800436 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800437 fi
438 else
439 if check_variant $ANSWER
440 then
441 export TARGET_BUILD_VARIANT=$ANSWER
442 else
443 echo "** Not a valid variant: $ANSWER"
444 fi
445 fi
446 if [ -n "$1" ] ; then
447 break
448 fi
449 done
450}
451
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700452function choosecombo()
453{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700454 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700455
456 echo
457 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700458 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700459
460 echo
461 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700462 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800463
464 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700465 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800466 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700467}
468
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800469# Clear this variable. It will be built up again when the vendorsetup.sh
470# files are included at the end of this file.
471unset LUNCH_MENU_CHOICES
472function add_lunch_combo()
473{
474 local new_combo=$1
475 local c
476 for c in ${LUNCH_MENU_CHOICES[@]} ; do
477 if [ "$new_combo" = "$c" ] ; then
478 return
479 fi
480 done
481 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
482}
483
484# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700485add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800486add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000487add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800488add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000489add_lunch_combo aosp_x86-eng
490add_lunch_combo aosp_x86_64-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800491
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700492function print_lunch_menu()
493{
494 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700495 echo
496 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700497 echo
498 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800499
500 local i=1
501 local choice
502 for choice in ${LUNCH_MENU_CHOICES[@]}
503 do
504 echo " $i. $choice"
505 i=$(($i+1))
506 done
507
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700508 echo
509}
510
511function lunch()
512{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800513 local answer
514
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700515 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800516 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700517 else
518 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700519 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800520 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700521 fi
522
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800523 local selection=
524
525 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700526 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700527 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800528 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
529 then
530 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
531 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800532 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800533 fi
534 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
535 then
536 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700537 fi
538
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800539 if [ -z "$selection" ]
540 then
541 echo
542 echo "Invalid lunch combo: $answer"
543 return 1
544 fi
545
Joe Onoratoda12daf2010-06-09 18:18:31 -0700546 export TARGET_BUILD_APPS=
547
Jeff Browne33ba4c2011-07-11 22:11:46 -0700548 local product=$(echo -n $selection | sed -e "s/-.*$//")
549 check_product $product
550 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800551 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700552 echo
553 echo "** Don't have a product spec for: '$product'"
554 echo "** Do you have the right repo manifest?"
555 product=
556 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800557
Jeff Browne33ba4c2011-07-11 22:11:46 -0700558 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
559 check_variant $variant
560 if [ $? -ne 0 ]
561 then
562 echo
563 echo "** Invalid variant: '$variant'"
564 echo "** Must be one of ${VARIANT_CHOICES[@]}"
565 variant=
566 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800567
Jeff Browne33ba4c2011-07-11 22:11:46 -0700568 if [ -z "$product" -o -z "$variant" ]
569 then
570 echo
571 return 1
572 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800573
Jeff Browne33ba4c2011-07-11 22:11:46 -0700574 export TARGET_PRODUCT=$product
575 export TARGET_BUILD_VARIANT=$variant
576 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700577
578 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800579
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700580 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800581 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700582}
583
Jeff Davidson513d7a42010-08-02 10:00:44 -0700584# Tab completion for lunch.
585function _lunch()
586{
587 local cur prev opts
588 COMPREPLY=()
589 cur="${COMP_WORDS[COMP_CWORD]}"
590 prev="${COMP_WORDS[COMP_CWORD-1]}"
591
592 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
593 return 0
594}
595complete -F _lunch lunch
596
Joe Onoratoda12daf2010-06-09 18:18:31 -0700597# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700598# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700599function tapas()
600{
Ying Wangb541ab62014-05-29 17:57:40 -0700601 local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5|arm64|x86_64|mips64)$' | xargs)"
Doug Zongker0d8179e2014-04-16 11:34:34 -0700602 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700603 local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
604 local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5|arm64|x86_64|mips64|ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
Joe Onoratoda12daf2010-06-09 18:18:31 -0700605
Ying Wang67f02922012-08-22 10:25:20 -0700606 if [ $(echo $arch | wc -w) -gt 1 ]; then
607 echo "tapas: Error: Multiple build archs supplied: $arch"
608 return
609 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700610 if [ $(echo $variant | wc -w) -gt 1 ]; then
611 echo "tapas: Error: Multiple build variants supplied: $variant"
612 return
613 fi
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700614 if [ $(echo $density | wc -w) -gt 1 ]; then
615 echo "tapas: Error: Multiple densities supplied: $density"
616 return
617 fi
Ying Wang67f02922012-08-22 10:25:20 -0700618
619 local product=full
620 case $arch in
Ying Wangb541ab62014-05-29 17:57:40 -0700621 x86) product=full_x86;;
622 mips) product=full_mips;;
623 armv5) product=generic_armv5;;
624 arm64) product=aosp_arm64;;
625 x86_64) product=aosp_x86_64;;
626 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700627 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700628 if [ -z "$variant" ]; then
629 variant=eng
630 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700631 if [ -z "$apps" ]; then
632 apps=all
633 fi
Justin Morey29d225c2014-11-04 13:35:51 -0600634 if [ -z "$density" ]; then
635 density=alldpi
636 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700637
Ying Wang67f02922012-08-22 10:25:20 -0700638 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700639 export TARGET_BUILD_VARIANT=$variant
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700640 export TARGET_BUILD_DENSITY=$density
Joe Onoratoda12daf2010-06-09 18:18:31 -0700641 export TARGET_BUILD_TYPE=release
642 export TARGET_BUILD_APPS=$apps
643
644 set_stuff_for_environment
645 printconfig
646}
647
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700648function gettop
649{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800650 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700651 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700652 # The following circumlocution ensures we remove symlinks from TOP.
653 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700654 else
655 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800656 # The following circumlocution (repeated below as well) ensures
657 # that we record the true directory name and not one that is
658 # faked up with symlink names.
659 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700660 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800661 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700662 T=
663 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800664 \cd ..
synergyb112a402013-07-05 19:47:47 -0700665 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700666 done
Ying Wang9cd17642012-12-13 10:52:07 -0800667 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700668 if [ -f "$T/$TOPFILE" ]; then
669 echo $T
670 fi
671 fi
672 fi
673}
674
Andrew Hsieh906cb782013-09-10 17:37:14 +0800675# Return driver for "make", if any (eg. static analyzer)
676function getdriver()
677{
678 local T="$1"
679 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
680 if [ -n "$WITH_STATIC_ANALYZER" ]; then
681 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800682$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
683--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800684--status-bugs \
685--top=$T"
686 fi
687}
688
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700689function m()
690{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800691 local T=$(gettop)
692 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700693 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800694 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700695 else
696 echo "Couldn't locate the top of the tree. Try setting TOP."
697 fi
698}
699
700function findmakefile()
701{
702 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800703 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700704 T=
705 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700706 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700707 if [ -f "$T/Android.mk" ]; then
708 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800709 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700710 return
711 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800712 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700713 done
Ying Wang9cd17642012-12-13 10:52:07 -0800714 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700715}
716
717function mm()
718{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800719 local T=$(gettop)
720 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700721 # If we're sitting in the root of the build tree, just do a
722 # normal make.
723 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800724 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700725 else
726 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800727 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700728 local MODULES=
729 local GET_INSTALL_PATH=
730 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700731 # Remove the path to top as the makefilepath needs to be relative
732 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700733 if [ ! "$T" ]; then
734 echo "Couldn't locate the top of the tree. Try setting TOP."
735 elif [ ! "$M" ]; then
736 echo "Couldn't locate a makefile from the current directory."
737 else
Ying Wanga7deb082013-08-16 13:24:47 -0700738 for ARG in $@; do
739 case $ARG in
740 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
741 esac
742 done
743 if [ -n "$GET_INSTALL_PATH" ]; then
744 MODULES=
745 ARGS=GET-INSTALL-PATH
746 else
747 MODULES=all_modules
748 ARGS=$@
749 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700750 ONE_SHOT_MAKEFILE=$M $DRV make -C $T -f build/core/main.mk $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700751 fi
752 fi
753}
754
755function mmm()
756{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800757 local T=$(gettop)
758 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700759 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800760 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800761 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800762 local ARGS=
763 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700764 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800765 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
766 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
767 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800768 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
769 if [ "$MODULES" = "" ]; then
770 MODULES=all_modules
771 fi
772 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700773 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700774 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
775 local TO_CHOP=`expr $TO_CHOP + 1`
776 local START=`PWD= /bin/pwd`
777 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700778 if [ "$MFILE" = "" ] ; then
779 MFILE=$DIR/Android.mk
780 else
781 MFILE=$MFILE/$DIR/Android.mk
782 fi
783 MAKEFILE="$MAKEFILE $MFILE"
784 else
Ying Wanga7deb082013-08-16 13:24:47 -0700785 case $DIR in
786 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
787 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
788 *) echo "No Android.mk in $DIR."; return 1;;
789 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700790 fi
791 done
Ying Wanga7deb082013-08-16 13:24:47 -0700792 if [ -n "$GET_INSTALL_PATH" ]; then
793 ARGS=$GET_INSTALL_PATH
794 MODULES=
795 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800796 ONE_SHOT_MAKEFILE="$MAKEFILE" $DRV make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700797 else
798 echo "Couldn't locate the top of the tree. Try setting TOP."
799 fi
800}
801
Ying Wangb607f7b2013-02-08 18:01:04 -0800802function mma()
803{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800804 local T=$(gettop)
805 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800806 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800807 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800808 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800809 if [ ! "$T" ]; then
810 echo "Couldn't locate the top of the tree. Try setting TOP."
811 fi
812 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800813 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800814 fi
815}
816
817function mmma()
818{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800819 local T=$(gettop)
820 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800821 if [ "$T" ]; then
822 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
823 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
824 local MY_PWD=`PWD= /bin/pwd`
825 if [ "$MY_PWD" = "$T" ]; then
826 MY_PWD=
827 else
828 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
829 fi
830 local DIR=
831 local MODULE_PATHS=
832 local ARGS=
833 for DIR in $DIRS ; do
834 if [ -d $DIR ]; then
835 if [ "$MY_PWD" = "" ]; then
836 MODULE_PATHS="$MODULE_PATHS $DIR"
837 else
838 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
839 fi
840 else
841 case $DIR in
842 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
843 *) echo "Couldn't find directory $DIR"; return 1;;
844 esac
845 fi
846 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800847 $DRV make -C $T -f build/core/main.mk $DASH_ARGS $ARGS all_modules BUILD_MODULES_IN_PATHS="$MODULE_PATHS"
Ying Wangb607f7b2013-02-08 18:01:04 -0800848 else
849 echo "Couldn't locate the top of the tree. Try setting TOP."
850 fi
851}
852
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700853function croot()
854{
855 T=$(gettop)
856 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800857 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700858 else
859 echo "Couldn't locate the top of the tree. Try setting TOP."
860 fi
861}
862
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700863function cproj()
864{
865 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700866 local HERE=$PWD
867 T=
868 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
869 T=$PWD
870 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800871 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700872 return
873 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800874 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700875 done
Ying Wang9cd17642012-12-13 10:52:07 -0800876 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700877 echo "can't find Android.mk"
878}
879
Daniel Sandler47e0a882013-07-30 13:23:52 -0400880# simplified version of ps; output in the form
881# <pid> <procname>
882function qpid() {
883 local prepend=''
884 local append=''
885 if [ "$1" = "--exact" ]; then
886 prepend=' '
887 append='$'
888 shift
889 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
890 echo "usage: qpid [[--exact] <process name|pid>"
891 return 255
892 fi
893
894 local EXE="$1"
895 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700896 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400897 else
898 adb shell ps \
899 | tr -d '\r' \
900 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
901 fi
902}
903
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700904function pid()
905{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400906 local prepend=''
907 local append=''
908 if [ "$1" = "--exact" ]; then
909 prepend=' '
910 append='$'
911 shift
912 fi
913 local EXE="$1"
914 if [ "$EXE" ] ; then
915 local PID=`adb shell ps \
916 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700917 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400918 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
919 echo "$PID"
920 else
921 echo "usage: pid [--exact] <process name>"
922 return 255
923 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700924}
925
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800926# coredump_setup - enable core dumps globally for any process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700927# that has the core-file-size limit set correctly
928#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800929# NOTE: You must call also coredump_enable for a specific process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700930# if its core-file-size limit is not set already.
931# NOTE: Core dumps are written to ramdisk; they will not survive a reboot!
932
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800933function coredump_setup()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700934{
935 echo "Getting root...";
936 adb root;
937 adb wait-for-device;
938
939 echo "Remounting root parition read-write...";
940 adb shell mount -w -o remount -t rootfs rootfs;
941 sleep 1;
942 adb wait-for-device;
943 adb shell mkdir -p /cores;
Nick Kralevicha94282c2014-11-04 11:17:20 -0800944 adb shell mount -t tmpfs tmpfs /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700945 adb shell chmod 0777 /cores;
946
947 echo "Granting SELinux permission to dump in /cores...";
948 adb shell restorecon -R /cores;
949
950 echo "Set core pattern.";
951 adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern';
952
953 echo "Done."
954}
955
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800956# coredump_enable - enable core dumps for the specified process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700957# $1 = PID of process (e.g., $(pid mediaserver))
958#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800959# NOTE: coredump_setup must have been called as well for a core
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700960# dump to actually be generated.
961
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800962function coredump_enable()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700963{
964 local PID=$1;
965 if [ -z "$PID" ]; then
966 printf "Expecting a PID!\n";
967 return;
968 fi;
969 echo "Setting core limit for $PID to infinite...";
970 adb shell prlimit $PID 4 -1 -1
971}
972
973# core - send SIGV and pull the core for process
974# $1 = PID of process (e.g., $(pid mediaserver))
975#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800976# NOTE: coredump_setup must be called once per boot for core dumps to be
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700977# enabled globally.
978
979function core()
980{
981 local PID=$1;
982
983 if [ -z "$PID" ]; then
984 printf "Expecting a PID!\n";
985 return;
986 fi;
987
988 local CORENAME=core.$PID;
989 local COREPATH=/cores/$CORENAME;
990 local SIG=SEGV;
991
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800992 coredump_enable $1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700993
994 local done=0;
995 while [ $(adb shell "[ -d /proc/$PID ] && echo -n yes") ]; do
996 printf "\tSending SIG%s to %d...\n" $SIG $PID;
997 adb shell kill -$SIG $PID;
998 sleep 1;
999 done;
1000
1001 adb shell "while [ ! -f $COREPATH ] ; do echo waiting for $COREPATH to be generated; sleep 1; done"
1002 echo "Done: core is under $COREPATH on device.";
1003}
1004
Christopher Tate744ee802009-11-12 15:33:08 -08001005# systemstack - dump the current stack trace of all threads in the system process
1006# to the usual ANR traces file
1007function systemstack()
1008{
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001009 stacks system_server
1010}
1011
1012function stacks()
1013{
1014 if [[ $1 =~ ^[0-9]+$ ]] ; then
1015 local PID="$1"
1016 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -07001017 local PIDLIST="$(pid $1)"
1018 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
1019 local PID="$PIDLIST"
1020 elif [ "$PIDLIST" ] ; then
1021 echo "more than one process: $1"
1022 else
1023 echo "no such process: $1"
1024 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001025 else
1026 echo "usage: stacks [pid|process name]"
1027 fi
1028
1029 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -07001030 # Determine whether the process is native
1031 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
1032 # Dump stacks of Dalvik process
1033 local TRACES=/data/anr/traces.txt
1034 local ORIG=/data/anr/traces.orig
1035 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001036
Jeff Brownb12c2e52013-08-19 15:14:16 -07001037 # Keep original traces to avoid clobbering
1038 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001039
Jeff Brownb12c2e52013-08-19 15:14:16 -07001040 # Make sure we have a usable file
1041 adb shell touch $TRACES
1042 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001043
Jeff Brownb12c2e52013-08-19 15:14:16 -07001044 # Dump stacks and wait for dump to finish
1045 adb shell kill -3 $PID
1046 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001047
Jeff Brownb12c2e52013-08-19 15:14:16 -07001048 # Restore original stacks, and show current output
1049 adb shell mv $TRACES $TMP
1050 adb shell mv $ORIG $TRACES
1051 adb shell cat $TMP
1052 else
1053 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -07001054 local USE64BIT="$(is64bit $PID)"
1055 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -07001056 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001057 fi
Christopher Tate744ee802009-11-12 15:33:08 -08001058}
1059
John Michelau50200252012-11-09 11:48:04 -06001060function gdbwrapper()
1061{
Ben Chengfba67bf2014-02-25 10:27:07 -08001062 local GDB_CMD="$1"
1063 shift 1
1064 $GDB_CMD -x "$@"
John Michelau50200252012-11-09 11:48:04 -06001065}
1066
Brigid Smith0a2712d2014-05-28 14:36:43 -07001067function get_symbols_directory()
1068{
1069 echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
1070}
1071
Michael Wrightaeed7212014-06-19 19:58:12 -07001072# Read the ELF header from /proc/$PID/exe to determine if the process is
1073# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -08001074function is64bit()
1075{
1076 local PID="$1"
1077 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -07001078 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -08001079 echo "64"
1080 else
1081 echo ""
1082 fi
1083 else
1084 echo ""
1085 fi
1086}
1087
Dmitriy Ivanovfd0f1c82014-10-30 22:00:17 -07001088function adb_get_product_device() {
1089 echo `adb shell getprop ro.product.device | sed s/.$//`
1090}
1091
1092# returns 0 when process is not traced
1093function adb_get_traced_by() {
1094 echo `adb shell cat /proc/$1/status | grep -e "^TracerPid:" | sed "s/^TracerPid:\t//" | sed s/.$//`
1095}
1096
1097function gdbclient() {
1098 # TODO:
1099 # 1. Check for ANDROID_SERIAL/multiple devices
1100 local PROCESS_NAME="n/a"
1101 local PID=$1
1102 local PORT=5039
1103 if [ -z "$PID" ]; then
1104 echo "Usage: gdbclient <pid|processname> [port number]"
1105 return -1
1106 fi
1107 local DEVICE=$(adb_get_product_device)
1108
1109 if [ -z "$DEVICE" ]; then
1110 echo "Error: Unable to get device name. Please check if device is connected and ANDROID_SERIAL is set."
1111 return -2
1112 fi
1113
1114 if [ -n "$2" ]; then
1115 PORT=$2
1116 fi
1117
1118 local ROOT=$(gettop)
1119 if [ -z "$ROOT" ]; then
1120 # This is for the situation with downloaded symbols (from the build server)
1121 # we check if they are available.
1122 ROOT=`realpath .`
1123 fi
1124
1125 local OUT_ROOT="$ROOT/out/target/product/$DEVICE"
1126 local SYMBOLS_DIR="$OUT_ROOT/symbols"
1127
1128 if [ ! -d $SYMBOLS_DIR ]; then
1129 echo "Error: couldn't find symbols: $SYMBOLS_DIR does not exist or is not a directory."
1130 return -3
1131 fi
1132
1133 # let's figure out which executable we are about to debug
1134
1135 # check if user specified a name -> resolve to pid
1136 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1137 PROCESS_NAME=$PID
1138 PID=$(pid --exact $PROCESS_NAME)
1139 if [ -z "$PID" ]; then
1140 echo "Error: couldn't resolve pid by process name: $PROCESS_NAME"
1141 return -4
1142 fi
1143 fi
1144
1145 local EXE=`adb shell readlink /proc/$PID/exe | sed s/.$//`
1146 # TODO: print error in case there is no such pid
1147 local LOCAL_EXE_PATH=$SYMBOLS_DIR$EXE
1148
1149 if [ ! -f $LOCAL_EXE_PATH ]; then
1150 echo "Error: unable to find symbols for executable $EXE: file $LOCAL_EXE_PATH does not exist"
1151 return -5
1152 fi
1153
1154 local USE64BIT=""
1155
1156 if [[ "$(file $LOCAL_EXE_PATH)" =~ 64-bit ]]; then
1157 USE64BIT="64"
1158 fi
1159
1160 local GDB=
1161 local GDB64=
1162 local CPU_ABI=`adb shell getprop ro.product.cpu.abilist | sed s/.$//`
1163 # TODO: we assume these are available via $PATH
1164 if [[ $CPU_ABI =~ (^|,)arm64 ]]; then
1165 GDB=arm-linux-androideabi-gdb
1166 GDB64=aarch64-linux-android-gdb
1167 elif [[ $CPU_ABI =~ (^|,)arm ]]; then
1168 GDB=arm-linux-androideabi-gdb
1169 elif [[ $CPU_ABI =~ (^|,)x86_64 ]]; then
1170 GDB=x86_64-linux-androideabi-gdb
1171 elif [[ $CPU_ABI =~ (^|,)x86 ]]; then
1172 GDB=x86_64-linux-androideabi-gdb
1173 elif [[ $CPU_ABI =~ (^|,)mips64 ]]; then
1174 GDB=mipsel-linux-android-gdb
1175 GDB64=mips64el-linux-android-gdb
1176 elif [[ $CPU_ABI =~ (^|,)mips ]]; then
1177 GDB=mipsel-linux-android-gdb
1178 else
1179 echo "Error: unrecognized cpu.abilist: $CPU_ABI"
1180 return -6
1181 fi
1182
1183 # TODO: check if tracing process is gdbserver and not some random strace...
1184 if [ $(adb_get_traced_by $PID) -eq 0 ]; then
1185 # start gdbserver
1186 echo "Starting gdbserver..."
1187 # TODO: check if adb is already listening $PORT
1188 # to avoid unnecessary calls
1189 echo ". adb forward for port=$PORT..."
1190 adb forward tcp:$PORT tcp:$PORT
1191 echo ". starting gdbserver to attach to pid=$PID..."
1192 adb shell gdbserver$USE64BIT :$PORT --attach $PID &
1193 echo ". give it couple of seconds to start..."
1194 sleep 2
1195 echo ". done"
1196 else
1197 echo "It looks like gdbserver is already attached to $PID (process is traced), trying to connect to it using local port=$PORT"
1198 fi
1199
1200 local OUT_SO_SYMBOLS=$SYMBOLS_DIR/system/lib$USE64BIT
1201 local OUT_VENDOR_SO_SYMBOLS=$SYMBOLS_DIR/vendor/lib$USE64BIT
1202 local ART_CMD=""
1203
1204 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $SYMBOLS_DIR"
1205 echo >>"$OUT_ROOT/gdbclient.cmds" "set solib-search-path $OUT_SO_SYMBOLS:$OUT_SO_SYMBOLS/hw:$OUT_SO_SYMBOLS/ssl/engines:$OUT_SO_SYMBOLS/drm:$OUT_SO_SYMBOLS/egl:$OUT_SO_SYMBOLS/soundfx:$OUT_VENDOR_SO_SYMBOLS:$OUT_VENDOR_SO_SYMBOLS/hw:$OUT_VENDOR_SO_SYMBOLS/egl"
1206 local DALVIK_GDB_SCRIPT=$ROOT/development/scripts/gdb/dalvik.gdb
1207 if [ -f $DALVIK_GDB_SCRIPT ]; then
1208 echo >>"$OUT_ROOT/gdbclient.cmds" "source $DALVIK_GDB_SCRIPT"
1209 ART_CMD="art-on"
1210 else
1211 echo "Warning: couldn't find $DALVIK_GDB_SCRIPT - ART debugging options will not be available"
1212 fi
1213 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote :$PORT"
1214 if [[ $EXE =~ (^|/)(app_process|dalvikvm)(|32|64)$ ]]; then
1215 echo >> "$OUT_ROOT/gdbclient.cmds" $ART_CMD
1216 fi
1217
1218 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1219
1220 local WHICH_GDB=$GDB
1221
1222 if [ -n "$USE64BIT" -a -n "$GDB64" ]; then
1223 WHICH_GDB=$GDB64
1224 fi
1225
1226 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$LOCAL_EXE_PATH"
1227}
1228
Ben Chengfba67bf2014-02-25 10:27:07 -08001229# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
1230# executable, set up the approriate gdbserver, then invokes the proper host
1231# gdb.
Dmitriy Ivanovfd0f1c82014-10-30 22:00:17 -07001232function gdbclient_old()
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001233{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001234 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
1235 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
1236 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
Colin Cross3655a682014-05-22 11:59:10 -07001237 local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
Brigid Smith0a2712d2014-05-28 14:36:43 -07001238 local OUT_EXE_SYMBOLS=$(get_symbols_directory)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001239 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001240 local ARCH=$(get_build_var TARGET_ARCH)
1241 local GDB
1242 case "$ARCH" in
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001243 arm) GDB=arm-linux-androideabi-gdb;;
Ben Chengfba67bf2014-02-25 10:27:07 -08001244 arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
Duane Sand3c4fcd82014-07-22 14:34:00 -07001245 mips|mips64) GDB=mips64el-linux-android-gdb;;
Serban Constantinescu9b68fb22014-01-14 10:33:53 +00001246 x86) GDB=x86_64-linux-android-gdb;;
1247 x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001248 *) echo "Unknown arch $ARCH"; return 1;;
1249 esac
1250
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001251 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
1252 local EXE="$1"
1253 if [ "$EXE" ] ; then
1254 EXE=$1
Brigid Smith7a569a62014-06-20 14:12:12 -07001255 if [[ $EXE =~ ^[^/].* ]] ; then
1256 EXE="system/bin/"$EXE
1257 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001258 else
1259 EXE="app_process"
1260 fi
1261
1262 local PORT="$2"
1263 if [ "$PORT" ] ; then
1264 PORT=$2
1265 else
1266 PORT=":5039"
1267 fi
1268
Chris Craik20c136a2012-11-09 18:02:19 -08001269 local PID="$3"
1270 if [ "$PID" ] ; then
1271 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -07001272 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -08001273 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1274 # that likely didn't work because of returning multiple processes
1275 # try again, filtering by root processes (don't contain colon)
Mathias Agopian44583272013-08-27 14:15:50 -07001276 PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik20c136a2012-11-09 18:02:19 -08001277 if [[ ! "$PID" =~ ^[0-9]+$ ]]
1278 then
1279 echo "Couldn't resolve '$3' to single PID"
1280 return 1
1281 else
1282 echo ""
1283 echo "WARNING: multiple processes matching '$3' observed, using root process"
1284 echo ""
1285 fi
1286 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -07001287 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001288 adb forward "tcp$PORT" "tcp$PORT"
Ben Chengfba67bf2014-02-25 10:27:07 -08001289 local USE64BIT="$(is64bit $PID)"
1290 adb shell gdbserver$USE64BIT $PORT --attach $PID &
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001291 sleep 2
1292 else
1293 echo ""
1294 echo "If you haven't done so already, do this first on the device:"
1295 echo " gdbserver $PORT /system/bin/$EXE"
1296 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -08001297 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001298 echo ""
1299 fi
1300
Colin Cross84480ad2014-04-10 12:51:39 -07001301 OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
Colin Crossa58f8e02014-06-20 13:33:36 -07001302 OUT_VENDOR_SO_SYMBOLS=$OUT_VENDOR_SO_SYMBOLS$USE64BIT
Colin Cross84480ad2014-04-10 12:51:39 -07001303
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001304 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Colin Cross3655a682014-05-22 11:59:10 -07001305 echo >>"$OUT_ROOT/gdbclient.cmds" "set solib-search-path $OUT_SO_SYMBOLS:$OUT_SO_SYMBOLS/hw:$OUT_SO_SYMBOLS/ssl/engines:$OUT_SO_SYMBOLS/drm:$OUT_SO_SYMBOLS/egl:$OUT_SO_SYMBOLS/soundfx:$OUT_VENDOR_SO_SYMBOLS:$OUT_VENDOR_SO_SYMBOLS/hw:$OUT_VENDOR_SO_SYMBOLS/egl"
Ben Cheng72398162013-06-24 14:36:21 -07001306 echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001307 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
Christopher Ferris855d27f2014-10-03 17:29:27 -07001308 # Enable special debugging for ART processes.
1309 if [[ $EXE =~ (^|/)(app_process|dalvikvm)(|32|64)$ ]]; then
1310 echo >> "$OUT_ROOT/gdbclient.cmds" "art-on"
1311 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001312 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1313
Ben Chengfba67bf2014-02-25 10:27:07 -08001314 local WHICH_GDB=
1315 # 64-bit exe found
1316 if [ "$USE64BIT" != "" ] ; then
1317 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1318 # 32-bit exe / 32-bit platform
1319 elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1320 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1321 # 32-bit exe / 64-bit platform
1322 else
1323 WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1324 fi
Brigid Smith0a2712d2014-05-28 14:36:43 -07001325
Ben Chengfba67bf2014-02-25 10:27:07 -08001326 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001327 else
1328 echo "Unable to determine build system output dir."
1329 fi
1330
1331}
1332
1333case `uname -s` in
1334 Darwin)
1335 function sgrep()
1336 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001337 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|S|java|xml|sh|mk|aidl)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001338 }
1339
1340 ;;
1341 *)
1342 function sgrep()
1343 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001344 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|S\|java\|xml\|sh\|mk\|aidl\)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001345 }
1346 ;;
1347esac
1348
Raghu Gandham8da43102012-07-25 19:57:22 -07001349function gettargetarch
1350{
1351 get_build_var TARGET_ARCH
1352}
1353
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001354function ggrep()
1355{
1356 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1357}
1358
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001359function jgrep()
1360{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001361 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001362}
1363
1364function cgrep()
1365{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001366 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001367}
1368
1369function resgrep()
1370{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001371 for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do find $dir -type f -name '*\.xml' -print0 | xargs -0 grep --color -n "$@"; done;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001372}
1373
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001374function mangrep()
1375{
1376 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1377}
1378
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001379function sepgrep()
1380{
1381 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d -print0 | xargs -0 grep --color -n -r --exclude-dir=\.git "$@"
1382}
1383
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001384case `uname -s` in
1385 Darwin)
1386 function mgrep()
1387 {
Ying Wang324c2b22012-08-17 15:03:20 -07001388 find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001389 }
1390
1391 function treegrep()
1392 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001393 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|S|java|xml)' -print0 | xargs -0 grep --color -n -i "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001394 }
1395
1396 ;;
1397 *)
1398 function mgrep()
1399 {
Ying Wang324c2b22012-08-17 15:03:20 -07001400 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -type f -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001401 }
1402
1403 function treegrep()
1404 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001405 find . -name .repo -prune -o -name .git -prune -o -regextype posix-egrep -iregex '.*\.(c|h|cpp|S|java|xml)' -type f -print0 | xargs -0 grep --color -n -i "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001406 }
1407
1408 ;;
1409esac
1410
1411function getprebuilt
1412{
1413 get_abs_build_var ANDROID_PREBUILTS
1414}
1415
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001416function tracedmdump()
1417{
1418 T=$(gettop)
1419 if [ ! "$T" ]; then
1420 echo "Couldn't locate the top of the tree. Try setting TOP."
1421 return
1422 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001423 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001424 local arch=$(gettargetarch)
1425 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001426
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001427 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001428 if [ ! "$TRACE" ] ; then
1429 echo "usage: tracedmdump tracename"
1430 return
1431 fi
1432
Jack Veenstra60116fc2009-04-09 18:12:34 -07001433 if [ ! -r "$KERNEL" ] ; then
1434 echo "Error: cannot find kernel: '$KERNEL'"
1435 return
1436 fi
1437
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001438 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001439 if [ "$BASETRACE" = "$TRACE" ] ; then
1440 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1441 fi
1442
1443 echo "post-processing traces..."
1444 rm -f $TRACE/qtrace.dexlist
1445 post_trace $TRACE
1446 if [ $? -ne 0 ]; then
1447 echo "***"
1448 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1449 echo "***"
1450 return
1451 fi
1452 echo "generating dexlist output..."
1453 /bin/ls $ANDROID_PRODUCT_OUT/system/framework/*.jar $ANDROID_PRODUCT_OUT/system/app/*.apk $ANDROID_PRODUCT_OUT/data/app/*.apk 2>/dev/null | xargs dexlist > $TRACE/qtrace.dexlist
1454 echo "generating dmtrace data..."
1455 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1456 echo "generating html file..."
1457 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1458 echo "done, see $TRACE/dmtrace.html for details"
1459 echo "or run:"
1460 echo " traceview $TRACE/dmtrace"
1461}
1462
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001463# communicate with a running device or emulator, set up necessary state,
1464# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001465function runhat()
1466{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001467 # process standard adb options
1468 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001469 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001470 adbTarget=$1
1471 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001472 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001473 adbTarget="$1 $2"
1474 shift 2
1475 fi
1476 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001477 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001478
1479 # runhat options
1480 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001481
1482 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001483 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001484 return
1485 fi
1486
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001487 # confirm hat is available
1488 if [ -z $(which hat) ]; then
1489 echo "hat is not available in this configuration."
1490 return
1491 fi
1492
Andy McFaddenb6289852010-07-12 08:00:19 -07001493 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001494 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001495 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001496 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001497 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001498 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001499 echo -n "> "
1500 read
1501
The Android Open Source Project88b60792009-03-03 19:28:42 -08001502 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001503
The Android Open Source Project88b60792009-03-03 19:28:42 -08001504 echo "Retrieving file $devFile..."
1505 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001506
The Android Open Source Project88b60792009-03-03 19:28:42 -08001507 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001508
The Android Open Source Project88b60792009-03-03 19:28:42 -08001509 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001510 echo "View the output by pointing your browser at http://localhost:7000/"
1511 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001512 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001513}
1514
1515function getbugreports()
1516{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001517 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001518
1519 if [ ! "$reports" ]; then
1520 echo "Could not locate any bugreports."
1521 return
1522 fi
1523
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001524 local report
1525 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001526 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001527 echo "/sdcard/bugreports/${report}"
1528 adb pull /sdcard/bugreports/${report} ${report}
1529 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001530 done
1531}
1532
Victoria Lease1b296b42012-08-21 15:44:06 -07001533function getsdcardpath()
1534{
1535 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1536}
1537
1538function getscreenshotpath()
1539{
1540 echo "$(getsdcardpath)/Pictures/Screenshots"
1541}
1542
1543function getlastscreenshot()
1544{
1545 local screenshot_path=$(getscreenshotpath)
1546 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1547 if [ "$screenshot" = "" ]; then
1548 echo "No screenshots found."
1549 return
1550 fi
1551 echo "${screenshot}"
1552 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1553}
1554
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001555function startviewserver()
1556{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001557 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001558 if [ $# -gt 0 ]; then
1559 port=$1
1560 fi
1561 adb shell service call window 1 i32 $port
1562}
1563
1564function stopviewserver()
1565{
1566 adb shell service call window 2
1567}
1568
1569function isviewserverstarted()
1570{
1571 adb shell service call window 3
1572}
1573
Romain Guyb84049a2010-10-04 16:56:11 -07001574function key_home()
1575{
1576 adb shell input keyevent 3
1577}
1578
1579function key_back()
1580{
1581 adb shell input keyevent 4
1582}
1583
1584function key_menu()
1585{
1586 adb shell input keyevent 82
1587}
1588
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001589function smoketest()
1590{
1591 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1592 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1593 return
1594 fi
1595 T=$(gettop)
1596 if [ ! "$T" ]; then
1597 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1598 return
1599 fi
1600
Ying Wang9cd17642012-12-13 10:52:07 -08001601 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001602 adb uninstall com.android.smoketest > /dev/null &&
1603 adb uninstall com.android.smoketest.tests > /dev/null &&
1604 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1605 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1606 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1607}
1608
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001609# simple shortcut to the runtest command
1610function runtest()
1611{
1612 T=$(gettop)
1613 if [ ! "$T" ]; then
1614 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1615 return
1616 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001617 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001618}
1619
The Android Open Source Project88b60792009-03-03 19:28:42 -08001620function godir () {
1621 if [[ -z "$1" ]]; then
1622 echo "Usage: godir <regex>"
1623 return
1624 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001625 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001626 if [[ ! -f $T/filelist ]]; then
1627 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001628 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001629 echo " Done"
1630 echo ""
1631 fi
1632 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001633 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001634 if [[ ${#lines[@]} = 0 ]]; then
1635 echo "Not found"
1636 return
1637 fi
1638 local pathname
1639 local choice
1640 if [[ ${#lines[@]} > 1 ]]; then
1641 while [[ -z "$pathname" ]]; do
1642 local index=1
1643 local line
1644 for line in ${lines[@]}; do
1645 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001646 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001647 done
1648 echo
1649 echo -n "Select one: "
1650 unset choice
1651 read choice
1652 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1653 echo "Invalid choice"
1654 continue
1655 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001656 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001657 done
1658 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001659 pathname=${lines[0]}
1660 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001661 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001662}
1663
Narayan Kamath9260bba2014-01-17 10:05:25 +00001664# Force JAVA_HOME to point to java 1.7 or java 1.6 if it isn't already set.
1665#
1666# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1667# For some reason, installing the JDK doesn't make it show up in the
1668# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001669function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001670 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001671 # we can reset it later, depending on the version of java the build
1672 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001673 #
1674 # If we don't do this, the JAVA_HOME value set by the first call to
1675 # build/envsetup.sh will persist forever.
1676 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1677 export JAVA_HOME=""
1678 fi
1679
Andy McFaddenbd960942010-06-24 12:52:51 -07001680 if [ ! "$JAVA_HOME" ]; then
Narayan Kamathc84889b2014-04-01 14:16:26 +01001681 if [ -n "$LEGACY_USE_JAVA6" ]; then
Andy McFaddenbd960942010-06-24 12:52:51 -07001682 case `uname -s` in
1683 Darwin)
1684 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1685 ;;
1686 *)
1687 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1688 ;;
1689 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001690 else
1691 case `uname -s` in
1692 Darwin)
Jason Parks13b2e192014-04-28 13:32:10 -05001693 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
Narayan Kamath9260bba2014-01-17 10:05:25 +00001694 ;;
1695 *)
1696 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1697 ;;
1698 esac
1699 fi
1700
1701 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1702 # we can change it on the next envsetup.sh, if required.
1703 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001704 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001705}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001706
Alex Rayf0d08eb2013-03-08 15:15:06 -08001707# Print colored exit condition
1708function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001709 "$@"
1710 local retval=$?
1711 if [ $retval -ne 0 ]
1712 then
1713 echo -e "\e[0;31mFAILURE\e[00m"
1714 else
1715 echo -e "\e[0;32mSUCCESS\e[00m"
1716 fi
1717 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001718}
1719
Ying Wanged21d4c2014-08-24 22:14:19 -07001720function get_make_command()
1721{
1722 echo command make
1723}
1724
Ed Heylcc6be0a2014-06-18 14:55:58 -07001725function make()
1726{
1727 local start_time=$(date +"%s")
Ying Wanged21d4c2014-08-24 22:14:19 -07001728 $(get_make_command) "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001729 local ret=$?
1730 local end_time=$(date +"%s")
1731 local tdiff=$(($end_time-$start_time))
1732 local hours=$(($tdiff / 3600 ))
1733 local mins=$((($tdiff % 3600) / 60))
1734 local secs=$(($tdiff % 60))
1735 echo
1736 if [ $ret -eq 0 ] ; then
Ed Heylc6d11f82014-06-27 13:32:39 -07001737 echo -n -e "#### make completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001738 else
Ed Heylc6d11f82014-06-27 13:32:39 -07001739 echo -n -e "#### make failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001740 fi
1741 if [ $hours -gt 0 ] ; then
1742 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1743 elif [ $mins -gt 0 ] ; then
1744 printf "(%02g:%02g (mm:ss))" $mins $secs
1745 elif [ $secs -gt 0 ] ; then
1746 printf "(%s seconds)" $secs
1747 fi
Ed Heylc6d11f82014-06-27 13:32:39 -07001748 echo -e " ####"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001749 echo
1750 return $ret
1751}
1752
1753
1754
Raphael Moll70a86b02011-06-20 16:03:14 -07001755if [ "x$SHELL" != "x/bin/bash" ]; then
1756 case `ps -o command -p $$` in
1757 *bash*)
1758 ;;
1759 *)
1760 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1761 ;;
1762 esac
1763fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001764
1765# Execute the contents of any vendorsetup.sh files we can find.
Ying Wang506410a2014-07-09 15:37:34 -07001766for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1767 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001768do
1769 echo "including $f"
1770 . $f
1771done
1772unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001773
1774addcompletions