Skip to content

Commit

Permalink
Update docks
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Apr 28, 2023
1 parent 7a3993f commit f3c99c5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/guides/BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Example build commands:
/scripts/build/build_examples.py --target linux-x64-tests build

# Compiles fuzzing tagets using libfuzzer (fuzzing requires clang)
/scripts/build/build_examples.py --target linux-x64-tests-clang-libfuzzer build
/scripts/build/build_examples.py --target linux-x64-tests-clang-asan-libfuzzer build

# Compiles a esp32 example
./scripts/build/build_examples.py --target esp32-m5stack-all-clusters build
Expand All @@ -279,16 +279,17 @@ Example build commands:
### Fuzzing tests
Fuzzing tests are only compiled but not executed (you have to manually execute
them).
them). For best error detection, some form of sanitizer like `asan` should
be used.
To compile, use:
```
./scripts/build/build_examples.py --target linux-x64-tests-clang-libfuzzer build
./scripts/build/build_examples.py --target linux-x64-tests-clang-asan-libfuzzer build
```
After which tests should be located in
`out/linux-x64-tests-clang-libfuzzer/tests/`.
`out/linux-x64-tests-clang-asan-libfuzzer/tests/`.
## Build custom configuration
Expand Down

0 comments on commit f3c99c5

Please sign in to comment.