diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-04-20 16:15:42 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2012-04-20 16:15:42 -0700 |
commit | a50ef1c12441d9eccfa75409c1392befaf2abed5 (patch) | |
tree | 2640029f25a617ad63790530504df8af6a83b3fc /tools | |
parent | d0427e493edf2e4de2bd60fd1cc8253e9de233fd (diff) | |
download | build-a50ef1c12441d9eccfa75409c1392befaf2abed5.zip build-a50ef1c12441d9eccfa75409c1392befaf2abed5.tar.gz build-a50ef1c12441d9eccfa75409c1392befaf2abed5.tar.bz2 |
Switch to new locations of toolchains
Change-Id: I15a8be11b3d0f1985ffd97dd51a1af18e1ce7b67
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/adbs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 = ""; |