Add detection code for powerpc64le.
Originally from: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1019413
This commit is contained in:
parent
38b6d6d61a
commit
5ccac0699f
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue