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

Unified Diff: tools/android_link.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 | « no previous file | tools/build.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android_link.py
===================================================================
--- tools/android_link.py (revision 42574)
+++ tools/android_link.py (working copy)
@@ -76,11 +76,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,
@@ -108,13 +108,13 @@
# Set up the path to the system root directory, which is where we'll find the
# Android specific system includes and libraries.
android_ndk_sysroot = os.path.join(android_ndk_root,
- 'platforms', 'android-14', 'arch-arm')
+ 'platforms', 'android-L', 'arch-arm')
if target_arch == 'arm64':
android_ndk_sysroot = os.path.join(android_ndk_root,
'platforms', 'android-L', 'arch-arm64')
if target_arch == 'ia32':
android_ndk_sysroot = os.path.join(android_ndk_root,
- 'platforms', 'android-14', 'arch-x86')
+ 'platforms', 'android-L', 'arch-x86')
CheckDirExists(android_ndk_sysroot, 'Android sysroot')
android_ndk_lib = os.path.join(android_ndk_sysroot,'usr','lib')
android_ndk_include = os.path.join(android_ndk_sysroot, 'usr', 'include')
« no previous file with comments | « no previous file | tools/build.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698