diff options
| author | Marco Trevisan (TreviƱo) <mail@3v1n0.net> | 2022-06-02 02:57:23 +0200 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2022-06-06 09:40:14 -0700 |
| commit | 29c26d5b26397eaa3606d22d71309ecd1eb6b223 (patch) | |
| tree | e9aa3fb6d0ee9491a276b861f504ac3c07db445b /docs/markdown/Configuring-a-build-directory.md | |
| parent | 3e2dba5b7cd107f60474b3cb01c307a9e2354868 (diff) | |
| download | meson-29c26d5b26397eaa3606d22d71309ecd1eb6b223.tar.gz | |
compilers: Add support for stand-alone leak sanitizer
Leak sanitizer can be enabled without the whole AddressSanitizer, this
can be done by passing -fsanitize=leak as documented at [1].
Meson doesn't support this, so add support for it.
[1] https://clang.llvm.org/docs/LeakSanitizer.html
Diffstat (limited to 'docs/markdown/Configuring-a-build-directory.md')
| -rw-r--r-- | docs/markdown/Configuring-a-build-directory.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Configuring-a-build-directory.md b/docs/markdown/Configuring-a-build-directory.md index 34bde4d99..37080eff7 100644 --- a/docs/markdown/Configuring-a-build-directory.md +++ b/docs/markdown/Configuring-a-build-directory.md @@ -53,7 +53,7 @@ a sample output for a simple project. b_ndebug false [true, false, if-release] Disable asserts b_pch true [true, false] Use precompiled headers b_pgo off [off, generate, use] Use profile guided optimization - b_sanitize none [none, address, thread, undefined, memory, address,undefined] Code sanitizer to use + b_sanitize none [none, address, thread, undefined, leak, memory, address,undefined] Code sanitizer to use b_staticpic true [true, false] Build static libraries as position independent Compiler options: |
