blob: 6869097f4337af5f2b804b317271f651b0a78564 [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
Davide Pesavento822c5792023-08-16 15:06:23 -04006
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05007def options(opt):
8 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
Davide Pesavento042dfb32020-07-23 21:07:16 -04009 help='Compile in debugging mode with minimal optimizations (-Og)')
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050010
Davide Pesavento822c5792023-08-16 15:06:23 -040011
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050012def configure(conf):
13 conf.start_msg('Checking C++ compiler version')
14
15 cxx = conf.env.CXX_NAME # generic name of the compiler
16 ccver = tuple(int(i) for i in conf.env.CC_VERSION)
17 ccverstr = '.'.join(conf.env.CC_VERSION)
18 errmsg = ''
19 warnmsg = ''
20 if cxx == 'gcc':
Davide Pesavento85a73d22022-03-06 16:00:01 -050021 if ccver < (7, 4, 0):
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050022 errmsg = ('The version of gcc you are using is too old.\n'
Davide Pesavento88b7bbd2023-04-26 15:48:02 -040023 'The minimum supported gcc version is 9.3.')
24 elif ccver < (9, 3, 0):
25 warnmsg = ('Using a version of gcc older than 9.3 is not '
26 'officially supported and may result in build failures.')
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050027 conf.flags = GccFlags()
28 elif cxx == 'clang':
Davide Pesavento85a73d22022-03-06 16:00:01 -050029 if Utils.unversioned_sys_platform() == 'darwin':
30 if ccver < (10, 0, 0):
31 errmsg = ('The version of Xcode you are using is too old.\n'
Davide Pesavento88b7bbd2023-04-26 15:48:02 -040032 'The minimum supported Xcode version is 12.4.')
33 elif ccver < (12, 0, 0):
34 warnmsg = ('Using a version of Xcode older than 12.4 is not '
Davide Pesavento85a73d22022-03-06 16:00:01 -050035 'officially supported and may result in build failures.')
Davide Pesavento88b7bbd2023-04-26 15:48:02 -040036 elif ccver < (7, 0, 0):
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050037 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesavento88b7bbd2023-04-26 15:48:02 -040038 'The minimum supported clang version is 7.0.')
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050039 conf.flags = ClangFlags()
40 else:
Davide Pesaventoda1a4d32022-08-19 19:03:24 -040041 warnmsg = f'{cxx} compiler is unsupported'
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050042 conf.flags = CompilerFlags()
43
44 if errmsg:
45 conf.end_msg(ccverstr, color='RED')
46 conf.fatal(errmsg)
47 elif warnmsg:
48 conf.end_msg(ccverstr, color='YELLOW')
Davide Pesavento042dfb32020-07-23 21:07:16 -040049 Logs.warn('WARNING: ' + warnmsg)
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050050 else:
51 conf.end_msg(ccverstr)
52
Davide Pesavento822c5792023-08-16 15:06:23 -040053 conf.areCustomCxxflagsPresent = len(conf.env.CXXFLAGS) > 0
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050054
55 # General flags are always applied (e.g., selecting C++ language standard)
56 generalFlags = conf.flags.getGeneralFlags(conf)
57 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
58 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
59 conf.env.DEFINES += generalFlags['DEFINES']
60
Davide Pesavento822c5792023-08-16 15:06:23 -040061
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050062@Configure.conf
63def check_compiler_flags(conf):
64 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
65 # corresponding environment variables are not set.
66 # DEFINES are always applied.
67 if conf.options.debug:
68 extraFlags = conf.flags.getDebugFlags(conf)
69 if conf.areCustomCxxflagsPresent:
70 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
71 if missingFlags:
72 Logs.warn('Selected debug mode, but CXXFLAGS is set to a custom value "%s"'
73 % ' '.join(conf.env.CXXFLAGS))
74 Logs.warn('Default flags "%s" will not be used' % ' '.join(missingFlags))
75 else:
76 extraFlags = conf.flags.getOptimizedFlags(conf)
77
78 if not conf.areCustomCxxflagsPresent:
79 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
80 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
81
82 conf.env.DEFINES += extraFlags['DEFINES']
83
Davide Pesavento822c5792023-08-16 15:06:23 -040084
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050085@Configure.conf
86def add_supported_cxxflags(self, cxxflags):
87 """
Davide Pesavento822c5792023-08-16 15:06:23 -040088 Check which cxxflags are supported by the active compiler and add them to env.CXXFLAGS variable.
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050089 """
90 if len(cxxflags) == 0:
91 return
92
93 self.start_msg('Checking supported CXXFLAGS')
94
95 supportedFlags = []
96 for flags in cxxflags:
97 flags = Utils.to_list(flags)
98 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
99 supportedFlags += flags
100
101 self.end_msg(' '.join(supportedFlags))
102 self.env.prepend_value('CXXFLAGS', supportedFlags)
103
Davide Pesavento822c5792023-08-16 15:06:23 -0400104
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500105@Configure.conf
106def add_supported_linkflags(self, linkflags):
107 """
Davide Pesavento822c5792023-08-16 15:06:23 -0400108 Check which linkflags are supported by the active compiler and add them to env.LINKFLAGS variable.
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500109 """
110 if len(linkflags) == 0:
111 return
112
113 self.start_msg('Checking supported LINKFLAGS')
114
115 supportedFlags = []
116 for flags in linkflags:
117 flags = Utils.to_list(flags)
118 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
119 supportedFlags += flags
120
121 self.end_msg(' '.join(supportedFlags))
122 self.env.prepend_value('LINKFLAGS', supportedFlags)
123
124
Davide Pesavento822c5792023-08-16 15:06:23 -0400125class CompilerFlags:
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500126 def getCompilerVersion(self, conf):
127 return tuple(int(i) for i in conf.env.CC_VERSION)
128
129 def getGeneralFlags(self, conf):
130 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
Davide Pesavento60e50432023-11-11 18:35:05 -0500131 return {
132 'CXXFLAGS': [],
133 'LINKFLAGS': [],
134 'DEFINES': ['BOOST_ASIO_NO_DEPRECATED', 'BOOST_FILESYSTEM_NO_DEPRECATED'],
135 }
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500136
137 def getDebugFlags(self, conf):
138 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
Davide Pesaventoac63e322024-01-19 00:30:21 -0500139 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500140
141 def getOptimizedFlags(self, conf):
142 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
143 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
144
Davide Pesavento822c5792023-08-16 15:06:23 -0400145
146class GccClangCommonFlags(CompilerFlags):
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500147 """
Davide Pesavento822c5792023-08-16 15:06:23 -0400148 This class defines common flags that work for both gcc and clang compilers.
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500149 """
Davide Pesavento822c5792023-08-16 15:06:23 -0400150
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500151 def getGeneralFlags(self, conf):
Davide Pesavento822c5792023-08-16 15:06:23 -0400152 flags = super().getGeneralFlags(conf)
Davide Pesaventoc407dee2022-07-21 23:56:05 -0400153 flags['CXXFLAGS'] += ['-std=c++17']
Davide Pesaventob68f2842022-11-17 19:07:04 -0500154 if Utils.unversioned_sys_platform() != 'darwin':
Davide Pesaventoda278492019-01-29 15:00:49 -0500155 flags['LINKFLAGS'] += ['-fuse-ld=lld']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500156 return flags
157
Davide Pesavento822c5792023-08-16 15:06:23 -0400158 __cxxFlags = [
159 '-fdiagnostics-color',
160 '-Wall',
161 '-Wextra',
162 '-Wpedantic',
163 '-Wenum-conversion',
164 '-Wextra-semi',
165 '-Wnon-virtual-dtor',
166 '-Wno-unused-parameter',
167 ]
168 __linkFlags = ['-Wl,-O1']
169
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500170 def getDebugFlags(self, conf):
Davide Pesavento822c5792023-08-16 15:06:23 -0400171 flags = super().getDebugFlags(conf)
172 flags['CXXFLAGS'] += ['-Og', '-g'] + self.__cxxFlags + [
173 '-Werror',
174 '-Wno-error=deprecated-declarations', # Bug #3795
175 '-Wno-error=maybe-uninitialized', # Bug #1615
176 ]
177 flags['LINKFLAGS'] += self.__linkFlags
Davide Pesaventoac63e322024-01-19 00:30:21 -0500178 # Enable assertions in libstdc++
179 # https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html
180 flags['DEFINES'] += ['_GLIBCXX_ASSERTIONS=1']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500181 return flags
182
183 def getOptimizedFlags(self, conf):
Davide Pesavento822c5792023-08-16 15:06:23 -0400184 flags = super().getOptimizedFlags(conf)
185 flags['CXXFLAGS'] += ['-O2', '-g1'] + self.__cxxFlags
186 flags['LINKFLAGS'] += self.__linkFlags
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500187 return flags
188
Davide Pesavento822c5792023-08-16 15:06:23 -0400189
190class GccFlags(GccClangCommonFlags):
191 __cxxFlags = [
192 '-Wcatch-value=2',
193 '-Wcomma-subscript', # enabled by default in C++20
194 '-Wduplicated-branches',
195 '-Wduplicated-cond',
196 '-Wlogical-op',
197 '-Wredundant-tags',
198 '-Wvolatile', # enabled by default in C++20
199 ]
200
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500201 def getDebugFlags(self, conf):
Davide Pesavento822c5792023-08-16 15:06:23 -0400202 flags = super().getDebugFlags(conf)
203 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesavento85a73d22022-03-06 16:00:01 -0500204 if platform.machine() == 'armv7l':
Davide Pesavento042dfb32020-07-23 21:07:16 -0400205 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500206 return flags
207
208 def getOptimizedFlags(self, conf):
Davide Pesavento822c5792023-08-16 15:06:23 -0400209 flags = super().getOptimizedFlags(conf)
210 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesavento85a73d22022-03-06 16:00:01 -0500211 if platform.machine() == 'armv7l':
Davide Pesavento042dfb32020-07-23 21:07:16 -0400212 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500213 return flags
214
Davide Pesavento822c5792023-08-16 15:06:23 -0400215
216class ClangFlags(GccClangCommonFlags):
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500217 def getGeneralFlags(self, conf):
Davide Pesavento822c5792023-08-16 15:06:23 -0400218 flags = super().getGeneralFlags(conf)
Davide Pesavento042dfb32020-07-23 21:07:16 -0400219 if Utils.unversioned_sys_platform() == 'darwin':
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500220 # Bug #4296
Davide Pesaventoda1a4d32022-08-19 19:03:24 -0400221 brewdir = '/opt/homebrew' if platform.machine() == 'arm64' else '/usr/local'
Davide Pesavento822c5792023-08-16 15:06:23 -0400222 flags['CXXFLAGS'] += [
223 ['-isystem', f'{brewdir}/include'], # for Homebrew
224 ['-isystem', '/opt/local/include'], # for MacPorts
225 ]
Davide Pesavento042dfb32020-07-23 21:07:16 -0400226 elif Utils.unversioned_sys_platform() == 'freebsd':
227 # Bug #4790
228 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include']]
Davide Pesaventoac63e322024-01-19 00:30:21 -0500229 if self.getCompilerVersion(conf) >= (18, 0, 0):
230 # Bug #5300
231 flags['CXXFLAGS'] += ['-Wno-enum-constexpr-conversion']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500232 return flags
233
Davide Pesavento822c5792023-08-16 15:06:23 -0400234 __cxxFlags = [
235 '-Wundefined-func-template',
236 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
237 ]
238
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500239 def getDebugFlags(self, conf):
Davide Pesavento822c5792023-08-16 15:06:23 -0400240 flags = super().getDebugFlags(conf)
241 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesaventoac63e322024-01-19 00:30:21 -0500242 # Enable assertions in libc++
243 if self.getCompilerVersion(conf) >= (18, 0, 0):
244 # https://libcxx.llvm.org/Hardening.html
245 flags['DEFINES'] += ['_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_EXTENSIVE']
246 elif self.getCompilerVersion(conf) >= (15, 0, 0):
247 # https://releases.llvm.org/15.0.0/projects/libcxx/docs/UsingLibcxx.html#enabling-the-safe-libc-mode
248 flags['DEFINES'] += ['_LIBCPP_ENABLE_ASSERTIONS=1']
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500249 return flags
250
251 def getOptimizedFlags(self, conf):
Davide Pesavento822c5792023-08-16 15:06:23 -0400252 flags = super().getOptimizedFlags(conf)
253 flags['CXXFLAGS'] += self.__cxxFlags
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -0500254 return flags