honggfuzz: Use LLVM 12

Using LLVM 11 results in broken binaries generated by hfuzz-clang,
crashing with error:
UndefinedBehaviorSanitizer failed to allocate 0x0 (0) bytes of SetAlternateSignalStack

Fixes #174118
This commit is contained in:
Hubert Jasudowicz 2022-05-23 18:52:22 +02:00
parent d9c647d7d8
commit 924139096a

View file

@ -1047,7 +1047,10 @@ with pkgs;
stdenv = clangStdenv;
};
honggfuzz = callPackage ../tools/security/honggfuzz { };
honggfuzz = callPackage ../tools/security/honggfuzz {
clang = clang_12;
llvm = llvm_12;
};
aflplusplus = callPackage ../tools/security/aflplusplus {
clang = clang_9;