citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 8ab1ffcd45d13cab4915d752a2d10c9c65944c2e
parent d0230d706e370f17717c4f4e5377d6d0d3bd6e86
Author: Kyle Milz <kyle@0x30.net>
Date:   Thu,  4 Aug 2016 19:51:41 -0600

bin: first crack at gcov script

Diffstat:
Abin/gcov.sh | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/bin/gcov.sh b/bin/gcov.sh @@ -0,0 +1,6 @@ +#!/bin/sh -e + +export COVERAGE=1 +CFLAGS="-coverage -O0 -ggdb" jam -j4 +gcov -o lib lib/runtime.c +egcov -r src/*.cc