blob: c7b4c2c6bce698a1b0124330c3b5314f5c4f1938 [file] [log] [blame]
Yingdi Yu0b0a7362014-08-05 16:31:30 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3from waflib import Logs, Configure
4
5def options(opt):
6 opt.add_option('--debug', '--with-debug', action='store_true', default=False, dest='debug',
Yingdi Yu6a614442014-10-31 17:42:43 -07007 help='''Compile in debugging mode without optimizations (-O0 or -Og)''')
Yingdi Yu0b0a7362014-08-05 16:31:30 -07008
9def configure(conf):
10 areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
Varun Patil3d850902020-11-23 12:19:14 +053011 defaultFlags = ['-std=c++14',
12 '-Wall']
Yingdi Yu0b0a7362014-08-05 16:31:30 -070013
14 if conf.options.debug:
15 conf.define('_DEBUG', 1)
16 conf.env['_DEBUG'] = 1
17 defaultFlags += ['-O0',
18 '-Og', # gcc >= 4.8
19 '-g3',
20 '-fcolor-diagnostics', # clang
21 '-fdiagnostics-color', # gcc >= 4.9
22 '-Werror',
23 '-Wno-unused-variable',
24 '-Wno-error=deprecated-register',
25 '-Wno-error=maybe-uninitialized', # Bug #1615
Yingdi Yu6a614442014-10-31 17:42:43 -070026 '-Wno-error=unneeded-internal-declaration', # Bug #1588
Yingdi Yu0b0a7362014-08-05 16:31:30 -070027 ]
28 if areCustomCxxflagsPresent:
29 missingFlags = [x for x in defaultFlags if x not in conf.env.CXXFLAGS]
30 if len(missingFlags) > 0:
31 Logs.warn("Selected debug mode, but CXXFLAGS is set to a custom value '%s'"
32 % " ".join(conf.env.CXXFLAGS))
33 Logs.warn("Default flags '%s' are not activated" % " ".join(missingFlags))
34 else:
35 conf.add_supported_cxxflags(defaultFlags)
36 else:
37 defaultFlags += ['-O2', '-g']
38 if not areCustomCxxflagsPresent:
39 conf.add_supported_cxxflags(defaultFlags)
40
Yingdi Yu6a614442014-10-31 17:42:43 -070041 # clang on OSX < 10.9 by default uses gcc's libstdc++, which is not C++11 compatible
42 conf.add_supported_linkflags(['-stdlib=libc++'])
43
Yingdi Yu0b0a7362014-08-05 16:31:30 -070044@Configure.conf
45def add_supported_cxxflags(self, cxxflags):
46 """
47 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
48 """
Yingdi Yu6a614442014-10-31 17:42:43 -070049 self.start_msg('Checking supported CXXFLAGS')
Yingdi Yu0b0a7362014-08-05 16:31:30 -070050
51 supportedFlags = []
52 for flag in cxxflags:
53 if self.check_cxx(cxxflags=['-Werror', flag], mandatory=False):
54 supportedFlags += [flag]
55
56 self.end_msg(' '.join(supportedFlags))
57 self.env.CXXFLAGS = supportedFlags + self.env.CXXFLAGS
Yingdi Yu6a614442014-10-31 17:42:43 -070058
59@Configure.conf
60def add_supported_linkflags(self, linkflags):
61 """
62 Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable
63 """
64 self.start_msg('Checking supported LINKFLAGS')
65
66 supportedFlags = []
67 for flag in linkflags:
68 if self.check_cxx(linkflags=['-Werror', flag], mandatory=False):
69 supportedFlags += [flag]
70
71 self.end_msg(' '.join(supportedFlags))
72 self.env.LINKFLAGS = supportedFlags + self.env.LINKFLAGS