Add detection code for powerpc64le.

Originally from:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1019413
pull/11478/head
Jussi Pakkanen 2 years ago
parent 38b6d6d61a
commit 5ccac0699f
  1. 4
      mesonbuild/scripts/env2mfile.py

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

Loading…
Cancel
Save