diff options
| author | Kai Luo <lkail@cn.ibm.com> | 2023-09-13 15:04:34 +0800 |
|---|---|---|
| committer | Kai Luo <lkail@cn.ibm.com> | 2023-09-13 15:04:34 +0800 |
| commit | 2962528b4accdf1d0c2b219568c4ef115f78a503 (patch) | |
| tree | 8c17ebd6b2fd7164127198644188ecfa591e7b30 /src/bootstrap | |
| parent | 367db835dcd38530b7cc90440f0c17f9794da300 (diff) | |
| download | rust-2962528b4accdf1d0c2b219568c4ef115f78a503.tar.gz rust-2962528b4accdf1d0c2b219568c4ef115f78a503.zip | |
Make AIX known by bootstrap
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index e4c76226454..bc8b5326d8d 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -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) |
