mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
10 lines
312 B
Meson
10 lines
312 B
Meson
powerpc_system_cpus = [ 'ppc64', 'ppc' ]
|
|
|
|
nix_system_cpu = {'ppc64' : 'powerpc64', 'ppc' : 'powerpc', 'x86' : 'i686'}.get(
|
|
host_machine.cpu_family(),
|
|
host_machine.cpu_family(),
|
|
)
|
|
|
|
if powerpc_system_cpus.contains(host_machine.cpu_family()) and host_machine.endian() == 'little'
|
|
nix_system_cpu += 'le'
|
|
endif
|