On 200120 0055, Bulekov, Alexander wrote: > +if test "$fuzzing" = "yes" ; then > + if test "$have_fuzzer" = "yes"; then > + FUZZ_LDFLAGS=" -fsanitize=address,fuzzer" > + FUZZ_CFLAGS=" -fsanitize=address,fuzzer" > + CFLAGS=" -fsanitize=address,fuzzer"
This will fail when build standard qemu-system targets with ./configure --enable-fuzzing Instead it should be: CFLAGS=" -fsanitize=address,fuzzer-no-link" -Alex