From 6c22163c755599429a195336398a48a457921467 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Sun, 8 Jan 2012 13:50:20 -0500 Subject: [PATCH] Added detection for AMD 64-bit CPUs --- svlgui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svlgui.py b/svlgui.py index d562b2b..8848458 100644 --- a/svlgui.py +++ b/svlgui.py @@ -114,7 +114,7 @@ if sys.platform=="linux2": PLATFORM = 'linuxARM' elif (not id) or (not re.match('(x|i[3-6])86$', id) is None): PLATFORM = 'linux32' - elif id == 'x86_64': + elif id.lower() in ('x86_64', "amd64"): PLATFORM = 'linux64' elif "ppc" in plid.lower(): PLATFORM = "linuxPPC"