blob: cc5816500a9542b2f2ffeaee7e5094556db503fc [file] [log] [blame]
Yingdi Yu40cd1c32014-04-17 15:02:17 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Yingdi Yu40cd1c32014-04-17 15:02:17 -07002
Alexander Afanasyev67758b12018-03-06 18:36:44 -05003from waflib import TaskGen
Yingdi Yu40cd1c32014-04-17 15:02:17 -07004
5def options(opt):
Alexander Afanasyev67758b12018-03-06 18:36:44 -05006 opt.add_option('--with-coverage', action='store_true', default=False,
7 help='Add compiler flags to enable code coverage information')
Yingdi Yu40cd1c32014-04-17 15:02:17 -07008
9def configure(conf):
10 if conf.options.with_coverage:
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040011 if not conf.options.debug:
Alexander Afanasyev67758b12018-03-06 18:36:44 -050012 conf.fatal('Code coverage flags require debug mode compilation (add --debug)')
Yingdi Yu40cd1c32014-04-17 15:02:17 -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'