Fix ppc64 detection in Debian.
Original patch by Helmut Grohne. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1023744
This commit is contained in:
parent
69dae6395d
commit
318579b367
|
@ -130,7 +130,9 @@ def get_args_from_envvars(infos: MachineInfo) -> None:
|
|||
cpu_family_map = dict(mips64el="mips64",
|
||||
i686='x86')
|
||||
cpu_map = dict(armhf="arm7hlf",
|
||||
mips64el="mips64",)
|
||||
mips64el="mips64",
|
||||
powerpc64le="ppc64",
|
||||
)
|
||||
|
||||
def deb_compiler_lookup(infos: MachineInfo, compilerstems: T.List[T.Tuple[str, str]], host_arch: str, gccsuffix: str) -> None:
|
||||
for langname, stem in compilerstems:
|
||||
|
|
Loading…
Reference in New Issue