waflib: xcompile: define both __ANDROID__ and ANDROID for compatibility

This commit is contained in:
Alibek Omarov 2019-05-01 19:03:23 +03:00
parent 3ebb4d0ea3
commit 87f380b90c
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class Android:
return os.path.abspath(os.path.join(self.ndk_home, path))
def cflags(self):
cflags = ['--sysroot={0}'.format(self.sysroot()), '-DANDROID']
cflags = ['--sysroot={0}'.format(self.sysroot()), '-DANDROID', '-D__ANDROID__']
if self.is_arm():
if self.arch.startswith('armeabi-v7a'):
# ARMv7 support