docs: add a list with available sanitizers (#10387)

It is not clear what sanitizers could be specified in `sanitizers` field
in project.yaml. Patch adds a list of available sanitizers to a "New
project guide".
This commit is contained in:
Sergey Bronnikov 2023-05-25 19:43:19 +03:00 committed by GitHub
parent 10473b7448
commit b352eb1b88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,8 @@ Any changes to this list must follow these rules:
- An organization email address is used.
### sanitizers (optional) {#sanitizers}
The list of sanitizers to use. If you don't specify a list, `sanitizers` uses a default list of supported
The list of sanitizers to use. Possible values are: `address`, `memory` and `undefined`.
If you don't specify a list, `sanitizers` uses a default list of supported
sanitizers (currently ["address"](https://clang.llvm.org/docs/AddressSanitizer.html) and
["undefined"](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html)).