diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-10-21 12:59:46 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-10-21 12:59:46 +0200 |
commit | 7ae7e03b2d5bf4ce2cfe209954ce0eb53861319f (patch) | |
tree | 367ed76d6f8369c4bcbcddf62dddabd5e3fcf23d /config | |
parent | e635a8097f945a656f01f4bcf51176602fb9101a (diff) |
android: Add support for the gcc 4.9 toolchain of the new NDK
Diffstat (limited to 'config')
-rw-r--r-- | config/android.config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/android.config b/config/android.config index feba5fbd..dd72d24c 100644 --- a/config/android.config +++ b/config/android.config @@ -20,7 +20,7 @@ if target_arch == Architecture.ARM or target_arch == Architecture.ARMv7: host = "arm-linux-androideabi" _arch = 'arm' - for tc_version in ['4.8', '4.7', '4.6']: + for tc_version in ['4.9', '4.8', '4.7', '4.6']: for tc_arch in ['darwin-x86', 'darwin-x86_64', 'linux-x86', 'linux-x86_64']: tmp = '%s/toolchains/arm-linux-androideabi-%s/prebuilt/%s/bin' % (toolchain_prefix, tc_version, tc_arch) if os.path.exists(tmp): @@ -32,7 +32,7 @@ elif target_arch == Architecture.X86: tools_prefix = 'i686-linux-android' host = "i686-linux-android" _arch = 'x86' - for tc_version in ['4.8', '4.7', '4.6']: + for tc_version in ['4.9', '4.8', '4.7', '4.6']: for tc_arch in ['darwin-x86', 'darwin-x86_64', 'linux-x86', 'linux-x86_64']: tmp = '%s/toolchains/x86-%s/prebuilt/%s/bin' % (toolchain_prefix, tc_version, tc_arch) if os.path.exists(tmp): |