From e7b4aca6a3670b3f20aa977166cdb424284123a0 Mon Sep 17 00:00:00 2001 From: topilski Date: Wed, 18 Oct 2017 16:46:58 +0300 Subject: [PATCH] More arch --- base/system_info.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/base/system_info.py b/base/system_info.py index b36a669..c320526 100644 --- a/base/system_info.py +++ b/base/system_info.py @@ -140,8 +140,9 @@ class WindowsMingwPlatform(Platform): class WindowsPlatforms(SupportedPlatforms): def __init__(self): - SupportedPlatforms.__init__(self, 'windows', [Architecture('x86_64', 64, '/mingw64'), - Architecture('i386', 32, '/mingw32')], ['NSIS', 'ZIP']) + SupportedPlatforms.__init__(self, 'windows', + [Architecture('x86_64', 64, '/mingw64'), Architecture('AMD64', 64, '/mingw64'), + Architecture('i386', 32, '/mingw32')], ['NSIS', 'ZIP']) def make_platform_by_arch(self, arch, package_types) -> Platform: return WindowsMingwPlatform(arch, package_types)