diff options
author | Max Kellermann <max@duempel.org> | 2014-11-20 20:59:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-11-20 20:59:36 +0100 |
commit | ccf78448aa2bd77ee0480834a02db7f460c37627 (patch) | |
tree | e1304d6ea8107544bb32bdde3c1ac9c8d0e99825 /android | |
parent | ed001e0cfb4362009d76b8ee56c61c21aed2fe95 (diff) | |
download | mpd-ccf78448aa2bd77ee0480834a02db7f460c37627.tar.gz mpd-ccf78448aa2bd77ee0480834a02db7f460c37627.tar.xz mpd-ccf78448aa2bd77ee0480834a02db7f460c37627.zip |
android: switch to gcc 4.9 / llvm 3.5 (NDK r10c)
Diffstat (limited to 'android')
-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' |