blob: 25aa974f20c5cd79e27cf42212e406454a63c71f [file] [log] [blame]
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07002
Davide Pesavento71c622b2020-04-24 01:39:01 -04003import platform
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05004from waflib import Configure, Logs, Utils
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07005
Davide Pesavento12b8aaa2023-08-06 19:18:51 -04006
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07007def options(opt):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05008 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
Davide Pesavento71c622b2020-04-24 01:39:01 -04009 help='Compile in debugging mode with minimal optimizations (-Og)')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070010
Davide Pesavento12b8aaa2023-08-06 19:18:51 -040011
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070012def configure(conf):
Davide Pesavento88a0d812017-08-19 21:31:42 -040013 conf.start_msg('Checking C++ compiler version')
14
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050015 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)
Davide Pesavento88a0d812017-08-19 21:31:42 -040018 errmsg = ''
19 warnmsg = ''
Alexander Afanasyev01515792014-12-16 14:20:01 -080020 if cxx == 'gcc':
Davide Pesavento541a8222022-03-01 15:08:42 -050021 if ccver < (7, 4, 0):
Davide Pesavento88a0d812017-08-19 21:31:42 -040022 errmsg = ('The version of gcc you are using is too old.\n'
Davide Pesavento762548b2023-03-05 11:02:02 -050023 '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.')
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -040027 conf.flags = GccFlags()
Alexander Afanasyev01515792014-12-16 14:20:01 -080028 elif cxx == 'clang':
Davide Pesavento541a8222022-03-01 15:08:42 -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 Pesavento762548b2023-03-05 11:02:02 -050032 '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 Pesavento541a8222022-03-01 15:08:42 -050035 'officially supported and may result in build failures.')
Davide Pesavento762548b2023-03-05 11:02:02 -050036 elif ccver < (7, 0, 0):
Davide Pesavento88a0d812017-08-19 21:31:42 -040037 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesavento762548b2023-03-05 11:02:02 -050038 'The minimum supported clang version is 7.0.')
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -040039 conf.flags = ClangFlags()
Alexander Afanasyev01515792014-12-16 14:20:01 -080040 else:
Davide Pesaventof6625002022-07-31 17:15:02 -040041 warnmsg = f'{cxx} compiler is unsupported'
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -040042 conf.flags = CompilerFlags()
Davide Pesavento88a0d812017-08-19 21:31:42 -040043
44 if errmsg:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050045 conf.end_msg(ccverstr, color='RED')
Davide Pesavento88a0d812017-08-19 21:31:42 -040046 conf.fatal(errmsg)
47 elif warnmsg:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050048 conf.end_msg(ccverstr, color='YELLOW')
Davide Pesavento71c622b2020-04-24 01:39:01 -040049 Logs.warn('WARNING: ' + warnmsg)
Davide Pesavento88a0d812017-08-19 21:31:42 -040050 else:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050051 conf.end_msg(ccverstr)
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070052
Davide Pesavento12b8aaa2023-08-06 19:18:51 -040053 conf.areCustomCxxflagsPresent = len(conf.env.CXXFLAGS) > 0
Alexander Afanasyev01515792014-12-16 14:20:01 -080054
Davide Pesavento1fd00242018-05-20 00:11:01 -040055 # General flags are always applied (e.g., selecting C++ language standard)
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -040056 generalFlags = conf.flags.getGeneralFlags(conf)
Alexander Afanasyev01515792014-12-16 14:20:01 -080057 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
58 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
59 conf.env.DEFINES += generalFlags['DEFINES']
60
Davide Pesavento12b8aaa2023-08-06 19:18:51 -040061
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -040062@Configure.conf
63def check_compiler_flags(conf):
Davide Pesaventod06ea052015-10-02 01:48:24 +020064 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
Alexander Afanasyev01515792014-12-16 14:20:01 -080065 # corresponding environment variables are not set.
Davide Pesaventod06ea052015-10-02 01:48:24 +020066 # DEFINES are always applied.
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070067 if conf.options.debug:
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -040068 extraFlags = conf.flags.getDebugFlags(conf)
69 if conf.areCustomCxxflagsPresent:
Alexander Afanasyev01515792014-12-16 14:20:01 -080070 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050071 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))
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070075 else:
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -040076 extraFlags = conf.flags.getOptimizedFlags(conf)
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070077
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -040078 if not conf.areCustomCxxflagsPresent:
Alexander Afanasyev01515792014-12-16 14:20:01 -080079 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
Davide Pesavento7c02b472015-10-28 20:50:17 +010080 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
Alexander Afanasyev01515792014-12-16 14:20:01 -080081
82 conf.env.DEFINES += extraFlags['DEFINES']
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020083
Davide Pesavento12b8aaa2023-08-06 19:18:51 -040084
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070085@Configure.conf
86def add_supported_cxxflags(self, cxxflags):
87 """
Davide Pesavento12b8aaa2023-08-06 19:18:51 -040088 Check which cxxflags are supported by the active compiler and add them to env.CXXFLAGS variable.
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070089 """
Alexander Afanasyev01515792014-12-16 14:20:01 -080090 if len(cxxflags) == 0:
91 return
92
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020093 self.start_msg('Checking supported CXXFLAGS')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070094
95 supportedFlags = []
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -040096 for flags in cxxflags:
97 flags = Utils.to_list(flags)
98 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
99 supportedFlags += flags
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700100
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -0700101 self.end_msg(' '.join(supportedFlags))
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200102 self.env.prepend_value('CXXFLAGS', supportedFlags)
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +0200103
Davide Pesavento12b8aaa2023-08-06 19:18:51 -0400104
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +0200105@Configure.conf
106def add_supported_linkflags(self, linkflags):
107 """
Davide Pesavento12b8aaa2023-08-06 19:18:51 -0400108 Check which linkflags are supported by the active compiler and add them to env.LINKFLAGS variable.
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +0200109 """
Alexander Afanasyev01515792014-12-16 14:20:01 -0800110 if len(linkflags) == 0:
111 return
112
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +0200113 self.start_msg('Checking supported LINKFLAGS')
114
115 supportedFlags = []
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -0400116 for flags in linkflags:
117 flags = Utils.to_list(flags)
118 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
119 supportedFlags += flags
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +0200120
121 self.end_msg(' '.join(supportedFlags))
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200122 self.env.prepend_value('LINKFLAGS', supportedFlags)
Alexander Afanasyev01515792014-12-16 14:20:01 -0800123
124
125class CompilerFlags(object):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500126 def getCompilerVersion(self, conf):
127 return tuple(int(i) for i in conf.env.CC_VERSION)
128
Alexander Afanasyev01515792014-12-16 14:20:01 -0800129 def getGeneralFlags(self, conf):
Davide Pesavento7c02b472015-10-28 20:50:17 +0100130 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
Alexander Afanasyev01515792014-12-16 14:20:01 -0800131 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
132
133 def getDebugFlags(self, conf):
Davide Pesavento7c02b472015-10-28 20:50:17 +0100134 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
Alexander Afanasyev01515792014-12-16 14:20:01 -0800135 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
136
137 def getOptimizedFlags(self, conf):
Davide Pesavento7c02b472015-10-28 20:50:17 +0100138 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
Alexander Afanasyev01515792014-12-16 14:20:01 -0800139 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
140
Davide Pesavento12b8aaa2023-08-06 19:18:51 -0400141
Alexander Afanasyev01515792014-12-16 14:20:01 -0800142class GccBasicFlags(CompilerFlags):
Davide Pesaventod06ea052015-10-02 01:48:24 +0200143 """
Davide Pesavento12b8aaa2023-08-06 19:18:51 -0400144 This class defines common flags that work for both gcc and clang compilers.
Davide Pesaventod06ea052015-10-02 01:48:24 +0200145 """
Davide Pesavento12b8aaa2023-08-06 19:18:51 -0400146
Davide Pesavento724d65a2017-06-23 17:14:08 -0400147 def getGeneralFlags(self, conf):
148 flags = super(GccBasicFlags, self).getGeneralFlags(conf)
Davide Pesaventofcd3e442023-03-10 18:44:11 -0500149 flags['CXXFLAGS'] += ['-std=c++17']
Davide Pesaventoea5ce492022-09-30 20:25:25 -0400150 if Utils.unversioned_sys_platform() != 'darwin':
Davide Pesavento64ae55d2018-12-19 00:25:47 -0500151 flags['LINKFLAGS'] += ['-fuse-ld=lld']
Davide Pesavento724d65a2017-06-23 17:14:08 -0400152 return flags
153
Alexander Afanasyev01515792014-12-16 14:20:01 -0800154 def getDebugFlags(self, conf):
155 flags = super(GccBasicFlags, self).getDebugFlags(conf)
Davide Pesavento71c622b2020-04-24 01:39:01 -0400156 flags['CXXFLAGS'] += ['-Og',
Davide Pesavento12b8aaa2023-08-06 19:18:51 -0400157 '-g',
Davide Pesavento7c02b472015-10-28 20:50:17 +0100158 '-Wall',
159 '-Wextra',
Davide Pesavento81de5d92022-12-30 01:08:05 -0500160 '-Wpedantic',
Alexander Afanasyev01515792014-12-16 14:20:01 -0800161 '-Werror',
Davide Pesavento71c622b2020-04-24 01:39:01 -0400162 '-Wcatch-value=2',
163 '-Wextra-semi',
Davide Pesavento7f20d6e2017-01-16 14:43:58 -0500164 '-Wnon-virtual-dtor',
Alexander Afanasyev465c9732016-10-11 16:35:32 -0700165 '-Wno-error=deprecated-declarations', # Bug #3795
Davide Pesavento88a0d812017-08-19 21:31:42 -0400166 '-Wno-error=maybe-uninitialized', # Bug #1615
167 '-Wno-unused-parameter',
Davide Pesavento1aafba42015-09-17 17:22:31 -0700168 ]
Davide Pesavento64ae55d2018-12-19 00:25:47 -0500169 flags['LINKFLAGS'] += ['-Wl,-O1']
Alexander Afanasyev01515792014-12-16 14:20:01 -0800170 return flags
171
172 def getOptimizedFlags(self, conf):
173 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
Davide Pesavento7c02b472015-10-28 20:50:17 +0100174 flags['CXXFLAGS'] += ['-O2',
Davide Pesavento12b8aaa2023-08-06 19:18:51 -0400175 '-g1',
Davide Pesavento7c02b472015-10-28 20:50:17 +0100176 '-Wall',
177 '-Wextra',
Davide Pesavento81de5d92022-12-30 01:08:05 -0500178 '-Wpedantic',
Davide Pesavento71c622b2020-04-24 01:39:01 -0400179 '-Wcatch-value=2',
180 '-Wextra-semi',
Davide Pesavento7f20d6e2017-01-16 14:43:58 -0500181 '-Wnon-virtual-dtor',
Davide Pesavento7c02b472015-10-28 20:50:17 +0100182 '-Wno-unused-parameter',
Davide Pesavento1aafba42015-09-17 17:22:31 -0700183 ]
Davide Pesavento64ae55d2018-12-19 00:25:47 -0500184 flags['LINKFLAGS'] += ['-Wl,-O1']
Alexander Afanasyev01515792014-12-16 14:20:01 -0800185 return flags
186
Davide Pesavento12b8aaa2023-08-06 19:18:51 -0400187
Alexander Afanasyev01515792014-12-16 14:20:01 -0800188class GccFlags(GccBasicFlags):
Alexander Afanasyev01515792014-12-16 14:20:01 -0800189 def getDebugFlags(self, conf):
190 flags = super(GccFlags, self).getDebugFlags(conf)
Davide Pesavento71c622b2020-04-24 01:39:01 -0400191 flags['CXXFLAGS'] += ['-fdiagnostics-color',
192 '-Wredundant-tags',
193 ]
Davide Pesavento541a8222022-03-01 15:08:42 -0500194 if platform.machine() == 'armv7l':
Davide Pesavento71c622b2020-04-24 01:39:01 -0400195 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Alexander Afanasyev01515792014-12-16 14:20:01 -0800196 return flags
197
Davide Pesaventod06ea052015-10-02 01:48:24 +0200198 def getOptimizedFlags(self, conf):
199 flags = super(GccFlags, self).getOptimizedFlags(conf)
Davide Pesavento71c622b2020-04-24 01:39:01 -0400200 flags['CXXFLAGS'] += ['-fdiagnostics-color',
201 '-Wredundant-tags',
202 ]
Davide Pesavento541a8222022-03-01 15:08:42 -0500203 if platform.machine() == 'armv7l':
Davide Pesavento71c622b2020-04-24 01:39:01 -0400204 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Davide Pesaventod06ea052015-10-02 01:48:24 +0200205 return flags
206
Davide Pesavento12b8aaa2023-08-06 19:18:51 -0400207
Alexander Afanasyev01515792014-12-16 14:20:01 -0800208class ClangFlags(GccBasicFlags):
209 def getGeneralFlags(self, conf):
210 flags = super(ClangFlags, self).getGeneralFlags(conf)
Davide Pesavento71c622b2020-04-24 01:39:01 -0400211 if Utils.unversioned_sys_platform() == 'darwin':
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500212 # Bug #4296
Davide Pesaventof6625002022-07-31 17:15:02 -0400213 brewdir = '/opt/homebrew' if platform.machine() == 'arm64' else '/usr/local'
214 flags['CXXFLAGS'] += [['-isystem', f'{brewdir}/include'], # for Homebrew
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -0400215 ['-isystem', '/opt/local/include']] # for MacPorts
Davide Pesavento71c622b2020-04-24 01:39:01 -0400216 elif Utils.unversioned_sys_platform() == 'freebsd':
217 # Bug #4790
218 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include']]
Alexander Afanasyev01515792014-12-16 14:20:01 -0800219 return flags
220
221 def getDebugFlags(self, conf):
222 flags = super(ClangFlags, self).getDebugFlags(conf)
Davide Pesavento1aafba42015-09-17 17:22:31 -0700223 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Davide Pesavento88a0d812017-08-19 21:31:42 -0400224 '-Wundefined-func-template',
Davide Pesavento88a0d812017-08-19 21:31:42 -0400225 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
Davide Pesaventod06ea052015-10-02 01:48:24 +0200226 ]
227 return flags
228
229 def getOptimizedFlags(self, conf):
230 flags = super(ClangFlags, self).getOptimizedFlags(conf)
231 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Davide Pesavento88a0d812017-08-19 21:31:42 -0400232 '-Wundefined-func-template',
Davide Pesaventod06ea052015-10-02 01:48:24 +0200233 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
Davide Pesavento1aafba42015-09-17 17:22:31 -0700234 ]
Alexander Afanasyev01515792014-12-16 14:20:01 -0800235 return flags