summaryrefslogtreecommitdiffstats
path: root/tools/adbs
diff options
context:
space:
mode:
authorJing Yu <jingyu@google.com>2012-01-06 14:14:06 -0800
committerJing Yu <jingyu@google.com>2012-01-06 14:14:06 -0800
commit1f87795eef3ab5f63675dc6e01f304d1a6e46d2a (patch)
treed0c84439a6281d278d86f51e9e04e9132dfd7f1f /tools/adbs
parentc7a10ddd3115a40de10b34d7dbfe92134ce7ae8f (diff)
downloadbuild-1f87795eef3ab5f63675dc6e01f304d1a6e46d2a.zip
build-1f87795eef3ab5f63675dc6e01f304d1a6e46d2a.tar.gz
build-1f87795eef3ab5f63675dc6e01f304d1a6e46d2a.tar.bz2
Point arm toolchain to the new gcc-4.6 one.
Tested build mysid-eng, sojus-eng, trygon-eng, yakju-eng. Change-Id: I742cf9fcf2407b9098c99136d67161ecf062ac01 Conflicts: core/combo/TARGET_linux-arm.mk
Diffstat (limited to 'tools/adbs')
-rwxr-xr-xtools/adbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/adbs b/tools/adbs
index b571d48..dd84a83 100755
--- a/tools/adbs
+++ b/tools/adbs
@@ -144,13 +144,13 @@ def SetupToolsPath():
uname = "darwin-ppc"
elif uname == "Linux":
uname = "linux-x86"
- prefix = "./prebuilt/" + uname + "/toolchain/arm-linux-androideabi-4.4.x/bin/"
+ prefix = "./prebuilts/gcc/" + uname + "/arm/arm-linux-androideabi-4.6/bin/"
addr2line_cmd = prefix + "arm-linux-androideabi-addr2line"
if (not os.path.exists(addr2line_cmd)):
try:
- prefix = os.environ['ANDROID_BUILD_TOP'] + "/prebuilt/" + uname + \
- "/toolchain/arm-linux-androideabi-4.4.x/bin/"
+ prefix = os.environ['ANDROID_BUILD_TOP'] + "/prebuilts/gcc/" + \
+ uname + "/arm/arm-linux-androideabi-4.6/bin/"
except:
prefix = "";