architecture

This commit is contained in:
Marc Beninca 2021-10-10 20:11:36 +02:00 committed by Marc Beninca
parent 68c15d9c39
commit f2a7490652
3 changed files with 5 additions and 4 deletions

View file

@ -4,9 +4,11 @@ import arguments
import distribution
import subsystem
MAIN = 'x86_64'
ARCHITECTURES = {
'x86_64': (64, [subsystem.MAIN, 'clang64', 'mingw64', 'ucrt64']),
'i686': (32, [subsystem.MAIN, 'clang32', 'mingw32']),
MAIN: (64, [subsystem.MAIN, 'clang64', 'mingw64', 'ucrt64']),
'i686': (32, [subsystem.MAIN, 'clang32', 'mingw32']),
}