blob: c8ab164f79c228cd1af1a9468311088f2897c762 [file] [log] [blame]
Davide Pesavento3d01fa32021-10-03 17:13:38 -04001import platform
Alexander Afanasyev08d18742018-03-15 16:31:28 -04002from waflib import Configure, Logs, Utils
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -07003
Davide Pesaventoaf340ea2023-08-10 20:46:06 -04004
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -07005def options(opt):
Alexander Afanasyev08d18742018-03-15 16:31:28 -04006 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
Davide Pesavento3d01fa32021-10-03 17:13:38 -04007 help='Compile in debugging mode with minimal optimizations (-Og)')
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -07008
Davide Pesaventoaf340ea2023-08-10 20:46:06 -04009
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070010def configure(conf):
Alexander Afanasyev08d18742018-03-15 16:31:28 -040011 conf.start_msg('Checking C++ compiler version')
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070012
Alexander Afanasyev08d18742018-03-15 16:31:28 -040013 cxx = conf.env.CXX_NAME # generic name of the compiler
Davide Pesavento679c42a2025-03-25 20:50:03 -040014 ccver = get_compiler_ver(conf)
Alexander Afanasyev08d18742018-03-15 16:31:28 -040015 ccverstr = '.'.join(conf.env.CC_VERSION)
16 errmsg = ''
17 warnmsg = ''
18 if cxx == 'gcc':
Davide Pesavento679c42a2025-03-25 20:50:03 -040019 if ccver < (9, 1, 0):
Alexander Afanasyev08d18742018-03-15 16:31:28 -040020 errmsg = ('The version of gcc you are using is too old.\n'
Davide Pesavento679c42a2025-03-25 20:50:03 -040021 '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 Pesaventoaf340ea2023-08-10 20:46:06 -040024 'officially supported and may result in build failures.')
Alexander Afanasyev08d18742018-03-15 16:31:28 -040025 conf.flags = GccFlags()
26 elif cxx == 'clang':
Davide Pesavento7f27ec12022-03-10 20:10:54 -050027 if Utils.unversioned_sys_platform() == 'darwin':
Davide Pesavento679c42a2025-03-25 20:50:03 -040028 if ccver < (11, 0, 0):
Davide Pesavento7f27ec12022-03-10 20:10:54 -050029 errmsg = ('The version of Xcode you are using is too old.\n'
Davide Pesavento679c42a2025-03-25 20:50:03 -040030 '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 Pesavento7f27ec12022-03-10 20:10:54 -050033 'officially supported and may result in build failures.')
Davide Pesaventoaf340ea2023-08-10 20:46:06 -040034 elif ccver < (7, 0, 0):
Alexander Afanasyev08d18742018-03-15 16:31:28 -040035 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesavento679c42a2025-03-25 20:50:03 -040036 '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.')
Alexander Afanasyev08d18742018-03-15 16:31:28 -040040 conf.flags = ClangFlags()
41 else:
Davide Pesavento423553e2022-08-19 20:46:06 -040042 warnmsg = f'{cxx} compiler is unsupported'
Alexander Afanasyev08d18742018-03-15 16:31:28 -040043 conf.flags = CompilerFlags()
44
45 if errmsg:
46 conf.end_msg(ccverstr, color='RED')
47 conf.fatal(errmsg)
48 elif warnmsg:
49 conf.end_msg(ccverstr, color='YELLOW')
Davide Pesavento3d01fa32021-10-03 17:13:38 -040050 Logs.warn('WARNING: ' + warnmsg)
Alexander Afanasyev08d18742018-03-15 16:31:28 -040051 else:
52 conf.end_msg(ccverstr)
53
Davide Pesaventoaf340ea2023-08-10 20:46:06 -040054 conf.areCustomCxxflagsPresent = len(conf.env.CXXFLAGS) > 0
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -080055
Davide Pesavento90034832018-05-30 10:10:31 -040056 # General flags are always applied (e.g., selecting C++ language standard)
Alexander Afanasyev08d18742018-03-15 16:31:28 -040057 generalFlags = conf.flags.getGeneralFlags(conf)
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -080058 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
59 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
60 conf.env.DEFINES += generalFlags['DEFINES']
61
Davide Pesaventoaf340ea2023-08-10 20:46:06 -040062
Davide Pesavento679c42a2025-03-25 20:50:03 -040063def get_compiler_ver(conf):
64 return tuple(int(i) for i in conf.env.CC_VERSION)
65
66
Alexander Afanasyev08d18742018-03-15 16:31:28 -040067@Configure.conf
68def check_compiler_flags(conf):
Alexander Afanasyevc7c99002015-10-09 17:27:30 -070069 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -080070 # corresponding environment variables are not set.
Alexander Afanasyevc7c99002015-10-09 17:27:30 -070071 # DEFINES are always applied.
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070072 if conf.options.debug:
Alexander Afanasyev08d18742018-03-15 16:31:28 -040073 extraFlags = conf.flags.getDebugFlags(conf)
74 if conf.areCustomCxxflagsPresent:
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -080075 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
Alexander Afanasyev08d18742018-03-15 16:31:28 -040076 if missingFlags:
77 Logs.warn('Selected debug mode, but CXXFLAGS is set to a custom value "%s"'
78 % ' '.join(conf.env.CXXFLAGS))
79 Logs.warn('Default flags "%s" will not be used' % ' '.join(missingFlags))
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070080 else:
Alexander Afanasyev08d18742018-03-15 16:31:28 -040081 extraFlags = conf.flags.getOptimizedFlags(conf)
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070082
Alexander Afanasyev08d18742018-03-15 16:31:28 -040083 if not conf.areCustomCxxflagsPresent:
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -080084 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
Alexander Afanasyev984ca9d2016-12-19 13:09:14 -080085 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -080086
87 conf.env.DEFINES += extraFlags['DEFINES']
Shock Jiang2d8483c2014-10-30 10:15:37 -070088
Davide Pesaventoaf340ea2023-08-10 20:46:06 -040089
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070090@Configure.conf
91def add_supported_cxxflags(self, cxxflags):
92 """
Davide Pesaventoaf340ea2023-08-10 20:46:06 -040093 Check which cxxflags are supported by the active compiler and add them to env.CXXFLAGS variable.
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070094 """
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -080095 if len(cxxflags) == 0:
96 return
97
Shock Jiang2d8483c2014-10-30 10:15:37 -070098 self.start_msg('Checking supported CXXFLAGS')
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070099
100 supportedFlags = []
Alexander Afanasyev08d18742018-03-15 16:31:28 -0400101 for flags in cxxflags:
102 flags = Utils.to_list(flags)
103 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
104 supportedFlags += flags
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -0700105
106 self.end_msg(' '.join(supportedFlags))
Alexander Afanasyev984ca9d2016-12-19 13:09:14 -0800107 self.env.prepend_value('CXXFLAGS', supportedFlags)
Shock Jiang2d8483c2014-10-30 10:15:37 -0700108
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400109
Shock Jiang2d8483c2014-10-30 10:15:37 -0700110@Configure.conf
111def add_supported_linkflags(self, linkflags):
112 """
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400113 Check which linkflags are supported by the active compiler and add them to env.LINKFLAGS variable.
Shock Jiang2d8483c2014-10-30 10:15:37 -0700114 """
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800115 if len(linkflags) == 0:
116 return
117
Shock Jiang2d8483c2014-10-30 10:15:37 -0700118 self.start_msg('Checking supported LINKFLAGS')
119
120 supportedFlags = []
Alexander Afanasyev08d18742018-03-15 16:31:28 -0400121 for flags in linkflags:
122 flags = Utils.to_list(flags)
123 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
124 supportedFlags += flags
Shock Jiang2d8483c2014-10-30 10:15:37 -0700125
126 self.end_msg(' '.join(supportedFlags))
Alexander Afanasyev984ca9d2016-12-19 13:09:14 -0800127 self.env.prepend_value('LINKFLAGS', supportedFlags)
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800128
129
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400130class CompilerFlags:
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800131 def getGeneralFlags(self, conf):
Alexander Afanasyev984ca9d2016-12-19 13:09:14 -0800132 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
Davide Pesavento5ca40bb2024-03-12 20:50:42 -0400133 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
134
135 def getDebugFlags(self, conf):
136 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
Davide Pesaventoce6f03b2024-02-10 17:04:11 -0500137 return {
138 'CXXFLAGS': [],
139 'LINKFLAGS': [],
140 'DEFINES': ['BOOST_FILESYSTEM_NO_DEPRECATED'],
141 }
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800142
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800143 def getOptimizedFlags(self, conf):
Alexander Afanasyev984ca9d2016-12-19 13:09:14 -0800144 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800145 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
146
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400147
148class GccClangCommonFlags(CompilerFlags):
Alexander Afanasyevc7c99002015-10-09 17:27:30 -0700149 """
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400150 This class defines common flags that work for both gcc and clang compilers.
Alexander Afanasyevc7c99002015-10-09 17:27:30 -0700151 """
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400152
Alexander Afanasyev08d18742018-03-15 16:31:28 -0400153 def getGeneralFlags(self, conf):
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400154 flags = super().getGeneralFlags(conf)
Davide Pesavento38fd3982022-04-18 22:22:02 -0400155 flags['CXXFLAGS'] += ['-std=c++17']
Davide Pesaventob2034db2022-11-16 17:21:22 -0500156 if Utils.unversioned_sys_platform() != 'darwin':
Davide Pesaventoc7888e62019-01-29 15:20:32 -0500157 flags['LINKFLAGS'] += ['-fuse-ld=lld']
Alexander Afanasyev08d18742018-03-15 16:31:28 -0400158 return flags
159
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400160 __cxxFlags = [
161 '-fdiagnostics-color',
162 '-Wall',
163 '-Wextra',
164 '-Wpedantic',
165 '-Wenum-conversion',
166 '-Wextra-semi',
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400167 '-Wno-unused-parameter',
168 ]
169 __linkFlags = ['-Wl,-O1']
170
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800171 def getDebugFlags(self, conf):
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400172 flags = super().getDebugFlags(conf)
173 flags['CXXFLAGS'] += ['-Og', '-g'] + self.__cxxFlags + [
174 '-Werror',
175 '-Wno-error=deprecated-declarations', # Bug #3795
176 '-Wno-error=maybe-uninitialized', # Bug #1615
177 ]
178 flags['LINKFLAGS'] += self.__linkFlags
Davide Pesaventoce6f03b2024-02-10 17:04:11 -0500179 # Enable assertions in libstdc++
180 # https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html
181 flags['DEFINES'] += ['_GLIBCXX_ASSERTIONS=1']
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800182 return flags
183
184 def getOptimizedFlags(self, conf):
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400185 flags = super().getOptimizedFlags(conf)
186 flags['CXXFLAGS'] += ['-O2', '-g1'] + self.__cxxFlags
187 flags['LINKFLAGS'] += self.__linkFlags
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800188 return flags
189
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400190
191class GccFlags(GccClangCommonFlags):
192 __cxxFlags = [
193 '-Wcatch-value=2',
194 '-Wcomma-subscript', # enabled by default in C++20
195 '-Wduplicated-branches',
196 '-Wduplicated-cond',
197 '-Wlogical-op',
198 '-Wredundant-tags',
199 '-Wvolatile', # enabled by default in C++20
200 ]
201
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800202 def getDebugFlags(self, conf):
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400203 flags = super().getDebugFlags(conf)
204 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesavento7f27ec12022-03-10 20:10:54 -0500205 if platform.machine() == 'armv7l':
Davide Pesavento3d01fa32021-10-03 17:13:38 -0400206 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Alexander Afanasyevc7c99002015-10-09 17:27:30 -0700207 return flags
208
209 def getOptimizedFlags(self, conf):
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400210 flags = super().getOptimizedFlags(conf)
211 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesavento7f27ec12022-03-10 20:10:54 -0500212 if platform.machine() == 'armv7l':
Davide Pesavento3d01fa32021-10-03 17:13:38 -0400213 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800214 return flags
215
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400216
217class ClangFlags(GccClangCommonFlags):
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800218 def getGeneralFlags(self, conf):
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400219 flags = super().getGeneralFlags(conf)
Davide Pesavento3d01fa32021-10-03 17:13:38 -0400220 if Utils.unversioned_sys_platform() == 'darwin':
Alexander Afanasyev08d18742018-03-15 16:31:28 -0400221 # Bug #4296
Davide Pesavento423553e2022-08-19 20:46:06 -0400222 brewdir = '/opt/homebrew' if platform.machine() == 'arm64' else '/usr/local'
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400223 flags['CXXFLAGS'] += [
224 ['-isystem', f'{brewdir}/include'], # for Homebrew
225 ['-isystem', '/opt/local/include'], # for MacPorts
226 ]
Davide Pesavento3d01fa32021-10-03 17:13:38 -0400227 elif Utils.unversioned_sys_platform() == 'freebsd':
228 # Bug #4790
229 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include']]
Davide Pesavento679c42a2025-03-25 20:50:03 -0400230 if get_compiler_ver(conf) >= (18, 0, 0) and get_compiler_ver(conf) < (20, 1, 0):
Davide Pesaventoce6f03b2024-02-10 17:04:11 -0500231 # Bug #5300
232 flags['CXXFLAGS'] += ['-Wno-enum-constexpr-conversion']
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800233 return flags
234
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400235 __cxxFlags = [
236 '-Wundefined-func-template',
237 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
238 ]
239
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800240 def getDebugFlags(self, conf):
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400241 flags = super().getDebugFlags(conf)
242 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesaventoce6f03b2024-02-10 17:04:11 -0500243 # Enable assertions in libc++
Davide Pesavento679c42a2025-03-25 20:50:03 -0400244 if get_compiler_ver(conf) >= (18, 0, 0):
Davide Pesaventoce6f03b2024-02-10 17:04:11 -0500245 # https://libcxx.llvm.org/Hardening.html
246 flags['DEFINES'] += ['_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_EXTENSIVE']
Davide Pesavento679c42a2025-03-25 20:50:03 -0400247 elif get_compiler_ver(conf) >= (15, 0, 0):
Davide Pesaventoce6f03b2024-02-10 17:04:11 -0500248 # https://releases.llvm.org/15.0.0/projects/libcxx/docs/UsingLibcxx.html#enabling-the-safe-libc-mode
249 flags['DEFINES'] += ['_LIBCPP_ENABLE_ASSERTIONS=1']
Davide Pesavento5ca40bb2024-03-12 20:50:42 -0400250 # Tell libc++ to avoid including transitive headers
251 # https://libcxx.llvm.org/DesignDocs/HeaderRemovalPolicy.html
252 flags['DEFINES'] += ['_LIBCPP_REMOVE_TRANSITIVE_INCLUDES=1']
Alexander Afanasyevc7c99002015-10-09 17:27:30 -0700253 return flags
254
255 def getOptimizedFlags(self, conf):
Davide Pesaventoaf340ea2023-08-10 20:46:06 -0400256 flags = super().getOptimizedFlags(conf)
257 flags['CXXFLAGS'] += self.__cxxFlags
Alexander Afanasyev83b7c2f2015-01-23 13:08:34 -0800258 return flags