diff options
author | Jing Yu <jingyu@google.com> | 2012-01-06 14:14:06 -0800 |
---|---|---|
committer | Jing Yu <jingyu@google.com> | 2012-01-06 14:14:06 -0800 |
commit | 1f87795eef3ab5f63675dc6e01f304d1a6e46d2a (patch) | |
tree | d0c84439a6281d278d86f51e9e04e9132dfd7f1f /tools | |
parent | c7a10ddd3115a40de10b34d7dbfe92134ce7ae8f (diff) | |
download | build-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')
-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 = ""; |