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,8 +4,10 @@ import arguments
import distribution import distribution
import subsystem import subsystem
MAIN = 'x86_64'
ARCHITECTURES = { ARCHITECTURES = {
'x86_64': (64, [subsystem.MAIN, 'clang64', 'mingw64', 'ucrt64']), MAIN: (64, [subsystem.MAIN, 'clang64', 'mingw64', 'ucrt64']),
'i686': (32, [subsystem.MAIN, 'clang32', 'mingw32']), 'i686': (32, [subsystem.MAIN, 'clang32', 'mingw32']),
} }

View file

@ -76,7 +76,7 @@ compression applying to archive
action='info', action='info',
remote=msys.REPOSITORY, remote=msys.REPOSITORY,
architectures=[msys.ARCHITECTURE], architectures=[architecture.MAIN],
subsystems=[subsystem.MAIN, 'mingw'], subsystems=[subsystem.MAIN, 'mingw'],
filesystem='fs', filesystem='fs',

View file

@ -1,5 +1,4 @@
ARCHIVE = '.tar.xz' ARCHIVE = '.tar.xz'
ARCHITECTURE = 'x86_64'
CATALOG = '.files' CATALOG = '.files'
CHARSET = 'u8' CHARSET = 'u8'
REPOSITORY = 'https://repo.msys2.org' REPOSITORY = 'https://repo.msys2.org'