lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

stdenv: add llvm-config to meson cross file

This is e.g. required to get mesa cross-compiling, but is useful for everyone depending on libllvm

+3
+3
pkgs/stdenv/generic/make-derivation.nix
··· 305 305 cpu_family = '${cpuFamily stdenv.targetPlatform}' 306 306 cpu = '${stdenv.targetPlatform.parsed.cpu.name}' 307 307 endian = ${if stdenv.targetPlatform.isLittleEndian then "'little'" else "'big'"} 308 + 309 + [binaries] 310 + llvm-config = 'llvm-config-native' 308 311 ''; 309 312 in [ "--cross-file=${crossFile}" ] ++ mesonFlags; 310 313 } // lib.optionalAttrs (attrs.enableParallelBuilding or false) {