summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAnton Luka Šijanec <anton@sijanec.eu>2021-09-25 22:01:43 +0200
committerAnton Luka Šijanec <anton@sijanec.eu>2021-09-25 22:01:43 +0200
commit93c741b938af10a81fbd55cf827456805bcf519a (patch)
tree5fa7e6b80eb5652af1a24adaca66c9f62d81cfc8 /README.md
parentfixed roles (diff)
downloaddiscord.c-93c741b938af10a81fbd55cf827456805bcf519a.tar
discord.c-93c741b938af10a81fbd55cf827456805bcf519a.tar.gz
discord.c-93c741b938af10a81fbd55cf827456805bcf519a.tar.bz2
discord.c-93c741b938af10a81fbd55cf827456805bcf519a.tar.lz
discord.c-93c741b938af10a81fbd55cf827456805bcf519a.tar.xz
discord.c-93c741b938af10a81fbd55cf827456805bcf519a.tar.zst
discord.c-93c741b938af10a81fbd55cf827456805bcf519a.zip
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5ea70a4..36647f4 100644
--- a/README.md
+++ b/README.md
@@ -88,3 +88,4 @@ it would be useful to have an android port, and luckily this is possible with li
* optimization is always 0, binaries always have debug symbols
* `make -e CC=gcc` to choose a compiler instead of `cc`.
* `make -e CC="clang -fsanitize=address" && ASAN_OPTIONS=detect_leaks=1` to use `clang` leak checker
+* `scan-build make` to staticly analyze build with `clang` (`clang-tools` package required). `gcc`'s `-fanalyze` can't be used without many false positives, because the code is not written so pedantically (without `__attribute__`s on function arguments, return values, ...).