1
0
Fork 0
mirror of https://github.com/fastogt/pyfastogt synced 2025-03-09 23:38:55 +00:00

i686 arch

This commit is contained in:
topilski 2018-02-14 06:52:26 +03:00
parent 34f6a30d20
commit 938821bc92

View file

@ -115,6 +115,7 @@ class LinuxPlatforms(SupportedPlatforms):
def __init__(self):
SupportedPlatforms.__init__(self, 'linux', [Architecture('x86_64', 64, '/usr/local'),
Architecture('i386', 32, '/usr/local'),
Architecture('i686', 32, '/usr/local'),
Architecture('aarch64', 64, '/usr/local'),
Architecture('armv7l', 32, '/usr/local'),
Architecture('armv6l', 32, '/usr/local')],
@ -141,8 +142,11 @@ class WindowsMingwPlatform(Platform):
class WindowsPlatforms(SupportedPlatforms):
def __init__(self):
SupportedPlatforms.__init__(self, 'windows',
[Architecture('x86_64', 64, '/mingw64'), Architecture('AMD64', 64, '/mingw64'),
Architecture('i386', 32, '/mingw32')], ['NSIS', 'ZIP'])
[Architecture('x86_64', 64, '/mingw64'),
Architecture('AMD64', 64, '/mingw64'),
Architecture('i386', 32, '/mingw32'),
Architecture('i686', 32, '/mingw32')],
['NSIS', 'ZIP'])
def make_platform_by_arch(self, arch, package_types) -> Platform:
return WindowsMingwPlatform(arch, package_types)