bcc/bpftrace: use llvm14

the default llvm on linux is llvm11, which works but is old and has some deprecation
warnings when building bcc (and possibly some features disabled for bpftrace).

Just use the latest current version
This commit is contained in:
Dominique Martinet 2022-08-31 15:44:35 +09:00
parent c09962fb2c
commit e1fc929879

View File

@ -16751,12 +16751,14 @@ with pkgs;
bpftools = callPackage ../os-specific/linux/bpftools { };
bcc = callPackage ../os-specific/linux/bcc {
python = pkgs.python3;
python = python3;
libbpf = libbpf_1;
llvmPackages = llvmPackages_14;
};
bpftrace = callPackage ../os-specific/linux/bpftrace {
libbpf = libbpf_1
libbpf = libbpf_1;
llvmPackages = llvmPackages_14;
};
bpm-tools = callPackage ../tools/audio/bpm-tools { };