mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
9 lines
186 B
Meson
9 lines
186 B
Meson
nix_system_cpu = {
|
|
'ppc64' : 'powerpc64',
|
|
'ppc64le' : 'powerpc64le',
|
|
'ppc' : 'powerpc',
|
|
'ppcle' : 'powerpcle',
|
|
}.get(
|
|
host_machine.cpu_family(),
|
|
host_machine.cpu_family(),
|
|
)
|