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