blob: 9e045c3fb384505e04c63b74e8ddbda3a0f75ff2 [file] [log] [blame]
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3from waflib import Configure, Logs, Utils
4
5def options(opt):
6 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
7 help='Compile in debugging mode with minimal optimizations (-O0 or -Og)')
8
9def configure(conf):
10 conf.start_msg('Checking C++ compiler version')
11
12 cxx = conf.env.CXX_NAME # generic name of the compiler
13 ccver = tuple(int(i) for i in conf.env.CC_VERSION)
14 ccverstr = '.'.join(conf.env.CC_VERSION)
15 errmsg = ''
16 warnmsg = ''
17 if cxx == 'gcc':
18 if ccver < (5, 3, 0):
19 errmsg = ('The version of gcc you are using is too old.\n'
20 'The minimum supported gcc version is 5.3.0.')
21 conf.flags = GccFlags()
22 elif cxx == 'clang':
Davide Pesaventoda278492019-01-29 15:00:49 -050023 if ccver < (3, 6, 0):
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050024 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesaventoda278492019-01-29 15:00:49 -050025 'The minimum supported clang version is 3.6.0.')
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050026 conf.flags = ClangFlags()
27 else:
28 warnmsg = 'Note: %s compiler is unsupported' % cxx
29 conf.flags = CompilerFlags()
30
31 if errmsg:
32 conf.end_msg(ccverstr, color='RED')
33 conf.fatal(errmsg)
34 elif warnmsg:
35 conf.end_msg(ccverstr, color='YELLOW')
36 Logs.warn(warnmsg)
37 else:
38 conf.end_msg(ccverstr)
39
40 conf.areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
41
42 # General flags are always applied (e.g., selecting C++ language standard)
43 generalFlags = conf.flags.getGeneralFlags(conf)
44 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
45 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
46 conf.env.DEFINES += generalFlags['DEFINES']
47
48@Configure.conf
49def check_compiler_flags(conf):
50 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
51 # corresponding environment variables are not set.
52 # DEFINES are always applied.
53 if conf.options.debug:
54 extraFlags = conf.flags.getDebugFlags(conf)
55 if conf.areCustomCxxflagsPresent:
56 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
57 if missingFlags:
58 Logs.warn('Selected debug mode, but CXXFLAGS is set to a custom value "%s"'
59 % ' '.join(conf.env.CXXFLAGS))
60 Logs.warn('Default flags "%s" will not be used' % ' '.join(missingFlags))
61 else:
62 extraFlags = conf.flags.getOptimizedFlags(conf)
63
64 if not conf.areCustomCxxflagsPresent:
65 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
66 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
67
68 conf.env.DEFINES += extraFlags['DEFINES']
69
70@Configure.conf
71def add_supported_cxxflags(self, cxxflags):
72 """
73 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
74 """
75 if len(cxxflags) == 0:
76 return
77
78 self.start_msg('Checking supported CXXFLAGS')
79
80 supportedFlags = []
81 for flags in cxxflags:
82 flags = Utils.to_list(flags)
83 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
84 supportedFlags += flags
85
86 self.end_msg(' '.join(supportedFlags))
87 self.env.prepend_value('CXXFLAGS', supportedFlags)
88
89@Configure.conf
90def add_supported_linkflags(self, linkflags):
91 """
92 Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable
93 """
94 if len(linkflags) == 0:
95 return
96
97 self.start_msg('Checking supported LINKFLAGS')
98
99 supportedFlags = []
100 for flags in linkflags:
101 flags = Utils.to_list(flags)
102 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
103 supportedFlags += flags
104
105 self.end_msg(' '.join(supportedFlags))
106 self.env.prepend_value('LINKFLAGS', supportedFlags)
107
108
109class CompilerFlags(object):
110 def getCompilerVersion(self, conf):
111 return tuple(int(i) for i in conf.env.CC_VERSION)
112
113 def getGeneralFlags(self, conf):
114 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
115 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
116
117 def getDebugFlags(self, conf):
118 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
119 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
120
121 def getOptimizedFlags(self, conf):
122 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
123 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
124
125class GccBasicFlags(CompilerFlags):
126 """
127 This class defines basic flags that work for both gcc and clang compilers
128 """
129 def getGeneralFlags(self, conf):
130 flags = super(GccBasicFlags, self).getGeneralFlags(conf)
131 flags['CXXFLAGS'] += ['-std=c++14']
Davide Pesaventoda278492019-01-29 15:00:49 -0500132 if Utils.unversioned_sys_platform() == 'linux':
133 flags['LINKFLAGS'] += ['-fuse-ld=gold']
134 elif Utils.unversioned_sys_platform() == 'freebsd':
135 flags['LINKFLAGS'] += ['-fuse-ld=lld']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500136 return flags
137
138 def getDebugFlags(self, conf):
139 flags = super(GccBasicFlags, self).getDebugFlags(conf)
140 flags['CXXFLAGS'] += ['-O0',
141 '-Og', # gcc >= 4.8, clang >= 4.0
142 '-g3',
143 '-pedantic',
144 '-Wall',
145 '-Wextra',
146 '-Werror',
147 '-Wnon-virtual-dtor',
148 '-Wno-error=deprecated-declarations', # Bug #3795
149 '-Wno-error=maybe-uninitialized', # Bug #1615
150 '-Wno-unused-parameter',
151 ]
Davide Pesaventoda278492019-01-29 15:00:49 -0500152 flags['LINKFLAGS'] += ['-Wl,-O1']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500153 return flags
154
155 def getOptimizedFlags(self, conf):
156 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
157 flags['CXXFLAGS'] += ['-O2',
158 '-g',
159 '-pedantic',
160 '-Wall',
161 '-Wextra',
162 '-Wnon-virtual-dtor',
163 '-Wno-unused-parameter',
164 ]
Davide Pesaventoda278492019-01-29 15:00:49 -0500165 flags['LINKFLAGS'] += ['-Wl,-O1']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500166 return flags
167
168class GccFlags(GccBasicFlags):
169 def getDebugFlags(self, conf):
170 flags = super(GccFlags, self).getDebugFlags(conf)
171 flags['CXXFLAGS'] += ['-fdiagnostics-color']
172 return flags
173
174 def getOptimizedFlags(self, conf):
175 flags = super(GccFlags, self).getOptimizedFlags(conf)
176 flags['CXXFLAGS'] += ['-fdiagnostics-color']
177 return flags
178
179class ClangFlags(GccBasicFlags):
180 def getGeneralFlags(self, conf):
181 flags = super(ClangFlags, self).getGeneralFlags(conf)
182 if Utils.unversioned_sys_platform() == 'darwin' and self.getCompilerVersion(conf) >= (9, 0, 0):
183 # Bug #4296
184 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include'], # for Homebrew
185 ['-isystem', '/opt/local/include']] # for MacPorts
Davide Pesaventoda278492019-01-29 15:00:49 -0500186 if Utils.unversioned_sys_platform() == 'freebsd':
187 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include']] # Bug #4790
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500188 return flags
189
190 def getDebugFlags(self, conf):
191 flags = super(ClangFlags, self).getDebugFlags(conf)
192 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
193 '-Wextra-semi',
194 '-Wundefined-func-template',
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500195 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
196 ]
197 version = self.getCompilerVersion(conf)
198 if version < (3, 9, 0) or (Utils.unversioned_sys_platform() == 'darwin' and version < (8, 1, 0)):
199 flags['CXXFLAGS'] += ['-Wno-unknown-pragmas']
Davide Pesaventoda278492019-01-29 15:00:49 -0500200 if version < (6, 0, 0):
201 flags['CXXFLAGS'] += ['-Wno-missing-braces'] # Bug #4721
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500202 return flags
203
204 def getOptimizedFlags(self, conf):
205 flags = super(ClangFlags, self).getOptimizedFlags(conf)
206 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
207 '-Wextra-semi',
208 '-Wundefined-func-template',
209 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
210 ]
211 version = self.getCompilerVersion(conf)
212 if version < (3, 9, 0) or (Utils.unversioned_sys_platform() == 'darwin' and version < (8, 1, 0)):
213 flags['CXXFLAGS'] += ['-Wno-unknown-pragmas']
Davide Pesaventoda278492019-01-29 15:00:49 -0500214 if version < (6, 0, 0):
215 flags['CXXFLAGS'] += ['-Wno-missing-braces'] # Bug #4721
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500216 return flags