Skip to content

Commit d2c3f14

Browse files
evverxmrc0mmand
authored andcommitted
meson: make it compatible with AFL and honggfuzz again
afl-clang and hufzz-clang try to instrument the code and the underlying compilers don't like it. It should probably be fixed in both afl and honggfuzz eventually but until then let's just use "raw" clang to build bpf-skeletons. It's a follow-up to #21607
1 parent a9cab9f commit d2c3f14

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

meson.build

+3
Original file line numberDiff line numberDiff line change
@@ -997,6 +997,9 @@ else
997997
# Support 'versioned' clang/llvm-strip binaries, as seen on Debian/Ubuntu
998998
# (like clang-10/llvm-strip-10)
999999
clang_bin = cc.get_id() == 'clang' ? cc.cmd_array()[0] : 'clang'
1000+
if clang_bin.contains('afl-clang') or clang_bin.contains('hfuzz-clang')
1001+
clang_bin = 'clang'
1002+
endif
10001003
clang = find_program(clang_bin, required : bpf_framework_required)
10011004
if clang.found()
10021005
llvm_strip_bin = run_command(clang, '--print-prog-name', 'llvm-strip',

0 commit comments

Comments
 (0)