From 36edb4886c371b90bdc27eed305f112196dfb765 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 17 Aug 2018 18:27:06 +0200 Subject: android/build.py: add variable "android_api_level" --- android/build.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'android') diff --git a/android/build.py b/android/build.py index 4c26f9c4c..33f08151e 100755 --- a/android/build.py +++ b/android/build.py @@ -65,7 +65,8 @@ class AndroidNdkToolchain: self.build_path = build_path ndk_arch = abi_info['ndk_arch'] - ndk_platform = 'android-14' + android_api_level = '14' + ndk_platform = 'android-' + android_api_level # select the NDK compiler gcc_version = '4.9' @@ -106,7 +107,7 @@ class AndroidNdkToolchain: self.cppflags = '--sysroot=' + sysroot + \ ' -isystem ' + os.path.join(install_prefix, 'include') + \ ' -isystem ' + os.path.join(sysroot, 'usr', 'include', arch) + \ - ' -D__ANDROID_API__=14' + ' -D__ANDROID_API__=' + android_api_level self.ldflags = '--sysroot=' + sysroot + \ ' -L' + os.path.join(install_prefix, 'lib') + \ ' -L' + os.path.join(target_root, 'usr', 'lib') + \ -- cgit v1.2.3