Skip to content

Commit ee9dfab

Browse files
authored
fix
1 parent 9762e27 commit ee9dfab

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lessons/04/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
3434

3535
Compile the fuzzer in the following way:
3636
```bash
37-
clang++ -g -std=c++11 -fsanitize=address -fsanitize-coverage=trace-pc-guard \
38-
first_fuzzer.cc ../../libFuzzer/libFuzzer.a \
39-
-o first_fuzzer
37+
clang++ -g -std=c++11 -fsanitize=address,fuzzer -o first_fuzzer
4038
```
4139

4240
Create an empty directory for corpus and run the fuzzer:

0 commit comments

Comments
 (0)