From cf9eebaf3431fb85d5080a9bd13b5a24514b90c2 Mon Sep 17 00:00:00 2001 From: "sgjesse@chromium.org" Date: Wed, 28 Apr 2010 08:06:18 +0000 Subject: [PATCH] Add amd64 to GuessArchitecture Patch by Ryan Dahl , see http://codereview.chromium.org/1707013. Review URL: http://codereview.chromium.org/1732016 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4523 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/utils.py b/tools/utils.py index 435c12d..3a55722 100644 --- a/tools/utils.py +++ b/tools/utils.py @@ -71,6 +71,8 @@ def GuessArchitecture(): return 'ia32' elif id == 'i86pc': return 'ia32' + elif id == 'amd64': + return 'ia32' else: return None -- 2.7.4