android/build.py: drop -lmstackrealign
This flag doesn't appear to work, and since we never had a problem without the flag, implementing Google's recommendation is useless.
This commit is contained in:
parent
ab41c16eb5
commit
b4700039fd
|
@ -117,10 +117,6 @@ class AndroidNdkToolchain:
|
||||||
self.ldflags = common_flags
|
self.ldflags = common_flags
|
||||||
self.libs = ''
|
self.libs = ''
|
||||||
|
|
||||||
# required flags from https://android.googlesource.com/platform/ndk/+/ndk-release-r20/docs/BuildSystemMaintainers.md#additional-required-arguments
|
|
||||||
if ndk_arch == 'x86' and int(android_api_level) < 24:
|
|
||||||
self.ldflags += ' -lmstackrealign'
|
|
||||||
|
|
||||||
self.is_arm = ndk_arch == 'arm'
|
self.is_arm = ndk_arch == 'arm'
|
||||||
self.is_armv7 = self.is_arm and 'armv7' in self.cflags
|
self.is_armv7 = self.is_arm and 'armv7' in self.cflags
|
||||||
self.is_aarch64 = ndk_arch == 'arm64'
|
self.is_aarch64 = ndk_arch == 'arm64'
|
||||||
|
|
Loading…
Reference in New Issue