mirror of
https://github.com/NixOS/nix.git
synced 2025-11-14 14:32:42 +01:00
Merge pull request #13514 from OPNA2608/fix/meson-powerpc-cpu-names
treewide: Fix Meson CPU names for powerpc CPUs
This commit is contained in:
commit
e2b0ff18f8
5 changed files with 17 additions and 2 deletions
|
|
@ -21,10 +21,12 @@ configdata_priv = configuration_data()
|
|||
# TODO rename, because it will conflict with downstream projects
|
||||
configdata_priv.set_quoted('PACKAGE_VERSION', meson.project_version())
|
||||
|
||||
subdir('nix-meson-build-support/default-system-cpu')
|
||||
|
||||
# Used in public header.
|
||||
configdata_pub.set_quoted(
|
||||
'NIX_LOCAL_SYSTEM',
|
||||
host_machine.cpu_family() + '-' + host_machine.system(),
|
||||
nix_system_cpu + '-' + host_machine.system(),
|
||||
description :
|
||||
'This is the system name Nix expects for local running instance of Nix.\n\n'
|
||||
+ 'See the "system" setting for additional details',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue