Displaying 2 results from an estimated 2 matches for "ffuzzer".
Did you mean:
fuzzer
2017 Apr 26
2
LibFuzzer syntax sugar flag
...ave introduced a short syntactic sugar flag for compiling a file with libfuzzer:
one just needs to add “-fsanitize=fuzzer” to the command line, and the driver would specify
coverage flags and link with libfuzzer automatically.
I wanted to ask whether it would make more sense to rename the flag to “-ffuzzer”,
as it’s not a sanitizer, and it has a much heavier effect.
Thanks,
George
2017 Apr 28
2
LibFuzzer syntax sugar flag
...gt;
> on the one hand, -fsanitize=fuzzer might indeed be confusing as it behaves in somewhat different way compared to other sanitizers
> Major difference: links in a library with main()
> On the other hand, I like "-fsanitize=fuzzer,address" more than "-fsanitize=address -ffuzzer"
>
> --kcc
>
> On Tue, Apr 25, 2017 at 5:02 PM, George Karpenkov <ekarpenkov at apple.com <mailto:ekarpenkov at apple.com>> wrote:
> Hi All,
>
> Recently we have introduced a short syntactic sugar flag for compiling a file with libfuzzer:
> one just need...