summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2018-02-27 18:09:54 +0100
committerMinijackson <minijackson@riseup.net>2018-02-27 18:09:54 +0100
commit80c0d0d044b6cc39f93d158eb1ea84eeb5854b84 (patch)
tree0eae590e1bd6882f1d8a8b1b935d96f2c51b00dd
parent42d0b10e7c22bfbcae00cb6f9176775de1c561ad (diff)
downloadkube-sanitizing.tar.gz
kube-sanitizing.zip
Document sanitizer support feature + typosanitizing
-rw-r--r--docs/setting-up-dev-env.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/setting-up-dev-env.md b/docs/setting-up-dev-env.md
index 82d823bf..b11f69ee 100644
--- a/docs/setting-up-dev-env.md
+++ b/docs/setting-up-dev-env.md
@@ -7,7 +7,7 @@ Multiple choices are available for developing the Kube project:
7 7
8## Manually 8## Manually
9 9
10- If sink is not in you repositories: 10- If sink is not in your repositories:
11 - Install the dependencies of Sink: 11 - Install the dependencies of Sink:
12 - extra-cmake-modules 12 - extra-cmake-modules
13 - qt5-qtbase-devel / qtbase5-dev 13 - qt5-qtbase-devel / qtbase5-dev
@@ -22,6 +22,10 @@ Multiple choices are available for developing the Kube project:
22- Install the Kube project: 22- Install the Kube project:
23 - `mkdir build && cd build && cmake .. && make && sudo make install` 23 - `mkdir build && cd build && cmake .. && make && sudo make install`
24 24
25You can also set the `SANITIZE_ADDRESS`, `SANITIZE_MEMORY`, `SANITIZE_THREAD`
26and/or `SANITIZE_UNDEFINED` cmake options to build the executables with the
27corresponding sanitizer(s) support.
28
25If you did not install sink in the `/usr` directory, you might need to set the 29If you did not install sink in the `/usr` directory, you might need to set the
26`QT_PLUGIN_PATH` variable to something like this: 30`QT_PLUGIN_PATH` variable to something like this:
27`$SINK_INSTALL_PREFIX/lib/plugins`. 31`$SINK_INSTALL_PREFIX/lib/plugins`.