mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 11:36:03 +01:00
treewide: Fix Meson CPU names for powerpc CPUs
This commit is contained in:
parent
7e184bbc29
commit
6db6190002
5 changed files with 17 additions and 2 deletions
9
nix-meson-build-support/default-system-cpu/meson.build
Normal file
9
nix-meson-build-support/default-system-cpu/meson.build
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
nix_system_cpu = {
|
||||
'ppc64' : 'powerpc64',
|
||||
'ppc64le' : 'powerpc64le',
|
||||
'ppc' : 'powerpc',
|
||||
'ppcle' : 'powerpcle',
|
||||
}.get(
|
||||
host_machine.cpu_family(),
|
||||
host_machine.cpu_family(),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue