commit | d91b9f7d46489a9ee00f9cb415630299c76a502b | [log] [tgz] |
---|---|---|
author | Leon Clarke <leonclarke@google.com> | Wed Jan 27 17:25:45 2010 +0000 |
committer | Leon Clarke <leonclarke@google.com> | Wed Jan 27 17:31:21 2010 +0000 |
tree | 741552f95883bb7461cf7c1d36335cef68804a5b | |
parent | eab96aab0834f21954b5d6aa6366bcfb348ed811 [diff] [blame] |
Merge from v8 at revision 3723
diff --git a/tools/utils.py b/tools/utils.py index 196bb05..435c12d 100644 --- a/tools/utils.py +++ b/tools/utils.py
@@ -57,6 +57,8 @@ return 'freebsd' elif id == 'OpenBSD': return 'openbsd' + elif id == 'SunOS': + return 'solaris' else: return None @@ -67,6 +69,8 @@ return 'arm' elif (not id) or (not re.match('(x|i[3-6])86', id) is None): return 'ia32' + elif id == 'i86pc': + return 'ia32' else: return None