blob: f3be6e7bf841b3eb83173308ea7b1f877c0cfac1 [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
Davide Pesavento042dfb32020-07-23 21:07:16 -04003import platform
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05004from waflib import Configure, Logs, Utils
5
6def options(opt):
7 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
Davide Pesavento042dfb32020-07-23 21:07:16 -04008 help='Compile in debugging mode with minimal optimizations (-Og)')
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05009
10def configure(conf):
11 conf.start_msg('Checking C++ compiler version')
12
13 cxx = conf.env.CXX_NAME # generic name of the compiler
14 ccver = tuple(int(i) for i in conf.env.CC_VERSION)
15 ccverstr = '.'.join(conf.env.CC_VERSION)
16 errmsg = ''
17 warnmsg = ''
18 if cxx == 'gcc':
19 if ccver < (5, 3, 0):
20 errmsg = ('The version of gcc you are using is too old.\n'
Davide Pesavento042dfb32020-07-23 21:07:16 -040021 'The minimum supported gcc version is 7.4.0.')
22 elif ccver < (7, 4, 0):
23 warnmsg = ('Using a version of gcc older than 7.4.0 is not '
24 'officially supported and may result in build failures.')
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050025 conf.flags = GccFlags()
26 elif cxx == 'clang':
Davide Pesavento042dfb32020-07-23 21:07:16 -040027 if Utils.unversioned_sys_platform() == 'darwin' and ccver < (9, 0, 0):
28 errmsg = ('The version of Xcode you are using is too old.\n'
29 'The minimum supported Xcode version is 9.0.')
30 elif ccver < (4, 0, 0):
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050031 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesavento042dfb32020-07-23 21:07:16 -040032 'The minimum supported clang version is 4.0.')
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050033 conf.flags = ClangFlags()
34 else:
Davide Pesavento042dfb32020-07-23 21:07:16 -040035 warnmsg = '%s compiler is unsupported' % cxx
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050036 conf.flags = CompilerFlags()
37
38 if errmsg:
39 conf.end_msg(ccverstr, color='RED')
40 conf.fatal(errmsg)
41 elif warnmsg:
42 conf.end_msg(ccverstr, color='YELLOW')
Davide Pesavento042dfb32020-07-23 21:07:16 -040043 Logs.warn('WARNING: ' + warnmsg)
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050044 else:
45 conf.end_msg(ccverstr)
46
47 conf.areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
48
49 # General flags are always applied (e.g., selecting C++ language standard)
50 generalFlags = conf.flags.getGeneralFlags(conf)
51 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
52 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
53 conf.env.DEFINES += generalFlags['DEFINES']
54
55@Configure.conf
56def check_compiler_flags(conf):
57 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
58 # corresponding environment variables are not set.
59 # DEFINES are always applied.
60 if conf.options.debug:
61 extraFlags = conf.flags.getDebugFlags(conf)
62 if conf.areCustomCxxflagsPresent:
63 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
64 if missingFlags:
65 Logs.warn('Selected debug mode, but CXXFLAGS is set to a custom value "%s"'
66 % ' '.join(conf.env.CXXFLAGS))
67 Logs.warn('Default flags "%s" will not be used' % ' '.join(missingFlags))
68 else:
69 extraFlags = conf.flags.getOptimizedFlags(conf)
70
71 if not conf.areCustomCxxflagsPresent:
72 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
73 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
74
75 conf.env.DEFINES += extraFlags['DEFINES']
76
77@Configure.conf
78def add_supported_cxxflags(self, cxxflags):
79 """
80 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
81 """
82 if len(cxxflags) == 0:
83 return
84
85 self.start_msg('Checking supported CXXFLAGS')
86
87 supportedFlags = []
88 for flags in cxxflags:
89 flags = Utils.to_list(flags)
90 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
91 supportedFlags += flags
92
93 self.end_msg(' '.join(supportedFlags))
94 self.env.prepend_value('CXXFLAGS', supportedFlags)
95
96@Configure.conf
97def add_supported_linkflags(self, linkflags):
98 """
99 Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable
100 """
101 if len(linkflags) == 0:
102 return
103
104 self.start_msg('Checking supported LINKFLAGS')
105
106 supportedFlags = []
107 for flags in linkflags:
108 flags = Utils.to_list(flags)
109 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
110 supportedFlags += flags
111
112 self.end_msg(' '.join(supportedFlags))
113 self.env.prepend_value('LINKFLAGS', supportedFlags)
114
115
116class CompilerFlags(object):
117 def getCompilerVersion(self, conf):
118 return tuple(int(i) for i in conf.env.CC_VERSION)
119
120 def getGeneralFlags(self, conf):
121 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
122 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
123
124 def getDebugFlags(self, conf):
125 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
126 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
127
128 def getOptimizedFlags(self, conf):
129 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
130 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
131
132class GccBasicFlags(CompilerFlags):
133 """
134 This class defines basic flags that work for both gcc and clang compilers
135 """
136 def getGeneralFlags(self, conf):
137 flags = super(GccBasicFlags, self).getGeneralFlags(conf)
138 flags['CXXFLAGS'] += ['-std=c++14']
Davide Pesaventoda278492019-01-29 15:00:49 -0500139 if Utils.unversioned_sys_platform() == 'linux':
140 flags['LINKFLAGS'] += ['-fuse-ld=gold']
141 elif Utils.unversioned_sys_platform() == 'freebsd':
142 flags['LINKFLAGS'] += ['-fuse-ld=lld']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500143 return flags
144
145 def getDebugFlags(self, conf):
146 flags = super(GccBasicFlags, self).getDebugFlags(conf)
Davide Pesavento042dfb32020-07-23 21:07:16 -0400147 flags['CXXFLAGS'] += ['-Og',
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500148 '-g3',
149 '-pedantic',
150 '-Wall',
151 '-Wextra',
152 '-Werror',
Davide Pesavento042dfb32020-07-23 21:07:16 -0400153 '-Wcatch-value=2',
154 '-Wextra-semi',
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500155 '-Wnon-virtual-dtor',
156 '-Wno-error=deprecated-declarations', # Bug #3795
157 '-Wno-error=maybe-uninitialized', # Bug #1615
158 '-Wno-unused-parameter',
159 ]
Davide Pesaventoda278492019-01-29 15:00:49 -0500160 flags['LINKFLAGS'] += ['-Wl,-O1']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500161 return flags
162
163 def getOptimizedFlags(self, conf):
164 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
165 flags['CXXFLAGS'] += ['-O2',
166 '-g',
167 '-pedantic',
168 '-Wall',
169 '-Wextra',
Davide Pesavento042dfb32020-07-23 21:07:16 -0400170 '-Wcatch-value=2',
171 '-Wextra-semi',
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500172 '-Wnon-virtual-dtor',
173 '-Wno-unused-parameter',
174 ]
Davide Pesaventoda278492019-01-29 15:00:49 -0500175 flags['LINKFLAGS'] += ['-Wl,-O1']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500176 return flags
177
178class GccFlags(GccBasicFlags):
179 def getDebugFlags(self, conf):
180 flags = super(GccFlags, self).getDebugFlags(conf)
Davide Pesavento042dfb32020-07-23 21:07:16 -0400181 flags['CXXFLAGS'] += ['-fdiagnostics-color',
182 '-Wredundant-tags',
183 ]
184 if platform.machine() == 'armv7l' and self.getCompilerVersion(conf) >= (7, 1, 0):
185 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500186 return flags
187
188 def getOptimizedFlags(self, conf):
189 flags = super(GccFlags, self).getOptimizedFlags(conf)
Davide Pesavento042dfb32020-07-23 21:07:16 -0400190 flags['CXXFLAGS'] += ['-fdiagnostics-color',
191 '-Wredundant-tags',
192 ]
193 if platform.machine() == 'armv7l' and self.getCompilerVersion(conf) >= (7, 1, 0):
194 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500195 return flags
196
197class ClangFlags(GccBasicFlags):
198 def getGeneralFlags(self, conf):
199 flags = super(ClangFlags, self).getGeneralFlags(conf)
Davide Pesavento042dfb32020-07-23 21:07:16 -0400200 if Utils.unversioned_sys_platform() == 'darwin':
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500201 # Bug #4296
202 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include'], # for Homebrew
203 ['-isystem', '/opt/local/include']] # for MacPorts
Davide Pesavento042dfb32020-07-23 21:07:16 -0400204 elif Utils.unversioned_sys_platform() == 'freebsd':
205 # Bug #4790
206 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include']]
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500207 return flags
208
209 def getDebugFlags(self, conf):
210 flags = super(ClangFlags, self).getDebugFlags(conf)
211 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500212 '-Wundefined-func-template',
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500213 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
214 ]
Davide Pesavento042dfb32020-07-23 21:07:16 -0400215 if self.getCompilerVersion(conf) < (6, 0, 0):
Davide Pesaventoda278492019-01-29 15:00:49 -0500216 flags['CXXFLAGS'] += ['-Wno-missing-braces'] # Bug #4721
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500217 return flags
218
219 def getOptimizedFlags(self, conf):
220 flags = super(ClangFlags, self).getOptimizedFlags(conf)
221 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500222 '-Wundefined-func-template',
223 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
224 ]
Davide Pesavento042dfb32020-07-23 21:07:16 -0400225 if self.getCompilerVersion(conf) < (6, 0, 0):
Davide Pesaventoda278492019-01-29 15:00:49 -0500226 flags['CXXFLAGS'] += ['-Wno-missing-braces'] # Bug #4721
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500227 return flags