From: Rust Maintainers Date: Mon, 18 Dec 2017 18:46:25 +0000 (+0000) Subject: u-sparc64-detection-2 X-Git-Tag: archive/raspbian/1.22.1+dfsg1-1+rpi1^2~24 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6cd61308f13d18748b6e78dcf42bdafe6e4eae50;p=rustc.git u-sparc64-detection-2 commit d7dec7c8d71b30fea6e4c5aca40adce1724ba87d Author: John Paul Adrian Glaubitz Date: Sun Oct 29 23:51:14 2017 +0100 bootstrap: Add missing cputype matching for sparc64 Gbp-Pq: Name u-sparc64-detection-2.patch --- diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 4a8c3dcebc..a37e70e1fd 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)