ccc: Normalize machine name to i386 for platforms which report the

machine as x86_64.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63122 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-01-27 19:29:51 +00:00
Родитель c8e9cd6e32
Коммит bac51fa0fd
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -52,6 +52,8 @@ class Driver(object):
# Normalize names.
if machine == 'Power Macintosh':
return 'ppc'
if machine == 'x86_64':
return 'i386'
return machine
def getHostSystemName(self):