Use make on i system (#8178)

Co-authored-by: GavinZhang <zhanggan@cn.ibm.com>
This commit is contained in:
Gavin Zhang 2022-08-18 12:55:32 +08:00 committed by GitHub
parent 93966b0d19
commit 40a10c217d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,6 +171,8 @@ class BuildExt(build_ext.build_ext): # pylint: disable=too-many-ancestors
build_tool = 'ninja' build_tool = 'ninja'
else: else:
build_tool = 'make' build_tool = 'make'
if sys.platform.startswith('os400'):
build_tool = 'make'
if system() == 'Windows': if system() == 'Windows':
# Pick up from LGB, just test every possible tool chain. # Pick up from LGB, just test every possible tool chain.