This commit is contained in:
Marc Beninca 2021-10-10 15:46:37 +02:00 committed by Marc Beninca
parent bb230e0c6d
commit 7033a6189e
3 changed files with 3 additions and 1 deletions

View file

@ -20,6 +20,7 @@ class Architecture:
]
return os.linesep.join(lines)
ARCHITECTURES = {
X86: Architecture(X86, 64),
I86: Architecture(I86, 32),

View file

@ -82,6 +82,7 @@ compression applying to archive
return vars(parser.parse_args())
D = parse()
architectures = D[ARCHITECTURES]

View file

@ -6,7 +6,7 @@ FAMILIES = [MAIN, 'clang', 'mingw', 'ucrt']
class SubSystem:
def __init__(self, architecture):
def __init__(self, architecture, name):
self.architecture = architecture
self.name = name