From 5f13dae607dba1d79d42f1c591f4c7f68fdfc0e0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 4 Oct 2015 17:45:23 +0000 Subject: Add option to avoid gcov git-svn-id: http://svn.drobilla.net/serd/trunk@495 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- wscript | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 7c0458a5..75ccf429 100644 --- a/wscript +++ b/wscript @@ -27,6 +27,8 @@ def options(opt): help='Do not build command line utilities') opt.add_option('--test', action='store_true', dest='build_tests', help='Build unit tests') + opt.add_option('--no-coverage', action='store_true', dest='no_coverage', + help='Do not use gcov for code coverage') opt.add_option('--stack-check', action='store_true', dest='stack_check', help='Include runtime stack sanity checks') opt.add_option('--static', action='store_true', dest='static', @@ -62,10 +64,8 @@ def configure(conf): if Options.options.largefile: conf.env.append_unique('DEFINES', ['_FILE_OFFSET_BITS=64']) - if conf.env.BUILD_TESTS: - conf.check(lib = 'gcov', - define_name = 'HAVE_GCOV', - mandatory = False) + if conf.env.BUILD_TESTS and not Options.options.no_coverage: + conf.check_cc(lib='gcov', define_name='HAVE_GCOV', mandatory=False) if not Options.options.no_posix: conf.check(function_name = 'posix_memalign', -- cgit v1.2.1