blob: 9316900c82251d9ae7913dc8912246865df407cb [file] [log] [blame]
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07002
Alexander Afanasyev01515792014-12-16 14:20:01 -08003from waflib import Logs, Configure, Utils
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07004
5def options(opt):
6 opt.add_option('--debug', '--with-debug', action='store_true', default=False, dest='debug',
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +02007 help='''Compile in debugging mode without optimizations (-O0 or -Og)''')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07008
9def configure(conf):
Alexander Afanasyev01515792014-12-16 14:20:01 -080010 cxx = conf.env['CXX_NAME'] # CXX_NAME represents generic name of the compiler
11 if cxx == 'gcc':
12 flags = GccFlags()
13 elif cxx == 'clang':
14 flags = ClangFlags()
15 else:
16 flags = CompilerFlags()
17 Logs.warn('The code has not been yet tested with %s compiler' % cxx)
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070018
Alexander Afanasyev01515792014-12-16 14:20:01 -080019 areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
20
21 # General flags will alway be applied (e.g., selecting C++11 mode)
22 generalFlags = flags.getGeneralFlags(conf)
23 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
24 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
25 conf.env.DEFINES += generalFlags['DEFINES']
26
27 # Debug or optimization CXXFLAGS and LINKFLAGS will be applied only if the
28 # corresponding environment variables are not set.
29 # DEFINES will be always applied
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070030 if conf.options.debug:
Alexander Afanasyev01515792014-12-16 14:20:01 -080031 extraFlags = flags.getDebugFlags(conf)
32
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070033 if areCustomCxxflagsPresent:
Alexander Afanasyev01515792014-12-16 14:20:01 -080034 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070035 if len(missingFlags) > 0:
36 Logs.warn("Selected debug mode, but CXXFLAGS is set to a custom value '%s'"
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070037 % " ".join(conf.env.CXXFLAGS))
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070038 Logs.warn("Default flags '%s' are not activated" % " ".join(missingFlags))
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070039 else:
Alexander Afanasyev01515792014-12-16 14:20:01 -080040 extraFlags = flags.getOptimizedFlags(conf)
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070041
Alexander Afanasyev01515792014-12-16 14:20:01 -080042 if not areCustomCxxflagsPresent:
43 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
44 conf.add_supported_cxxflags(extraFlags['LINKFLAGS'])
45
46 conf.env.DEFINES += extraFlags['DEFINES']
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020047
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070048@Configure.conf
49def add_supported_cxxflags(self, cxxflags):
50 """
51 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
52 """
Alexander Afanasyev01515792014-12-16 14:20:01 -080053 if len(cxxflags) == 0:
54 return
55
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020056 self.start_msg('Checking supported CXXFLAGS')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070057
58 supportedFlags = []
59 for flag in cxxflags:
Alexander Afanasyev3e6a98e2014-04-25 12:02:13 -070060 if self.check_cxx(cxxflags=['-Werror', flag], mandatory=False):
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070061 supportedFlags += [flag]
62
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070063 self.end_msg(' '.join(supportedFlags))
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070064 self.env.CXXFLAGS = supportedFlags + self.env.CXXFLAGS
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020065
66@Configure.conf
67def add_supported_linkflags(self, linkflags):
68 """
69 Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable
70 """
Alexander Afanasyev01515792014-12-16 14:20:01 -080071 if len(linkflags) == 0:
72 return
73
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020074 self.start_msg('Checking supported LINKFLAGS')
75
76 supportedFlags = []
77 for flag in linkflags:
78 if self.check_cxx(linkflags=['-Werror', flag], mandatory=False):
79 supportedFlags += [flag]
80
81 self.end_msg(' '.join(supportedFlags))
82 self.env.LINKFLAGS = supportedFlags + self.env.LINKFLAGS
Alexander Afanasyev01515792014-12-16 14:20:01 -080083
84
85class CompilerFlags(object):
86 def getGeneralFlags(self, conf):
87 """Get dict {'CXXFLAGS':[...], LINKFLAGS:[...], DEFINES:[...]} that are always needed"""
88 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
89
90 def getDebugFlags(self, conf):
91 """Get tuple {CXXFLAGS, LINKFLAGS, DEFINES} that are needed in debug mode"""
92 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
93
94 def getOptimizedFlags(self, conf):
95 """Get tuple {CXXFLAGS, LINKFLAGS, DEFINES} that are needed in optimized mode"""
96 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
97
98class GccBasicFlags(CompilerFlags):
99 """This class defines base flags that work for gcc and clang compiler"""
100 def getDebugFlags(self, conf):
101 flags = super(GccBasicFlags, self).getDebugFlags(conf)
102 flags['CXXFLAGS'] += ['-pedantic', '-Wall',
103 '-O0',
104 '-g3',
105 '-Werror',
106 '-Wno-error=maybe-uninitialized', # Bug #1615
107 ]
108 return flags
109
110 def getOptimizedFlags(self, conf):
111 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
112 flags['CXXFLAGS'] += ['-pedantic', '-Wall', '-O2', '-g']
113 return flags
114
115class GccFlags(GccBasicFlags):
116 def getGeneralFlags(self, conf):
117 flags = super(GccFlags, self).getGeneralFlags(conf)
118 version = tuple(int(i) for i in conf.env['CC_VERSION'])
119 if version < (4, 6, 0):
120 conf.fatal('The version of gcc you are using (%s) is too old.\n' %
121 '.',join(conf.env['CC_VERSION']) +
122 'The minimum supported gcc version is 4.6.0.')
123 elif version < (4, 7, 0):
124 flags['CXXFLAGS'] += ['-std=c++0x']
125 else:
126 flags['CXXFLAGS'] += ['-std=c++11']
127 return flags
128
129 def getDebugFlags(self, conf):
130 flags = super(GccFlags, self).getDebugFlags(conf)
131 flags['CXXFLAGS'] += ['-Og', # gcc >= 4.8
132 '-fdiagnostics-color', # gcc >= 4.9
133 '-Wno-error=deprecated-register',
134 '-Wno-error=unneeded-internal-declaration', # Bug #1588
135 ]
136 return flags
137
138class ClangFlags(GccBasicFlags):
139 def getGeneralFlags(self, conf):
140 flags = super(ClangFlags, self).getGeneralFlags(conf)
141 flags['CXXFLAGS'] += ['-std=c++11']
142 if Utils.unversioned_sys_platform() == "darwin":
143 flags['CXXFLAGS'] += ['-stdlib=libc++']
144 flags['LINKFLAGS'] += ['-stdlib=libc++']
145 return flags
146
147 def getDebugFlags(self, conf):
148 flags = super(ClangFlags, self).getDebugFlags(conf)
149 flags['CXXFLAGS'] += ['-fcolor-diagnostics']
150 return flags