Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1.6 KiB
Nix
58 lines
1.6 KiB
Nix
{ stdenv, lib }:
|
|
|
|
let
|
|
inherit (lib) boolToString optionals;
|
|
|
|
# See https://mesonbuild.com/Reference-tables.html#cpu-families
|
|
cpuFamily =
|
|
platform:
|
|
with platform;
|
|
if isAarch32 then
|
|
"arm"
|
|
else if isx86_32 then
|
|
"x86"
|
|
else if isPower64 then
|
|
"ppc64"
|
|
else if isPower then
|
|
"ppc"
|
|
else
|
|
platform.uname.processor;
|
|
|
|
crossFile = builtins.toFile "cross-file.conf" ''
|
|
[properties]
|
|
bindgen_clang_arguments = ['-target', '${stdenv.targetPlatform.config}']
|
|
needs_exe_wrapper = ${boolToString (!stdenv.buildPlatform.canExecute stdenv.hostPlatform)}
|
|
|
|
[host_machine]
|
|
system = '${stdenv.targetPlatform.parsed.kernel.name}'
|
|
cpu_family = '${cpuFamily stdenv.targetPlatform}'
|
|
cpu = '${stdenv.targetPlatform.parsed.cpu.name}'
|
|
endian = ${if stdenv.targetPlatform.isLittleEndian then "'little'" else "'big'"}
|
|
|
|
[binaries]
|
|
llvm-config = 'llvm-config-native'
|
|
rust = ['rustc', '-C', 'target-feature=${
|
|
if stdenv.targetPlatform.isStatic then "+" else "-"
|
|
}crt-static', '--target', '${stdenv.targetPlatform.rust.rustcTargetSpec}']
|
|
# Meson refuses to consider any CMake binary during cross compilation if it's
|
|
# not explicitly specified here, in the cross file.
|
|
# https://github.com/mesonbuild/meson/blob/0ed78cf6fa6d87c0738f67ae43525e661b50a8a2/mesonbuild/cmake/executor.py#L72
|
|
cmake = 'cmake'
|
|
'';
|
|
|
|
crossFlags = optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
"--cross-file=${crossFile}"
|
|
];
|
|
|
|
makeMesonFlags =
|
|
{
|
|
mesonFlags ? [ ],
|
|
...
|
|
}:
|
|
crossFlags ++ mesonFlags;
|
|
|
|
in
|
|
{
|
|
inherit makeMesonFlags;
|
|
}
|