diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2017-02-25 14:13:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-25 14:13:18 +0200 |
| commit | a6924177e4953eee1fa0ebcff59eede1684781eb (patch) | |
| tree | 08567e32fdd84490c318315aa66ff527d730594d /src/bootstrap | |
| parent | e31d46402d1804ba4989665ffb8d9ce2c7686ad0 (diff) | |
| parent | 2e756e22b3d5ffcb9cf8b199796ecb35cfc7b415 (diff) | |
| download | rust-a6924177e4953eee1fa0ebcff59eede1684781eb.tar.gz rust-a6924177e4953eee1fa0ebcff59eede1684781eb.zip | |
Rollup merge of #39903 - binarycrusader:issue-39901, r=alexcrichton
add solaris sparcv9 support Fixes #39901
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 6b1b8ddf56f..3f8286f9e9e 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -485,6 +485,8 @@ class RustBuild(object): ostype += 'abi64' elif cputype in {'powerpc', 'ppc', 'ppc64'}: cputype = 'powerpc' + elif cputype == 'sparcv9': + pass elif cputype in {'amd64', 'x86_64', 'x86-64', 'x64'}: cputype = 'x86_64' else: |
