Rollup merge of #39491 - dumbbell:support-aarch64-unknown-freebsd, r=alexcrichton

Support aarch64-unknown-freebsd
This commit is contained in:
Corey Farwell 2017-02-05 12:45:06 -05:00 committed by GitHub
commit b3518aff90
5 changed files with 39 additions and 1 deletions

View file

@ -379,6 +379,8 @@ class RustBuild(object):
ostype += 'eabihf'
elif cputype == 'aarch64':
cputype = 'aarch64'
elif cputype == 'arm64':
cputype = 'aarch64'
elif cputype == 'mips':
if sys.byteorder == 'big':
cputype = 'mips'