mirror of
https://github.com/fastogt/pyfastogt
synced 2025-03-09 23:38:55 +00:00
More arch
This commit is contained in:
parent
0dd68afd38
commit
e7b4aca6a3
1 changed files with 3 additions and 2 deletions
|
@ -140,8 +140,9 @@ class WindowsMingwPlatform(Platform):
|
||||||
|
|
||||||
class WindowsPlatforms(SupportedPlatforms):
|
class WindowsPlatforms(SupportedPlatforms):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
SupportedPlatforms.__init__(self, 'windows', [Architecture('x86_64', 64, '/mingw64'),
|
SupportedPlatforms.__init__(self, 'windows',
|
||||||
Architecture('i386', 32, '/mingw32')], ['NSIS', 'ZIP'])
|
[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:
|
def make_platform_by_arch(self, arch, package_types) -> Platform:
|
||||||
return WindowsMingwPlatform(arch, package_types)
|
return WindowsMingwPlatform(arch, package_types)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue