blob: 48a88747654f6a853e2a4e65b91cda8d4e439cc7 [file] [log] [blame]
Davide Pesaventob07d7a92020-05-13 23:30:07 -04001import platform
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -05002from waflib import Configure, Logs, Utils
Junxiao Shif7191242015-03-19 05:53:41 -07003
Davide Pesaventodd808b02023-08-06 16:00:02 -04004
Junxiao Shif7191242015-03-19 05:53:41 -07005def options(opt):
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -05006 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
Davide Pesaventob07d7a92020-05-13 23:30:07 -04007 help='Compile in debugging mode with minimal optimizations (-Og)')
Junxiao Shif7191242015-03-19 05:53:41 -07008
Davide Pesaventodd808b02023-08-06 16:00:02 -04009
Junxiao Shif7191242015-03-19 05:53:41 -070010def configure(conf):
Davide Pesaventoc0702702017-08-24 22:04:00 -040011 conf.start_msg('Checking C++ compiler version')
12
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050013 cxx = conf.env.CXX_NAME # generic name of the compiler
Davide Pesavento4b465b52025-03-18 02:20:32 -040014 ccver = get_compiler_ver(conf)
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050015 ccverstr = '.'.join(conf.env.CC_VERSION)
Davide Pesaventoc0702702017-08-24 22:04:00 -040016 errmsg = ''
17 warnmsg = ''
Junxiao Shif7191242015-03-19 05:53:41 -070018 if cxx == 'gcc':
Davide Pesavento8357bbe2024-12-10 20:44:04 -050019 if ccver < (9, 1, 0):
Davide Pesaventoc0702702017-08-24 22:04:00 -040020 errmsg = ('The version of gcc you are using is too old.\n'
Davide Pesavento8357bbe2024-12-10 20:44:04 -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 Pesaventoad266072023-03-07 21:10:55 -050024 'officially supported and may result in build failures.')
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040025 conf.flags = GccFlags()
Junxiao Shif7191242015-03-19 05:53:41 -070026 elif cxx == 'clang':
Davide Pesaventob04c52b2022-02-20 15:20:02 -050027 if Utils.unversioned_sys_platform() == 'darwin':
Davide Pesavento8357bbe2024-12-10 20:44:04 -050028 if ccver < (11, 0, 0):
Davide Pesaventob04c52b2022-02-20 15:20:02 -050029 errmsg = ('The version of Xcode you are using is too old.\n'
Davide Pesavento5b71cfa2024-06-07 17:44:06 -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 Pesaventob04c52b2022-02-20 15:20:02 -050033 'officially supported and may result in build failures.')
Davide Pesaventoad266072023-03-07 21:10:55 -050034 elif ccver < (7, 0, 0):
Davide Pesaventoc0702702017-08-24 22:04:00 -040035 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesavento8357bbe2024-12-10 20:44:04 -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.')
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040040 conf.flags = ClangFlags()
Junxiao Shif7191242015-03-19 05:53:41 -070041 else:
Davide Pesavento423e58a2022-08-12 15:51:42 -040042 warnmsg = f'{cxx} compiler is unsupported'
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040043 conf.flags = CompilerFlags()
Davide Pesaventoc0702702017-08-24 22:04:00 -040044
45 if errmsg:
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050046 conf.end_msg(ccverstr, color='RED')
Davide Pesaventoc0702702017-08-24 22:04:00 -040047 conf.fatal(errmsg)
48 elif warnmsg:
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050049 conf.end_msg(ccverstr, color='YELLOW')
Davide Pesaventob07d7a92020-05-13 23:30:07 -040050 Logs.warn('WARNING: ' + warnmsg)
Davide Pesaventoc0702702017-08-24 22:04:00 -040051 else:
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050052 conf.end_msg(ccverstr)
Junxiao Shif7191242015-03-19 05:53:41 -070053
Davide Pesaventodd808b02023-08-06 16:00:02 -040054 conf.areCustomCxxflagsPresent = len(conf.env.CXXFLAGS) > 0
Junxiao Shif7191242015-03-19 05:53:41 -070055
Davide Pesavento60f8cc12018-05-10 22:05:21 -040056 # General flags are always applied (e.g., selecting C++ language standard)
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040057 generalFlags = conf.flags.getGeneralFlags(conf)
Junxiao Shif7191242015-03-19 05:53:41 -070058 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
59 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
60 conf.env.DEFINES += generalFlags['DEFINES']
61
Davide Pesaventodd808b02023-08-06 16:00:02 -040062
Davide Pesavento4b465b52025-03-18 02:20:32 -040063def get_compiler_ver(conf):
64 return tuple(int(i) for i in conf.env.CC_VERSION)
65
66
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040067@Configure.conf
68def check_compiler_flags(conf):
Junxiao Shic8a0a252015-10-05 07:25:02 -070069 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
Junxiao Shif7191242015-03-19 05:53:41 -070070 # corresponding environment variables are not set.
Junxiao Shic8a0a252015-10-05 07:25:02 -070071 # DEFINES are always applied.
Junxiao Shif7191242015-03-19 05:53:41 -070072 if conf.options.debug:
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040073 extraFlags = conf.flags.getDebugFlags(conf)
74 if conf.areCustomCxxflagsPresent:
Junxiao Shif7191242015-03-19 05:53:41 -070075 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050076 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))
Junxiao Shif7191242015-03-19 05:53:41 -070080 else:
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040081 extraFlags = conf.flags.getOptimizedFlags(conf)
Junxiao Shif7191242015-03-19 05:53:41 -070082
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040083 if not conf.areCustomCxxflagsPresent:
Junxiao Shif7191242015-03-19 05:53:41 -070084 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
Davide Pesavento3e79c9c2015-11-01 20:38:28 +010085 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
Junxiao Shif7191242015-03-19 05:53:41 -070086
87 conf.env.DEFINES += extraFlags['DEFINES']
88
Davide Pesaventodd808b02023-08-06 16:00:02 -040089
Junxiao Shif7191242015-03-19 05:53:41 -070090@Configure.conf
91def add_supported_cxxflags(self, cxxflags):
92 """
Davide Pesavento8148cd42023-08-06 14:01:32 -040093 Check which cxxflags are supported by the active compiler and add them to env.CXXFLAGS variable.
Junxiao Shif7191242015-03-19 05:53:41 -070094 """
95 if len(cxxflags) == 0:
96 return
97
98 self.start_msg('Checking supported CXXFLAGS')
99
100 supportedFlags = []
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -0400101 for flags in cxxflags:
102 flags = Utils.to_list(flags)
103 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
104 supportedFlags += flags
Junxiao Shif7191242015-03-19 05:53:41 -0700105
106 self.end_msg(' '.join(supportedFlags))
Davide Pesavento89d91752016-08-14 11:34:09 +0200107 self.env.prepend_value('CXXFLAGS', supportedFlags)
Junxiao Shif7191242015-03-19 05:53:41 -0700108
Davide Pesaventodd808b02023-08-06 16:00:02 -0400109
Junxiao Shif7191242015-03-19 05:53:41 -0700110@Configure.conf
111def add_supported_linkflags(self, linkflags):
112 """
Davide Pesavento8148cd42023-08-06 14:01:32 -0400113 Check which linkflags are supported by the active compiler and add them to env.LINKFLAGS variable.
Junxiao Shif7191242015-03-19 05:53:41 -0700114 """
115 if len(linkflags) == 0:
116 return
117
118 self.start_msg('Checking supported LINKFLAGS')
119
120 supportedFlags = []
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -0400121 for flags in linkflags:
122 flags = Utils.to_list(flags)
123 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
124 supportedFlags += flags
Junxiao Shif7191242015-03-19 05:53:41 -0700125
126 self.end_msg(' '.join(supportedFlags))
Davide Pesavento89d91752016-08-14 11:34:09 +0200127 self.env.prepend_value('LINKFLAGS', supportedFlags)
Junxiao Shif7191242015-03-19 05:53:41 -0700128
129
Davide Pesaventodd808b02023-08-06 16:00:02 -0400130class CompilerFlags:
Junxiao Shif7191242015-03-19 05:53:41 -0700131 def getGeneralFlags(self, conf):
Davide Pesavento3e79c9c2015-11-01 20:38:28 +0100132 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
Davide Pesaventof6d75992024-02-27 19:56:06 -0500133 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 Pesavento7e9d7e42023-11-11 15:00:03 -0500137 return {
138 'CXXFLAGS': [],
139 'LINKFLAGS': [],
Davide Pesavento130975c2024-12-14 15:04:04 -0500140 'DEFINES': ['BOOST_ASIO_NO_DEPRECATED'],
Davide Pesavento7e9d7e42023-11-11 15:00:03 -0500141 }
Junxiao Shif7191242015-03-19 05:53:41 -0700142
Junxiao Shif7191242015-03-19 05:53:41 -0700143 def getOptimizedFlags(self, conf):
Davide Pesavento3e79c9c2015-11-01 20:38:28 +0100144 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
Junxiao Shif7191242015-03-19 05:53:41 -0700145 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
146
Davide Pesaventodd808b02023-08-06 16:00:02 -0400147
148class GccClangCommonFlags(CompilerFlags):
Junxiao Shic8a0a252015-10-05 07:25:02 -0700149 """
Davide Pesavento8148cd42023-08-06 14:01:32 -0400150 This class defines common flags that work for both gcc and clang compilers.
Junxiao Shic8a0a252015-10-05 07:25:02 -0700151 """
Davide Pesaventodd808b02023-08-06 16:00:02 -0400152
Davide Pesaventodd0e1952017-06-24 13:37:13 -0400153 def getGeneralFlags(self, conf):
Davide Pesaventodd808b02023-08-06 16:00:02 -0400154 flags = super().getGeneralFlags(conf)
Davide Pesaventob3570c62022-02-19 19:19:00 -0500155 flags['CXXFLAGS'] += ['-std=c++17']
Davide Pesavento3d7b0332022-10-05 15:30:02 -0400156 if Utils.unversioned_sys_platform() != 'darwin':
Davide Pesaventoe1b18a62018-12-19 01:17:42 -0500157 flags['LINKFLAGS'] += ['-fuse-ld=lld']
Davide Pesaventodd0e1952017-06-24 13:37:13 -0400158 return flags
159
Davide Pesaventodd808b02023-08-06 16:00:02 -0400160 __cxxFlags = [
161 '-fdiagnostics-color',
162 '-Wall',
163 '-Wextra',
164 '-Wpedantic',
165 '-Wenum-conversion',
166 '-Wextra-semi',
Davide Pesaventodd808b02023-08-06 16:00:02 -0400167 '-Wno-unused-parameter',
168 ]
169 __linkFlags = ['-Wl,-O1']
170
Junxiao Shif7191242015-03-19 05:53:41 -0700171 def getDebugFlags(self, conf):
Davide Pesaventodd808b02023-08-06 16:00:02 -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 Pesaventoa9d7db12024-01-15 00:30:05 -0500179 # Enable assertions in libstdc++
180 # https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html
181 flags['DEFINES'] += ['_GLIBCXX_ASSERTIONS=1']
Junxiao Shif7191242015-03-19 05:53:41 -0700182 return flags
183
184 def getOptimizedFlags(self, conf):
Davide Pesaventodd808b02023-08-06 16:00:02 -0400185 flags = super().getOptimizedFlags(conf)
186 flags['CXXFLAGS'] += ['-O2', '-g1'] + self.__cxxFlags
187 flags['LINKFLAGS'] += self.__linkFlags
Junxiao Shif7191242015-03-19 05:53:41 -0700188 return flags
189
Davide Pesaventodd808b02023-08-06 16:00:02 -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
Junxiao Shif7191242015-03-19 05:53:41 -0700202 def getDebugFlags(self, conf):
Davide Pesaventodd808b02023-08-06 16:00:02 -0400203 flags = super().getDebugFlags(conf)
204 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesaventob04c52b2022-02-20 15:20:02 -0500205 if platform.machine() == 'armv7l':
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400206 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Junxiao Shic8a0a252015-10-05 07:25:02 -0700207 return flags
208
209 def getOptimizedFlags(self, conf):
Davide Pesaventodd808b02023-08-06 16:00:02 -0400210 flags = super().getOptimizedFlags(conf)
211 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesaventob04c52b2022-02-20 15:20:02 -0500212 if platform.machine() == 'armv7l':
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400213 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Junxiao Shif7191242015-03-19 05:53:41 -0700214 return flags
215
Davide Pesaventodd808b02023-08-06 16:00:02 -0400216
217class ClangFlags(GccClangCommonFlags):
Junxiao Shif7191242015-03-19 05:53:41 -0700218 def getGeneralFlags(self, conf):
Davide Pesaventodd808b02023-08-06 16:00:02 -0400219 flags = super().getGeneralFlags(conf)
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400220 if Utils.unversioned_sys_platform() == 'darwin':
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -0500221 # Bug #4296
Davide Pesavento423e58a2022-08-12 15:51:42 -0400222 brewdir = '/opt/homebrew' if platform.machine() == 'arm64' else '/usr/local'
Davide Pesaventodd808b02023-08-06 16:00:02 -0400223 flags['CXXFLAGS'] += [
224 ['-isystem', f'{brewdir}/include'], # for Homebrew
225 ['-isystem', '/opt/local/include'], # for MacPorts
226 ]
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400227 elif Utils.unversioned_sys_platform() == 'freebsd':
228 # Bug #4790
229 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include']]
Davide Pesavento4b465b52025-03-18 02:20:32 -0400230 if get_compiler_ver(conf) >= (18, 0, 0) and get_compiler_ver(conf) < (20, 1, 0):
Davide Pesavento0a675562024-01-13 21:54:52 -0500231 # Bug #5300
232 flags['CXXFLAGS'] += ['-Wno-enum-constexpr-conversion']
Junxiao Shif7191242015-03-19 05:53:41 -0700233 return flags
234
Davide Pesaventodd808b02023-08-06 16:00:02 -0400235 __cxxFlags = [
236 '-Wundefined-func-template',
237 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
238 ]
239
Junxiao Shif7191242015-03-19 05:53:41 -0700240 def getDebugFlags(self, conf):
Davide Pesaventodd808b02023-08-06 16:00:02 -0400241 flags = super().getDebugFlags(conf)
242 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesaventoa9d7db12024-01-15 00:30:05 -0500243 # Enable assertions in libc++
Davide Pesavento4b465b52025-03-18 02:20:32 -0400244 if get_compiler_ver(conf) >= (18, 0, 0):
Davide Pesaventoa9d7db12024-01-15 00:30:05 -0500245 # https://libcxx.llvm.org/Hardening.html
246 flags['DEFINES'] += ['_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_EXTENSIVE']
Davide Pesavento4b465b52025-03-18 02:20:32 -0400247 elif get_compiler_ver(conf) >= (15, 0, 0):
Davide Pesaventoa9d7db12024-01-15 00:30:05 -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 Pesaventof6d75992024-02-27 19:56:06 -0500250 # Tell libc++ to avoid including transitive headers
251 # https://libcxx.llvm.org/DesignDocs/HeaderRemovalPolicy.html
252 flags['DEFINES'] += ['_LIBCPP_REMOVE_TRANSITIVE_INCLUDES=1']
Junxiao Shic8a0a252015-10-05 07:25:02 -0700253 return flags
254
255 def getOptimizedFlags(self, conf):
Davide Pesaventodd808b02023-08-06 16:00:02 -0400256 flags = super().getOptimizedFlags(conf)
257 flags['CXXFLAGS'] += self.__cxxFlags
Junxiao Shif7191242015-03-19 05:53:41 -0700258 return flags