architecture
This commit is contained in:
parent
68c15d9c39
commit
f2a7490652
3 changed files with 5 additions and 4 deletions
|
@ -4,8 +4,10 @@ import arguments
|
|||
import distribution
|
||||
import subsystem
|
||||
|
||||
MAIN = 'x86_64'
|
||||
|
||||
ARCHITECTURES = {
|
||||
'x86_64': (64, [subsystem.MAIN, 'clang64', 'mingw64', 'ucrt64']),
|
||||
MAIN: (64, [subsystem.MAIN, 'clang64', 'mingw64', 'ucrt64']),
|
||||
'i686': (32, [subsystem.MAIN, 'clang32', 'mingw32']),
|
||||
}
|
||||
|
||||
|
|
|
@ -76,7 +76,7 @@ compression applying to archive
|
|||
action='info',
|
||||
|
||||
remote=msys.REPOSITORY,
|
||||
architectures=[msys.ARCHITECTURE],
|
||||
architectures=[architecture.MAIN],
|
||||
subsystems=[subsystem.MAIN, 'mingw'],
|
||||
|
||||
filesystem='fs',
|
||||
|
|
1
msys.py
1
msys.py
|
@ -1,5 +1,4 @@
|
|||
ARCHIVE = '.tar.xz'
|
||||
ARCHITECTURE = 'x86_64'
|
||||
CATALOG = '.files'
|
||||
CHARSET = 'u8'
|
||||
REPOSITORY = 'https://repo.msys2.org'
|
||||
|
|
Loading…
Reference in a new issue