Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: tools/build.py

Issue 833663002: Builds 32-bit arm and intel for Android using gcc 4.9 against L-release. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/android_link.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/build.py
===================================================================
--- tools/build.py (revision 42574)
+++ tools/build.py (working copy)
@@ -202,11 +202,11 @@
CheckDirExists(android_ndk_root, 'Android NDK')
# Set up the directory of the Android NDK cross-compiler toolchain.
- toolchain_arch = 'arm-linux-androideabi-4.6'
+ toolchain_arch = 'arm-linux-androideabi-4.9'
if target_arch == 'arm64':
toolchain_arch = 'aarch64-linux-android-4.9'
if target_arch == 'ia32':
- toolchain_arch = 'x86-4.6'
+ toolchain_arch = 'x86-4.9'
toolchain_dir = 'linux-x86_64'
android_toolchain = os.path.join(android_ndk_root,
'toolchains', toolchain_arch,
« no previous file with comments | « tools/android_link.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698