Commit 0eebff6c authored by Emily's avatar Emily
Browse files

tracee: unpin LLVM

parent e82363bc
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
  buildGoModule,
  fetchFromGitHub,

  clang_14,
  clang,
  pkg-config,

  elfutils,
@@ -37,10 +37,13 @@ buildGoModule rec {

  enableParallelBuilding = true;
  # needed to build bpf libs
  hardeningDisable = [ "stackprotector" ];
  hardeningDisable = [
    "stackprotector"
    "zerocallusedregs"
  ];

  nativeBuildInputs = [
    clang_14
    clang
    pkg-config
  ];
  buildInputs = [