Private
Public Access
2
0

docs: add edison to doxygen doc and coverity instructions

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2014-10-03 19:00:45 +01:00
parent 6d5a3d796c
commit 60f2e639b2

View File

@@ -32,3 +32,18 @@ Using clang instead of gcc:
Building with an older version of swig (swig 2.0+) requires the disabling of javascript: Building with an older version of swig (swig 2.0+) requires the disabling of javascript:
-DBUILDSWIGNODE=OFF -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
~~~~~~~~~~~~~