ci: growing_stack should be true for android and ios

We can't run this test when cross-compiling, but we know what this
should be on Android and iOS.
This commit is contained in:
Nirbheek Chauhan 2020-05-29 02:44:44 +05:30
parent e3ef2cdf82
commit ab6b764e24
2 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,7 @@ endian = 'little'
c_args = ['-I${prefix_path}/include']
c_link_args = ['-L${prefix_path}/lib64',
'-fuse-ld=gold']
growing_stack = true
[binaries]
c = '${toolchain_path}/bin/${CC}'

View File

@ -13,6 +13,7 @@ c_link_args = ['-arch', 'arm64', '-isysroot', '/Applications/Xcode.app/Contents/
cpp_link_args = ['-arch', 'arm64', '-isysroot', '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk', '-Wl,-iphoneos_version_min,11.0']
objc_link_args = ['-arch', 'arm64', '-isysroot', '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk', '-Wl,-iphoneos_version_min,11.0']
objcpp_link_args = ['-arch', 'arm64', '-isysroot', '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk', '-Wl,-iphoneos_version_min,11.0']
growing_stack = true
[binaries]