1
Fork 0

Rollup merge of #39903 - binarycrusader:issue-39901, r=alexcrichton

add solaris sparcv9 support

Fixes #39901
This commit is contained in:
Eduard-Mihai Burtescu 2017-02-25 14:13:18 +02:00 committed by GitHub
commit a6924177e4
4 changed files with 47 additions and 1 deletions

View file

@ -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: