Add detection code for powerpc64le.

Originally from:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1019413
This commit is contained in:
Jussi Pakkanen 2023-02-26 22:41:18 +02:00
parent 38b6d6d61a
commit 5ccac0699f
1 changed files with 3 additions and 1 deletions

View File

@ -135,9 +135,11 @@ deb_cpu_family_map = {
'mips64el': 'mips64', 'mips64el': 'mips64',
'i686': 'x86', 'i686': 'x86',
} }
deb_cpu_map = { deb_cpu_map = {
'armhf': 'arm7hlf', 'armhf': 'arm7hlf',
'mips64el': 'mips64' 'mips64el': 'mips64',
'powerpc64le': 'ppc64',
} }
def deb_detect_cmake(infos: MachineInfo, data: T.Dict[str, str]) -> None: def deb_detect_cmake(infos: MachineInfo, data: T.Dict[str, str]) -> None: