Status: New
Owner: ----

New issue 429 by eddy.pronk: x86_64 not detected (patch)
http://code.google.com/p/v8/issues/detail?id=429

URL: http://v8.googlecode.com/svn/branches/bleeding_edge

Index: tools/utils.py
===================================================================
--- tools/utils.py      (revision 2740)
+++ tools/utils.py      (working copy)
@@ -63,8 +63,10 @@
    id = platform.machine()
    if id.startswith('arm'):
      return 'arm'
-  elif (not id) or (not re.match('(x|i[3-6])86', id) is None):
+  elif (not id) or (not re.match('(x|i[3-6])86$', id) is None):
      return 'ia32'
+  elif id == 'x86_64':
+    return 'x64'
    else:
      return None


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to