constants: add QEMU_ARCHES

This commit is contained in:
InsanePrawn 2022-08-26 22:54:30 +02:00
parent 1837069981
commit 2a46e9b361
2 changed files with 19 additions and 5 deletions

View file

@ -162,6 +162,12 @@ CFLAGS_ARCHES: dict[Arch, list[str]] = {
] + CFLAGS_ALARM,
}
QEMU_ARCHES: dict[Arch, str] = {
'x86_64': 'x86_64',
'aarch64': 'aarch64',
'armv7h': 'arm',
}
QEMU_BINFMT_PKGS = ['qemu-user-static-bin', 'binfmt-qemu-static']
CROSSDIRECT_PKGS = ['crossdirect'] + QEMU_BINFMT_PKGS