blob: ce928838afa2e511b48e4b308ffb5035bc8eedf6 [file] [log] [blame]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
Alexander Afanasyev4c32e742014-11-09 21:37:12 -08003from waflib import TaskGen, Logs
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -08004
5def options(opt):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -07006 opt.add_option('--with-coverage', action='store_true', default=False, dest='with_coverage',
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -08007 help='''Set compiler flags for gcc to enable code coverage information''')
8
9def configure(conf):
10 if conf.options.with_coverage:
Alexander Afanasyev4c32e742014-11-09 21:37:12 -080011 if not conf.options.debug:
12 conf.fatal("Code coverage flags require debug mode compilation (add --debug)")
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080013 conf.check_cxx(cxxflags=['-fprofile-arcs', '-ftest-coverage', '-fPIC'],
14 linkflags=['-fprofile-arcs'], uselib_store='GCOV', mandatory=True)
15
16@TaskGen.feature('cxx','cc')
17@TaskGen.after('process_source')
18def add_coverage(self):
19 if getattr(self, 'use', ''):
20 self.use += ' GCOV'
21 else:
22 self.use = 'GCOV'