blob: e412692782f29c5be5dcb1c31698055ff4466fe8 [file] [log] [blame]
Davide Pesavento80b50fb2021-10-07 02:04:11 -04001import platform
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -04002from waflib import Configure, Logs, Utils
3
Davide Pesavento9e7520f2023-08-11 17:35:35 -04004
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -04005def options(opt):
6 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
Davide Pesavento80b50fb2021-10-07 02:04:11 -04007 help='Compile in debugging mode with minimal optimizations (-Og)')
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -04008
Davide Pesavento9e7520f2023-08-11 17:35:35 -04009
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040010def 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':
Davide Pesaventoa0ae15d2022-03-09 18:10:23 -050019 if ccver < (7, 4, 0):
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040020 errmsg = ('The version of gcc you are using is too old.\n'
Davide Pesavento46ba1e52023-04-17 02:36:33 -040021 'The minimum supported gcc version is 9.3.')
22 elif ccver < (9, 3, 0):
23 warnmsg = ('Using a version of gcc older than 9.3 is not '
24 'officially supported and may result in build failures.')
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040025 conf.flags = GccFlags()
26 elif cxx == 'clang':
Davide Pesaventoa0ae15d2022-03-09 18:10:23 -050027 if Utils.unversioned_sys_platform() == 'darwin':
28 if ccver < (10, 0, 0):
29 errmsg = ('The version of Xcode you are using is too old.\n'
Davide Pesaventofb0d7cd2024-07-21 14:06:02 -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 Pesaventoa0ae15d2022-03-09 18:10:23 -050033 'officially supported and may result in build failures.')
Davide Pesavento46ba1e52023-04-17 02:36:33 -040034 elif ccver < (7, 0, 0):
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040035 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesavento46ba1e52023-04-17 02:36:33 -040036 'The minimum supported clang version is 7.0.')
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040037 conf.flags = ClangFlags()
38 else:
Davide Pesavento27dd70c2022-08-19 16:24:28 -040039 warnmsg = f'{cxx} compiler is unsupported'
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040040 conf.flags = CompilerFlags()
41
42 if errmsg:
43 conf.end_msg(ccverstr, color='RED')
44 conf.fatal(errmsg)
45 elif warnmsg:
46 conf.end_msg(ccverstr, color='YELLOW')
Davide Pesavento80b50fb2021-10-07 02:04:11 -040047 Logs.warn('WARNING: ' + warnmsg)
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040048 else:
49 conf.end_msg(ccverstr)
50
Davide Pesavento9e7520f2023-08-11 17:35:35 -040051 conf.areCustomCxxflagsPresent = len(conf.env.CXXFLAGS) > 0
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040052
53 # General flags are always applied (e.g., selecting C++ language standard)
54 generalFlags = conf.flags.getGeneralFlags(conf)
55 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
56 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
57 conf.env.DEFINES += generalFlags['DEFINES']
58
Davide Pesavento9e7520f2023-08-11 17:35:35 -040059
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040060@Configure.conf
61def check_compiler_flags(conf):
62 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
63 # corresponding environment variables are not set.
64 # DEFINES are always applied.
65 if conf.options.debug:
66 extraFlags = conf.flags.getDebugFlags(conf)
67 if conf.areCustomCxxflagsPresent:
68 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
69 if missingFlags:
70 Logs.warn('Selected debug mode, but CXXFLAGS is set to a custom value "%s"'
71 % ' '.join(conf.env.CXXFLAGS))
72 Logs.warn('Default flags "%s" will not be used' % ' '.join(missingFlags))
73 else:
74 extraFlags = conf.flags.getOptimizedFlags(conf)
75
76 if not conf.areCustomCxxflagsPresent:
77 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
78 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
79
80 conf.env.DEFINES += extraFlags['DEFINES']
81
Davide Pesavento9e7520f2023-08-11 17:35:35 -040082
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040083@Configure.conf
84def add_supported_cxxflags(self, cxxflags):
85 """
Davide Pesavento9e7520f2023-08-11 17:35:35 -040086 Check which cxxflags are supported by the active compiler and add them to env.CXXFLAGS variable.
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040087 """
88 if len(cxxflags) == 0:
89 return
90
91 self.start_msg('Checking supported CXXFLAGS')
92
93 supportedFlags = []
94 for flags in cxxflags:
95 flags = Utils.to_list(flags)
96 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
97 supportedFlags += flags
98
99 self.end_msg(' '.join(supportedFlags))
100 self.env.prepend_value('CXXFLAGS', supportedFlags)
101
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400102
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400103@Configure.conf
104def add_supported_linkflags(self, linkflags):
105 """
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400106 Check which linkflags are supported by the active compiler and add them to env.LINKFLAGS variable.
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400107 """
108 if len(linkflags) == 0:
109 return
110
111 self.start_msg('Checking supported LINKFLAGS')
112
113 supportedFlags = []
114 for flags in linkflags:
115 flags = Utils.to_list(flags)
116 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
117 supportedFlags += flags
118
119 self.end_msg(' '.join(supportedFlags))
120 self.env.prepend_value('LINKFLAGS', supportedFlags)
121
122
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400123class CompilerFlags:
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400124 def getCompilerVersion(self, conf):
125 return tuple(int(i) for i in conf.env.CC_VERSION)
126
127 def getGeneralFlags(self, conf):
128 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
Davide Pesaventoecb2db12024-03-13 19:00:03 -0400129 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
130
131 def getDebugFlags(self, conf):
132 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
Davide Pesavento74b3a7e2023-11-11 17:40:03 -0500133 return {
134 'CXXFLAGS': [],
135 'LINKFLAGS': [],
136 'DEFINES': ['BOOST_ASIO_NO_DEPRECATED', 'BOOST_FILESYSTEM_NO_DEPRECATED'],
137 }
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400138
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400139 def getOptimizedFlags(self, conf):
140 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
141 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
142
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400143
144class GccClangCommonFlags(CompilerFlags):
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400145 """
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400146 This class defines common flags that work for both gcc and clang compilers.
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400147 """
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400148
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400149 def getGeneralFlags(self, conf):
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400150 flags = super().getGeneralFlags(conf)
Davide Pesaventobde084f2022-04-17 00:21:35 -0400151 flags['CXXFLAGS'] += ['-std=c++17']
Davide Pesaventof5248012022-11-15 14:25:34 -0500152 if Utils.unversioned_sys_platform() != 'darwin':
Davide Pesavento0f4ff532019-01-29 15:38:25 -0500153 flags['LINKFLAGS'] += ['-fuse-ld=lld']
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400154 return flags
155
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400156 __cxxFlags = [
157 '-fdiagnostics-color',
158 '-Wall',
159 '-Wextra',
160 '-Wpedantic',
161 '-Wenum-conversion',
162 '-Wextra-semi',
163 '-Wnon-virtual-dtor',
164 '-Wno-unused-parameter',
165 ]
166 __linkFlags = ['-Wl,-O1']
167
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400168 def getDebugFlags(self, conf):
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400169 flags = super().getDebugFlags(conf)
170 flags['CXXFLAGS'] += ['-Og', '-g'] + self.__cxxFlags + [
171 '-Werror',
172 '-Wno-error=deprecated-declarations', # Bug #3795
173 '-Wno-error=maybe-uninitialized', # Bug #1615
174 ]
175 flags['LINKFLAGS'] += self.__linkFlags
Davide Pesaventofad12642024-01-19 00:38:07 -0500176 # Enable assertions in libstdc++
177 # https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html
178 flags['DEFINES'] += ['_GLIBCXX_ASSERTIONS=1']
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400179 return flags
180
181 def getOptimizedFlags(self, conf):
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400182 flags = super().getOptimizedFlags(conf)
183 flags['CXXFLAGS'] += ['-O2', '-g1'] + self.__cxxFlags
184 flags['LINKFLAGS'] += self.__linkFlags
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400185 return flags
186
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400187
188class GccFlags(GccClangCommonFlags):
189 __cxxFlags = [
190 '-Wcatch-value=2',
191 '-Wcomma-subscript', # enabled by default in C++20
192 '-Wduplicated-branches',
193 '-Wduplicated-cond',
194 '-Wlogical-op',
195 '-Wredundant-tags',
196 '-Wvolatile', # enabled by default in C++20
197 ]
198
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400199 def getDebugFlags(self, conf):
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400200 flags = super().getDebugFlags(conf)
201 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesaventoa0ae15d2022-03-09 18:10:23 -0500202 if platform.machine() == 'armv7l':
Davide Pesavento80b50fb2021-10-07 02:04:11 -0400203 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400204 return flags
205
206 def getOptimizedFlags(self, conf):
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400207 flags = super().getOptimizedFlags(conf)
208 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesaventoa0ae15d2022-03-09 18:10:23 -0500209 if platform.machine() == 'armv7l':
Davide Pesavento80b50fb2021-10-07 02:04:11 -0400210 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400211 return flags
212
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400213
214class ClangFlags(GccClangCommonFlags):
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400215 def getGeneralFlags(self, conf):
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400216 flags = super().getGeneralFlags(conf)
Davide Pesavento80b50fb2021-10-07 02:04:11 -0400217 if Utils.unversioned_sys_platform() == 'darwin':
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400218 # Bug #4296
Davide Pesavento27dd70c2022-08-19 16:24:28 -0400219 brewdir = '/opt/homebrew' if platform.machine() == 'arm64' else '/usr/local'
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400220 flags['CXXFLAGS'] += [
221 ['-isystem', f'{brewdir}/include'], # for Homebrew
222 ['-isystem', '/opt/local/include'], # for MacPorts
223 ]
Davide Pesavento80b50fb2021-10-07 02:04:11 -0400224 elif Utils.unversioned_sys_platform() == 'freebsd':
Davide Pesavento3c7f6452021-10-02 04:06:26 -0400225 # Bug #4790
226 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include']]
Davide Pesaventofad12642024-01-19 00:38:07 -0500227 if self.getCompilerVersion(conf) >= (18, 0, 0):
228 # Bug #5300
229 flags['CXXFLAGS'] += ['-Wno-enum-constexpr-conversion']
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400230 return flags
231
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400232 __cxxFlags = [
233 '-Wundefined-func-template',
234 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
235 ]
236
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400237 def getDebugFlags(self, conf):
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400238 flags = super().getDebugFlags(conf)
239 flags['CXXFLAGS'] += self.__cxxFlags
Davide Pesaventofad12642024-01-19 00:38:07 -0500240 # Enable assertions in libc++
241 if self.getCompilerVersion(conf) >= (18, 0, 0):
242 # https://libcxx.llvm.org/Hardening.html
243 flags['DEFINES'] += ['_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_EXTENSIVE']
244 elif self.getCompilerVersion(conf) >= (15, 0, 0):
245 # https://releases.llvm.org/15.0.0/projects/libcxx/docs/UsingLibcxx.html#enabling-the-safe-libc-mode
246 flags['DEFINES'] += ['_LIBCPP_ENABLE_ASSERTIONS=1']
Davide Pesaventoecb2db12024-03-13 19:00:03 -0400247 # Tell libc++ to avoid including transitive headers
248 # https://libcxx.llvm.org/DesignDocs/HeaderRemovalPolicy.html
249 flags['DEFINES'] += ['_LIBCPP_REMOVE_TRANSITIVE_INCLUDES=1']
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400250 return flags
251
252 def getOptimizedFlags(self, conf):
Davide Pesavento9e7520f2023-08-11 17:35:35 -0400253 flags = super().getOptimizedFlags(conf)
254 flags['CXXFLAGS'] += self.__cxxFlags
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400255 return flags