1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
Building Kcov
=============
You need development headers and libraries for libstdc++ and elfutils to build
kcov.
Create an empty build dir and do the following steps:
cmake [options] <path/to/kcov/source/dir>
make
make install
Useful options include -DCMAKE_INSTALL_PREFIX=<path> (installation prefix),
-DCMAKE_BUILD_TYPE=<type> and -DCMAKE_C_FLAGS=<CFLAGS>.
Basic example:
cd /path/to/kcov/source/dir
mkdir build
cd build
cmake ..
make
make install
More advanced example:
cd /path/to/kcov/source/dir
mkdir build
cd build
cmake \
-DCMAKE_C_FLAGS:STRING="-O3 -march=i686" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
..
make -j2 || exit 1
make install DESTDIR=/tmp/kcov-build || exit 1
For further information refer to cmake documentation:
http://www.cmake.org/cmake/help/cmake-2-8-docs.html.
Troubleshooting
===============
If you have elfutils installed, but cmake fails to find it, specify elfutils
install prefix explicitly to cmake. Here is an example:
cd kcov
CMAKE_PREFIX_PATH=/opt/elfutils-dir/ \
cmake .
make
make install
|