blob: e6902902933a557a1ab26f89ee3473513c87f3eb [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':
23 if ccver < (3, 5, 0):
24 errmsg = ('The version of clang you are using is too old.\n'
25 'The minimum supported clang version is 3.5.0.')
26 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']
132 return flags
133
134 def getDebugFlags(self, conf):
135 flags = super(GccBasicFlags, self).getDebugFlags(conf)
136 flags['CXXFLAGS'] += ['-O0',
137 '-Og', # gcc >= 4.8, clang >= 4.0
138 '-g3',
139 '-pedantic',
140 '-Wall',
141 '-Wextra',
142 '-Werror',
143 '-Wnon-virtual-dtor',
144 '-Wno-error=deprecated-declarations', # Bug #3795
145 '-Wno-error=maybe-uninitialized', # Bug #1615
146 '-Wno-unused-parameter',
147 ]
148 flags['LINKFLAGS'] += ['-fuse-ld=gold', '-Wl,-O1']
149 return flags
150
151 def getOptimizedFlags(self, conf):
152 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
153 flags['CXXFLAGS'] += ['-O2',
154 '-g',
155 '-pedantic',
156 '-Wall',
157 '-Wextra',
158 '-Wnon-virtual-dtor',
159 '-Wno-unused-parameter',
160 ]
161 flags['LINKFLAGS'] += ['-fuse-ld=gold', '-Wl,-O1']
162 return flags
163
164class GccFlags(GccBasicFlags):
165 def getDebugFlags(self, conf):
166 flags = super(GccFlags, self).getDebugFlags(conf)
167 flags['CXXFLAGS'] += ['-fdiagnostics-color']
168 return flags
169
170 def getOptimizedFlags(self, conf):
171 flags = super(GccFlags, self).getOptimizedFlags(conf)
172 flags['CXXFLAGS'] += ['-fdiagnostics-color']
173 return flags
174
175class ClangFlags(GccBasicFlags):
176 def getGeneralFlags(self, conf):
177 flags = super(ClangFlags, self).getGeneralFlags(conf)
178 if Utils.unversioned_sys_platform() == 'darwin' and self.getCompilerVersion(conf) >= (9, 0, 0):
179 # Bug #4296
180 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include'], # for Homebrew
181 ['-isystem', '/opt/local/include']] # for MacPorts
182 return flags
183
184 def getDebugFlags(self, conf):
185 flags = super(ClangFlags, self).getDebugFlags(conf)
186 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
187 '-Wextra-semi',
188 '-Wundefined-func-template',
189 '-Wno-error=deprecated-register',
190 '-Wno-error=infinite-recursion', # Bug #3358
191 '-Wno-error=keyword-macro', # Bug #3235
192 '-Wno-error=unneeded-internal-declaration', # Bug #1588
193 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
194 ]
195 version = self.getCompilerVersion(conf)
196 if version < (3, 9, 0) or (Utils.unversioned_sys_platform() == 'darwin' and version < (8, 1, 0)):
197 flags['CXXFLAGS'] += ['-Wno-unknown-pragmas']
198 return flags
199
200 def getOptimizedFlags(self, conf):
201 flags = super(ClangFlags, self).getOptimizedFlags(conf)
202 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
203 '-Wextra-semi',
204 '-Wundefined-func-template',
205 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
206 ]
207 version = self.getCompilerVersion(conf)
208 if version < (3, 9, 0) or (Utils.unversioned_sys_platform() == 'darwin' and version < (8, 1, 0)):
209 flags['CXXFLAGS'] += ['-Wno-unknown-pragmas']
210 return flags