aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-09-29 22:12:56 +0200
committerRiccardo Spagni <ric@spagni.net>2018-09-29 22:20:03 +0200
commit365a9d0c09684e13da7dd36e1258ecd65e964c4c (patch)
tree625d9671a142d7bc9be6fe9568290943ba9890ca
parentMerge pull request #4427 (diff)
downloadmonero-365a9d0c09684e13da7dd36e1258ecd65e964c4c.tar.xz
Merge pull request #4434
89288863 README: mention ASAN usage alongside valgrind (moneromooo-monero)
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index ac40f08d3..d16b21528 100644
--- a/README.md
+++ b/README.md
@@ -666,9 +666,19 @@ Type `run` to run monerod
### Analysing memory corruption
-We use the tool `valgrind` for this.
+There are two tools available:
-Run with `valgrind /path/to/monerod`. It will be slow.
+* ASAN
+
+Configure Monero with the -D SANITIZE=ON cmake flag, eg:
+
+ cd build/debug && cmake -D SANITIZE=ON -D CMAKE_BUILD_TYPE=Debug ../..
+
+You can then run the monero tools normally. Performance will typically halve.
+
+* valgrind
+
+Install valgrind and run as `valgrind /path/to/monerod`. It will be very slow.
### LMDB