From 60f2e639b23b03cb0c2db08009dbf7edac11371c Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Fri, 3 Oct 2014 19:00:45 +0100 Subject: [PATCH] docs: add edison to doxygen doc and coverity instructions Signed-off-by: Brendan Le Foll --- docs/building.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/building.md b/docs/building.md index 1b9dadb..17ae8f2 100644 --- a/docs/building.md +++ b/docs/building.md @@ -32,3 +32,18 @@ Using clang instead of gcc: Building with an older version of swig (swig 2.0+) requires the disabling of javascript: -DBUILDSWIGNODE=OFF + +Using coverity +-------------- + +Static analysis is routinely performed using coverity on libmraa's codebase. +This is the procedure to submit a build to coverity. You'll need to install +coverity-submit for your OS. + +~~~~~~~~~~~~~{.sh} +mkdir covbuild/ && cd covbuild +cmake -DBUILDDOC=OFF -DBUILDSWIG=OFF .. +cmake -DBUILDDOC=OFF -DBUILDSWIG=OFF .. +cov-build --dir cov-int make +tar caf mraa.tar..bz2 cov-int +~~~~~~~~~~~~~ -- 2.7.4