diff options
author | Max Kellermann <max@duempel.org> | 2014-11-20 20:59:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-11-24 08:00:45 +0100 |
commit | e972ae4afa50e3333cc7f743327f2aba88ec2347 (patch) | |
tree | 7d3837053326578f246f6c370ed52c078dbf4e29 | |
parent | 0709065f50e4ae7e1745f6a36a72f4b296bdc6b8 (diff) | |
download | mpd-e972ae4afa50e3333cc7f743327f2aba88ec2347.tar.gz mpd-e972ae4afa50e3333cc7f743327f2aba88ec2347.tar.xz mpd-e972ae4afa50e3333cc7f743327f2aba88ec2347.zip |
android: switch to gcc 4.9 / llvm 3.5 (NDK r10c)
Diffstat (limited to '')
-rwxr-xr-x | android/build.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/build.py b/android/build.py index db475b43d..634d9bffb 100755 --- a/android/build.py +++ b/android/build.py @@ -40,8 +40,8 @@ build_arch = 'linux-x86_64' os.environ['PKG_CONFIG_LIBDIR'] = os.path.join(root_path, 'lib/pkgconfig') # select the NDK compiler -gcc_version = '4.8' -llvm_version = '3.3' +gcc_version = '4.9' +llvm_version = '3.5' # select the NDK target ndk_arch = 'arm' |