architecture/subsystems
This commit is contained in:
parent
27ce3ca25c
commit
1857f0e1b0
2 changed files with 7 additions and 13 deletions
12
msys.py
12
msys.py
|
@ -16,15 +16,3 @@ ARCHITECTURES_SUBSYSTEMS = {
|
|||
'i686': [SUBSYSTEM, 'clang32', 'mingw32'],
|
||||
}
|
||||
SUBSYSTEMS = [SUBSYSTEM, 'clang', 'mingw', 'ucrt']
|
||||
|
||||
|
||||
def get_subsystems(architecture, families):
|
||||
list = []
|
||||
for family in families:
|
||||
if family == SUBSYSTEM:
|
||||
subsystem = family
|
||||
else:
|
||||
subsystem = f'{family}{architecture.bits}'
|
||||
if subsystem in ARCHITECTURES_SUBSYSTEMS[architecture.name]:
|
||||
list.append(subsystem)
|
||||
return list
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue