blob: ce928838afa2e511b48e4b308ffb5035bc8eedf6 [file] [log] [blame]
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -07002
Alexander Afanasyev984ca9d2016-12-19 13:09:14 -08003from waflib import TaskGen, Logs
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -07004
5def options(opt):
6 opt.add_option('--with-coverage', action='store_true', default=False, dest='with_coverage',
7 help='''Set compiler flags for gcc to enable code coverage information''')
8
9def configure(conf):
10 if conf.options.with_coverage:
Alexander Afanasyev984ca9d2016-12-19 13:09:14 -080011 if not conf.options.debug:
12 conf.fatal("Code coverage flags require debug mode compilation (add --debug)")
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070013 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'