summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xandroid/build.py5
1 files changed, 3 insertions, 2 deletions
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') + \