diff options
author | Jing Yu <jingyu@google.com> | 2010-06-16 20:17:19 -0700 |
---|---|---|
committer | Jing Yu <jingyu@google.com> | 2010-06-16 20:17:19 -0700 |
commit | ada132a80ba7edde00ac71727a205d55578e3f47 (patch) | |
tree | 437e8a33f06054ec13c296e5d35740e13c7d09be /tools/adbs | |
parent | 3e4677856f0e16a732cecc15cafa7efde1f21241 (diff) | |
download | build-ada132a80ba7edde00ac71727a205d55578e3f47.zip build-ada132a80ba7edde00ac71727a205d55578e3f47.tar.gz build-ada132a80ba7edde00ac71727a205d55578e3f47.tar.bz2 |
Switch toolchain from gcc-4.4.0 to gcc-4.4.3
gcc-4.4.3 toolchain is based on fsf GCC-4.4.3 with numerous patches.
It reduces 3.65% code size than the prebuilt gcc-4.4.0 toolchain,
and improves 3.4% performance on Android benchmarks.
The toolchain uses gold as default linker. With gold, the toolchain
further reduces 1MB system image.
Change-Id: I55eb4df185f2932e71498fcc28428e4d1b175393
Diffstat (limited to 'tools/adbs')
-rwxr-xr-x | tools/adbs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -144,13 +144,13 @@ def SetupToolsPath(): uname = "darwin-ppc" elif uname == "Linux": uname = "linux-x86" - prefix = "./prebuilt/" + uname + "/toolchain/arm-eabi-4.4.0/bin/" + prefix = "./prebuilt/" + uname + "/toolchain/arm-eabi-4.4.3/bin/" addr2line_cmd = prefix + "arm-eabi-addr2line" if (not os.path.exists(addr2line_cmd)): try: prefix = os.environ['ANDROID_BUILD_TOP'] + "/prebuilt/" + uname + \ - "/toolchain/arm-eabi-4.4.0/bin/" + "/toolchain/arm-eabi-4.4.3/bin/" except: prefix = ""; |