Make AIX known by bootstrap

This commit is contained in:
Kai Luo 2023-09-13 15:04:34 +08:00
parent 367db835dc
commit 2962528b4a

View File

@ -312,6 +312,8 @@ def default_build_triple(verbose):
# non-standard string (e.g. gnuwin32 tools returns `windows32`). In
# these cases, fall back to using sys.platform.
return 'x86_64-pc-windows-msvc'
elif kernel == 'AIX':
return 'powerpc64-ibm-aix'
else:
err = "unknown OS type: {}".format(kernel)
sys.exit(err)