Skip to content

Commit 18d5f3c

Browse files
committed
add compiler support notes for sanitizers to docs
1 parent 508ddfd commit 18d5f3c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

website/docs/sanitize.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ sanitize { "value_list" }
88

99
`value_list` specifies the desired `fsanitize` options to enable.
1010

11-
| Value | Description |
12-
|-------------|--------------------------------------------------------|
13-
| Address | Enables compiler support for AddressSanitizer. | Visual Studio support starts with 2019 16.9 |
14-
| Fuzzer | Enables support for LibFuzzer, a coverage-guided fuzzing library. | Visual Studio support starts with 2019 16.9 |
15-
| Thread | Enables compiler support for ThreadSanitizer. |
16-
| Undefined | Enables compiler support for UndefinedBehaviorSanitizer (UBSan). |
11+
| Value | Description | Notes |
12+
|-------------------|--------------------------------------------------------|---|
13+
| Address | Enables compiler support for AddressSanitizer (ASan). | Visual Studio support starts with 2019 16.9 |
14+
| Fuzzer | Enables support for LibFuzzer, a coverage-guided fuzzing library. | Unsupported with GCC. Visual Studio support starts with 2019 16.9 |
15+
| Thread | Enables compiler support for ThreadSanitizer (TSan). | GCC & Clang only |
16+
| UndefinedBehavior | Enables compiler support for UndefinedBehaviorSanitizer (UBSan). | GCC & Clang only |
1717

1818
### Applies To ###
1919

0 commit comments

Comments
 (0)