mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
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:
parent
c09962fb2c
commit
e1fc929879
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user