diff options
| author | John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> | 2017-10-29 23:51:14 +0100 |
|---|---|---|
| committer | John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> | 2017-10-31 19:26:41 +0100 |
| commit | d7dec7c8d71b30fea6e4c5aca40adce1724ba87d (patch) | |
| tree | cb47e2ef3c06bbf9ee3842c7eb2e758b142af08b | |
| parent | 8b22e70b2de5152db3b0c53cfa16eb96b0b9e40e (diff) | |
| download | rust-d7dec7c8d71b30fea6e4c5aca40adce1724ba87d.tar.gz rust-d7dec7c8d71b30fea6e4c5aca40adce1724ba87d.zip | |
bootstrap: Add missing cputype matching for sparc64
| -rw-r--r-- | src/bootstrap/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 0ab4c79e3b2..707aceebb1e 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -294,7 +294,7 @@ def default_build_triple(): raise ValueError('unknown byteorder: {}'.format(sys.byteorder)) # only the n64 ABI is supported, indicate it ostype += 'abi64' - elif cputype == 'sparcv9': + elif cputype == 'sparcv9' or cputype == 'sparc64': pass else: err = "unknown cpu type: {}".format(cputype) |
