blob: 9899d05b0b2c38eca520c67024e9816b5509a51f [file] [log] [blame]
Davide Pesaventoab6ac5d2021-10-05 23:23:53 -04001import platform
Davide Pesavento64cafaa2018-05-24 00:50:41 -04002from waflib import Configure, Logs, Utils
Alexander Afanasyev740812e2014-10-30 15:37:45 -07003
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -04004
Alexander Afanasyev740812e2014-10-30 15:37:45 -07005def options(opt):
Davide Pesavento64cafaa2018-05-24 00:50:41 -04006 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
Davide Pesaventoab6ac5d2021-10-05 23:23:53 -04007 help='Compile in debugging mode with minimal optimizations (-Og)')
Alexander Afanasyev740812e2014-10-30 15:37:45 -07008
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -04009
Alexander Afanasyev740812e2014-10-30 15:37:45 -070010def configure(conf):
Davide Pesavento29db0fd2017-08-29 13:32:00 -040011 conf.start_msg('Checking C++ compiler version')
Alexander Afanasyev740812e2014-10-30 15:37:45 -070012
Davide Pesavento64cafaa2018-05-24 00:50:41 -040013 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)
Davide Pesavento29db0fd2017-08-29 13:32:00 -040016 errmsg = ''
17 warnmsg = ''
18 if cxx == 'gcc':
Davide Pesaventoc12f9152024-12-11 18:42:03 -050019 if ccver < (9, 1, 0):
Davide Pesavento29db0fd2017-08-29 13:32:00 -040020 errmsg = ('The version of gcc you are using is too old.\n'
Davide Pesaventoc12f9152024-12-11 18:42:03 -050021 'The minimum supported gcc version is 10.2.')
22 elif ccver < (10, 2, 0):
23 warnmsg = ('Using a version of gcc older than 10.2 is not '
Davide Pesavento08208492023-04-17 01:25:01 -040024 'officially supported and may result in build failures.')
Davide Pesavento64cafaa2018-05-24 00:50:41 -040025 conf.flags = GccFlags()
Davide Pesavento29db0fd2017-08-29 13:32:00 -040026 elif cxx == 'clang':
Davide Pesavento92669062022-03-10 19:09:44 -050027 if Utils.unversioned_sys_platform() == 'darwin':
Davide Pesaventoc12f9152024-12-11 18:42:03 -050028 if ccver < (11, 0, 0):
Davide Pesavento92669062022-03-10 19:09:44 -050029 errmsg = ('The version of Xcode you are using is too old.\n'
Davide Pesaventoc12f9152024-12-11 18:42:03 -050030 'The minimum supported Xcode version is 13.0.')
31 elif ccver < (13, 0, 0):
32 warnmsg = ('Using a version of Xcode older than 13.0 is not '
Davide Pesavento92669062022-03-10 19:09:44 -050033 'officially supported and may result in build failures.')
Davide Pesavento08208492023-04-17 01:25:01 -040034 elif ccver < (7, 0, 0):
Davide Pesavento29db0fd2017-08-29 13:32:00 -040035 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesaventoc12f9152024-12-11 18:42:03 -050036 'The minimum supported clang version is 10.0.')
37 elif ccver < (10, 0, 0):
38 warnmsg = ('Using a version of clang older than 10.0 is not '
39 'officially supported and may result in build failures.')
Davide Pesavento64cafaa2018-05-24 00:50:41 -040040 conf.flags = ClangFlags()
Davide Pesavento29db0fd2017-08-29 13:32:00 -040041 else:
Davide Pesaventof5006be2022-08-19 17:36:36 -040042 warnmsg = f'{cxx} compiler is unsupported'
Davide Pesavento64cafaa2018-05-24 00:50:41 -040043 conf.flags = CompilerFlags()
Davide Pesavento29db0fd2017-08-29 13:32:00 -040044
45 if errmsg:
Davide Pesavento64cafaa2018-05-24 00:50:41 -040046 conf.end_msg(ccverstr, color='RED')
Davide Pesavento29db0fd2017-08-29 13:32:00 -040047 conf.fatal(errmsg)
48 elif warnmsg:
Davide Pesavento64cafaa2018-05-24 00:50:41 -040049 conf.end_msg(ccverstr, color='YELLOW')
Davide Pesaventoab6ac5d2021-10-05 23:23:53 -040050 Logs.warn('WARNING: ' + warnmsg)
Davide Pesavento29db0fd2017-08-29 13:32:00 -040051 else:
Davide Pesavento64cafaa2018-05-24 00:50:41 -040052 conf.end_msg(ccverstr)
Davide Pesavento29db0fd2017-08-29 13:32:00 -040053
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -040054 conf.areCustomCxxflagsPresent = len(conf.env.CXXFLAGS) > 0
Davide Pesavento29db0fd2017-08-29 13:32:00 -040055
Davide Pesavento64cafaa2018-05-24 00:50:41 -040056 # General flags are always applied (e.g., selecting C++ language standard)
57 generalFlags = conf.flags.getGeneralFlags(conf)
Davide Pesavento29db0fd2017-08-29 13:32:00 -040058 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
59 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
60 conf.env.DEFINES += generalFlags['DEFINES']
61
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -040062
Davide Pesavento64cafaa2018-05-24 00:50:41 -040063@Configure.conf
64def check_compiler_flags(conf):
Davide Pesavento29db0fd2017-08-29 13:32:00 -040065 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
66 # corresponding environment variables are not set.
67 # DEFINES are always applied.
Alexander Afanasyev740812e2014-10-30 15:37:45 -070068 if conf.options.debug:
Davide Pesavento64cafaa2018-05-24 00:50:41 -040069 extraFlags = conf.flags.getDebugFlags(conf)
70 if conf.areCustomCxxflagsPresent:
Davide Pesavento29db0fd2017-08-29 13:32:00 -040071 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
Davide Pesavento64cafaa2018-05-24 00:50:41 -040072 if missingFlags:
73 Logs.warn('Selected debug mode, but CXXFLAGS is set to a custom value "%s"'
74 % ' '.join(conf.env.CXXFLAGS))
75 Logs.warn('Default flags "%s" will not be used' % ' '.join(missingFlags))
Alexander Afanasyev740812e2014-10-30 15:37:45 -070076 else:
Davide Pesavento64cafaa2018-05-24 00:50:41 -040077 extraFlags = conf.flags.getOptimizedFlags(conf)
Alexander Afanasyev740812e2014-10-30 15:37:45 -070078
Davide Pesavento64cafaa2018-05-24 00:50:41 -040079 if not conf.areCustomCxxflagsPresent:
Davide Pesavento29db0fd2017-08-29 13:32:00 -040080 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
81 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
82
83 conf.env.DEFINES += extraFlags['DEFINES']
Alexander Afanasyev740812e2014-10-30 15:37:45 -070084
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -040085
Alexander Afanasyev740812e2014-10-30 15:37:45 -070086@Configure.conf
87def add_supported_cxxflags(self, cxxflags):
88 """
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -040089 Check which cxxflags are supported by the active compiler and add them to env.CXXFLAGS variable.
Alexander Afanasyev740812e2014-10-30 15:37:45 -070090 """
Davide Pesavento29db0fd2017-08-29 13:32:00 -040091 if len(cxxflags) == 0:
92 return
93
Alexander Afanasyev740812e2014-10-30 15:37:45 -070094 self.start_msg('Checking supported CXXFLAGS')
95
96 supportedFlags = []
Davide Pesavento64cafaa2018-05-24 00:50:41 -040097 for flags in cxxflags:
98 flags = Utils.to_list(flags)
99 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
100 supportedFlags += flags
Alexander Afanasyev740812e2014-10-30 15:37:45 -0700101
102 self.end_msg(' '.join(supportedFlags))
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400103 self.env.prepend_value('CXXFLAGS', supportedFlags)
Alexander Afanasyev740812e2014-10-30 15:37:45 -0700104
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400105
Alexander Afanasyev740812e2014-10-30 15:37:45 -0700106@Configure.conf
107def add_supported_linkflags(self, linkflags):
108 """
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400109 Check which linkflags are supported by the active compiler and add them to env.LINKFLAGS variable.
Alexander Afanasyev740812e2014-10-30 15:37:45 -0700110 """
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400111 if len(linkflags) == 0:
112 return
113
Alexander Afanasyev740812e2014-10-30 15:37:45 -0700114 self.start_msg('Checking supported LINKFLAGS')
115
116 supportedFlags = []
Davide Pesavento64cafaa2018-05-24 00:50:41 -0400117 for flags in linkflags:
118 flags = Utils.to_list(flags)
119 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
120 supportedFlags += flags
Alexander Afanasyev740812e2014-10-30 15:37:45 -0700121
122 self.end_msg(' '.join(supportedFlags))
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400123 self.env.prepend_value('LINKFLAGS', supportedFlags)
124
125
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400126class CompilerFlags:
Davide Pesavento64cafaa2018-05-24 00:50:41 -0400127 def getCompilerVersion(self, conf):
128 return tuple(int(i) for i in conf.env.CC_VERSION)
129
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400130 def getGeneralFlags(self, conf):
131 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
Davide Pesavento8cb3cb72024-03-12 20:21:48 -0400132 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
133
134 def getDebugFlags(self, conf):
135 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
Davide Pesavento06784b42023-11-11 18:10:43 -0500136 return {
137 'CXXFLAGS': [],
138 'LINKFLAGS': [],
139 'DEFINES': ['BOOST_ASIO_NO_DEPRECATED', 'BOOST_FILESYSTEM_NO_DEPRECATED'],
140 }
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400141
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400142 def getOptimizedFlags(self, conf):
143 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
144 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
145
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400146
147class GccClangCommonFlags(CompilerFlags):
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400148 """
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400149 This class defines common flags that work for both gcc and clang compilers.
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400150 """
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400151
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400152 def getGeneralFlags(self, conf):
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400153 flags = super().getGeneralFlags(conf)
Davide Pesaventoef064892022-04-05 02:26:03 -0400154 flags['CXXFLAGS'] += ['-std=c++17']
Davide Pesaventof855ec12022-11-16 16:08:35 -0500155 if Utils.unversioned_sys_platform() != 'darwin':
Davide Pesavento7eaed5c2019-01-09 20:03:43 -0500156 flags['LINKFLAGS'] += ['-fuse-ld=lld']
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400157 return flags
158
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400159 __cxxFlags = [
160 '-fdiagnostics-color',
161 '-Wall',
162 '-Wextra',
163 '-Wpedantic',
164 '-Wenum-conversion',
165 '-Wextra-semi',
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400166 '-Wno-unused-parameter',
167 ]
168 __linkFlags = ['-Wl,-O1']
169
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400170 def getDebugFlags(self, conf):
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -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 Pesavento4c24cf72024-01-19 15:53:53 -0500178 # Enable assertions in libstdc++
179 # https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html
180 flags['DEFINES'] += ['_GLIBCXX_ASSERTIONS=1']
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400181 return flags
182
183 def getOptimizedFlags(self, conf):
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400184 flags = super().getOptimizedFlags(conf)
185 flags['CXXFLAGS'] += ['-O2', '-g1'] + self.__cxxFlags
186 flags['LINKFLAGS'] += self.__linkFlags
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400187 return flags
188
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -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
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400201 def getDebugFlags(self, conf):
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400202 flags = super().getDebugFlags(conf)
203 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesavento92669062022-03-10 19:09:44 -0500204 if platform.machine() == 'armv7l':
Davide Pesaventoab6ac5d2021-10-05 23:23:53 -0400205 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400206 return flags
207
208 def getOptimizedFlags(self, conf):
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400209 flags = super().getOptimizedFlags(conf)
210 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesavento92669062022-03-10 19:09:44 -0500211 if platform.machine() == 'armv7l':
Davide Pesaventoab6ac5d2021-10-05 23:23:53 -0400212 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400213 return flags
214
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400215
216class ClangFlags(GccClangCommonFlags):
Davide Pesavento64cafaa2018-05-24 00:50:41 -0400217 def getGeneralFlags(self, conf):
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400218 flags = super().getGeneralFlags(conf)
Davide Pesaventoab6ac5d2021-10-05 23:23:53 -0400219 if Utils.unversioned_sys_platform() == 'darwin':
Davide Pesavento64cafaa2018-05-24 00:50:41 -0400220 # Bug #4296
Davide Pesaventof5006be2022-08-19 17:36:36 -0400221 brewdir = '/opt/homebrew' if platform.machine() == 'arm64' else '/usr/local'
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400222 flags['CXXFLAGS'] += [
223 ['-isystem', f'{brewdir}/include'], # for Homebrew
224 ['-isystem', '/opt/local/include'], # for MacPorts
225 ]
Davide Pesaventoab6ac5d2021-10-05 23:23:53 -0400226 elif Utils.unversioned_sys_platform() == 'freebsd':
227 # Bug #4790
228 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include']]
Davide Pesavento4c24cf72024-01-19 15:53:53 -0500229 if self.getCompilerVersion(conf) >= (18, 0, 0):
230 # Bug #5300
231 flags['CXXFLAGS'] += ['-Wno-enum-constexpr-conversion']
Davide Pesavento64cafaa2018-05-24 00:50:41 -0400232 return flags
233
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400234 __cxxFlags = [
235 '-Wundefined-func-template',
236 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
237 ]
238
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400239 def getDebugFlags(self, conf):
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400240 flags = super().getDebugFlags(conf)
241 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesavento4c24cf72024-01-19 15:53:53 -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']
Davide Pesavento8cb3cb72024-03-12 20:21:48 -0400249 # Tell libc++ to avoid including transitive headers
250 # https://libcxx.llvm.org/DesignDocs/HeaderRemovalPolicy.html
251 flags['DEFINES'] += ['_LIBCPP_REMOVE_TRANSITIVE_INCLUDES=1']
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400252 return flags
253
254 def getOptimizedFlags(self, conf):
Davide Pesaventoc1a7fbc2023-08-09 13:22:02 -0400255 flags = super().getOptimizedFlags(conf)
256 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesavento29db0fd2017-08-29 13:32:00 -0400257 return flags