Bug 1412781 - sparcv9 cpu should be evaluated as 64bit. r=glandium

This commit is contained in:
Petr Sumbera 2017-10-30 02:50:48 -07:00
Родитель e127a23016
Коммит 9fb34379c3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -607,7 +607,7 @@ def split_triplet(triplet, allow_unknown=False):
elif cpu.startswith('hppa') or cpu == 'parisc':
canonical_cpu = 'hppa'
endianness = 'big'
elif cpu.startswith('sparc64'):
elif cpu.startswith('sparc64') or cpu.startswith('sparcv9'):
canonical_cpu = 'sparc64'
endianness = 'big'
elif cpu.startswith('sparc') or cpu == 'sun4u':