Fix coverage test documentation to reflect changes required to support clang

This commit is contained in:
Jeremy Lakeman 2014-06-16 16:11:11 +09:30
parent 80e139c2d9
commit e375e17faa

View File

@ -173,11 +173,11 @@ aggregate coverage analysis can easily be generated with no special options to
test scripts. test scripts.
To generate code coverage information for [Serval DNA][], modify the standard To generate code coverage information for [Serval DNA][], modify the standard
[build](../INSTALL.md) procedure by adding a CFLAGS argument to the [build](../INSTALL.md) procedure by adding CFLAGS and LDFLAGS arguments to the
`./configure` step: `./configure` step:
... ...
$ ./configure CFLAGS='-g -O0 --coverage' $ ./configure CFLAGS='-g -O0 --coverage' LDFLAGS='--coverage'
$ make $ make
... ...