blob: 337a306feefbc19f70b3fe563821bb81d5b37194 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
pkgs,
lib,
config,
inputs,
...
}: {
imports = [];
config = {
nix.binaryCaches = [
"https://cache.nixos.org/"
"https://cache.allvm.org/"
];
nix.binaryCachePublicKeys = [
"gravity.cs.illinois.edu-1:yymmNS/WMf0iTj2NnD0nrVV8cBOXM9ivAkEdO1Lro3U="
];
nativeStdenv =
prev.stdenvAdapters.withCFlags ["-O3" "-pipe" "-march=native"]
(prev.overrideCC prev.llvmPackages_latest.stdenv
(prev.wrapCCWith rec {
cc = prev.llvmPackages_latest.clang-unwrapped;
bintools = final.wrapBintoolsWith {
coreutils = final.uutils-coreutils;
libc = final.musl;
bintools =
final.binutils-unwrapped.overrideAttrs
(old: {
postInstall = ''
ln -sf ${final.mold}/bin/mold $out/bin/ld
'';
});
};
}));
};
}
|