blob: 3a7bf660c3489257f96e45df7491fb481e9156de [file] [log] [blame]
Junxiao Shif7191242015-03-19 05:53:41 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
Davide Pesaventob07d7a92020-05-13 23:30:07 -04003import platform
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -05004from waflib import Configure, Logs, Utils
Junxiao Shif7191242015-03-19 05:53:41 -07005
6def options(opt):
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -05007 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
Davide Pesaventob07d7a92020-05-13 23:30:07 -04008 help='Compile in debugging mode with minimal optimizations (-Og)')
Junxiao Shif7191242015-03-19 05:53:41 -07009
10def 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
14 ccver = tuple(int(i) for i in conf.env.CC_VERSION)
15 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 Pesaventob04c52b2022-02-20 15:20:02 -050019 if ccver < (7, 4, 0):
Davide Pesaventoc0702702017-08-24 22:04:00 -040020 errmsg = ('The version of gcc you are using is too old.\n'
Davide Pesaventob04c52b2022-02-20 15:20:02 -050021 'The minimum supported gcc version is 7.4.')
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040022 conf.flags = GccFlags()
Junxiao Shif7191242015-03-19 05:53:41 -070023 elif cxx == 'clang':
Davide Pesaventob04c52b2022-02-20 15:20:02 -050024 if Utils.unversioned_sys_platform() == 'darwin':
25 if ccver < (10, 0, 0):
26 errmsg = ('The version of Xcode you are using is too old.\n'
27 'The minimum supported Xcode version is 11.3.')
28 elif ccver < (11, 0, 0):
29 warnmsg = ('Using a version of Xcode older than 11.3 is not '
30 'officially supported and may result in build failures.')
Davide Pesavento96412a12022-03-05 13:34:23 -050031 elif ccver < (6, 0, 0):
Davide Pesaventoc0702702017-08-24 22:04:00 -040032 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesavento96412a12022-03-05 13:34:23 -050033 'The minimum supported clang version is 6.0.')
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040034 conf.flags = ClangFlags()
Junxiao Shif7191242015-03-19 05:53:41 -070035 else:
Davide Pesavento423e58a2022-08-12 15:51:42 -040036 warnmsg = f'{cxx} compiler is unsupported'
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040037 conf.flags = CompilerFlags()
Davide Pesaventoc0702702017-08-24 22:04:00 -040038
39 if errmsg:
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050040 conf.end_msg(ccverstr, color='RED')
Davide Pesaventoc0702702017-08-24 22:04:00 -040041 conf.fatal(errmsg)
42 elif warnmsg:
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050043 conf.end_msg(ccverstr, color='YELLOW')
Davide Pesaventob07d7a92020-05-13 23:30:07 -040044 Logs.warn('WARNING: ' + warnmsg)
Davide Pesaventoc0702702017-08-24 22:04:00 -040045 else:
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050046 conf.end_msg(ccverstr)
Junxiao Shif7191242015-03-19 05:53:41 -070047
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040048 conf.areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
Junxiao Shif7191242015-03-19 05:53:41 -070049
Davide Pesavento60f8cc12018-05-10 22:05:21 -040050 # General flags are always applied (e.g., selecting C++ language standard)
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040051 generalFlags = conf.flags.getGeneralFlags(conf)
Junxiao Shif7191242015-03-19 05:53:41 -070052 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
53 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
54 conf.env.DEFINES += generalFlags['DEFINES']
55
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040056@Configure.conf
57def check_compiler_flags(conf):
Junxiao Shic8a0a252015-10-05 07:25:02 -070058 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
Junxiao Shif7191242015-03-19 05:53:41 -070059 # corresponding environment variables are not set.
Junxiao Shic8a0a252015-10-05 07:25:02 -070060 # DEFINES are always applied.
Junxiao Shif7191242015-03-19 05:53:41 -070061 if conf.options.debug:
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040062 extraFlags = conf.flags.getDebugFlags(conf)
63 if conf.areCustomCxxflagsPresent:
Junxiao Shif7191242015-03-19 05:53:41 -070064 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050065 if missingFlags:
66 Logs.warn('Selected debug mode, but CXXFLAGS is set to a custom value "%s"'
67 % ' '.join(conf.env.CXXFLAGS))
68 Logs.warn('Default flags "%s" will not be used' % ' '.join(missingFlags))
Junxiao Shif7191242015-03-19 05:53:41 -070069 else:
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040070 extraFlags = conf.flags.getOptimizedFlags(conf)
Junxiao Shif7191242015-03-19 05:53:41 -070071
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040072 if not conf.areCustomCxxflagsPresent:
Junxiao Shif7191242015-03-19 05:53:41 -070073 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
Davide Pesavento3e79c9c2015-11-01 20:38:28 +010074 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
Junxiao Shif7191242015-03-19 05:53:41 -070075
76 conf.env.DEFINES += extraFlags['DEFINES']
77
78@Configure.conf
79def add_supported_cxxflags(self, cxxflags):
80 """
81 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
82 """
83 if len(cxxflags) == 0:
84 return
85
86 self.start_msg('Checking supported CXXFLAGS')
87
88 supportedFlags = []
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -040089 for flags in cxxflags:
90 flags = Utils.to_list(flags)
91 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
92 supportedFlags += flags
Junxiao Shif7191242015-03-19 05:53:41 -070093
94 self.end_msg(' '.join(supportedFlags))
Davide Pesavento89d91752016-08-14 11:34:09 +020095 self.env.prepend_value('CXXFLAGS', supportedFlags)
Junxiao Shif7191242015-03-19 05:53:41 -070096
97@Configure.conf
98def add_supported_linkflags(self, linkflags):
99 """
100 Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable
101 """
102 if len(linkflags) == 0:
103 return
104
105 self.start_msg('Checking supported LINKFLAGS')
106
107 supportedFlags = []
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -0400108 for flags in linkflags:
109 flags = Utils.to_list(flags)
110 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
111 supportedFlags += flags
Junxiao Shif7191242015-03-19 05:53:41 -0700112
113 self.end_msg(' '.join(supportedFlags))
Davide Pesavento89d91752016-08-14 11:34:09 +0200114 self.env.prepend_value('LINKFLAGS', supportedFlags)
Junxiao Shif7191242015-03-19 05:53:41 -0700115
116
117class CompilerFlags(object):
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -0500118 def getCompilerVersion(self, conf):
119 return tuple(int(i) for i in conf.env.CC_VERSION)
120
Junxiao Shif7191242015-03-19 05:53:41 -0700121 def getGeneralFlags(self, conf):
Davide Pesavento3e79c9c2015-11-01 20:38:28 +0100122 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
Junxiao Shif7191242015-03-19 05:53:41 -0700123 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
124
125 def getDebugFlags(self, conf):
Davide Pesavento3e79c9c2015-11-01 20:38:28 +0100126 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
Junxiao Shif7191242015-03-19 05:53:41 -0700127 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
128
129 def getOptimizedFlags(self, conf):
Davide Pesavento3e79c9c2015-11-01 20:38:28 +0100130 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
Junxiao Shif7191242015-03-19 05:53:41 -0700131 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
132
133class GccBasicFlags(CompilerFlags):
Junxiao Shic8a0a252015-10-05 07:25:02 -0700134 """
135 This class defines basic flags that work for both gcc and clang compilers
136 """
Davide Pesaventodd0e1952017-06-24 13:37:13 -0400137 def getGeneralFlags(self, conf):
138 flags = super(GccBasicFlags, self).getGeneralFlags(conf)
Davide Pesaventob3570c62022-02-19 19:19:00 -0500139 flags['CXXFLAGS'] += ['-std=c++17']
Davide Pesavento3d7b0332022-10-05 15:30:02 -0400140 if Utils.unversioned_sys_platform() != 'darwin':
Davide Pesaventoe1b18a62018-12-19 01:17:42 -0500141 flags['LINKFLAGS'] += ['-fuse-ld=lld']
Davide Pesaventodd0e1952017-06-24 13:37:13 -0400142 return flags
143
Junxiao Shif7191242015-03-19 05:53:41 -0700144 def getDebugFlags(self, conf):
145 flags = super(GccBasicFlags, self).getDebugFlags(conf)
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400146 flags['CXXFLAGS'] += ['-Og',
Junxiao Shif7191242015-03-19 05:53:41 -0700147 '-g3',
Davide Pesavento3e79c9c2015-11-01 20:38:28 +0100148 '-Wall',
149 '-Wextra',
Davide Pesavento3b4ee2f2022-12-31 01:55:06 -0500150 '-Wpedantic',
Junxiao Shif7191242015-03-19 05:53:41 -0700151 '-Werror',
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400152 '-Wcatch-value=2',
153 '-Wextra-semi',
Davide Pesavento887336c2017-09-19 15:25:23 -0400154 '-Wnon-virtual-dtor',
Alexander Afanasyevfc4aa0d2016-10-15 00:57:33 +0000155 '-Wno-error=deprecated-declarations', # Bug #3795
Davide Pesaventoc0702702017-08-24 22:04:00 -0400156 '-Wno-error=maybe-uninitialized', # Bug #1615
157 '-Wno-unused-parameter',
Junxiao Shic8a0a252015-10-05 07:25:02 -0700158 ]
Davide Pesaventoe1b18a62018-12-19 01:17:42 -0500159 flags['LINKFLAGS'] += ['-Wl,-O1']
Junxiao Shif7191242015-03-19 05:53:41 -0700160 return flags
161
162 def getOptimizedFlags(self, conf):
163 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
Davide Pesavento3e79c9c2015-11-01 20:38:28 +0100164 flags['CXXFLAGS'] += ['-O2',
Junxiao Shic8a0a252015-10-05 07:25:02 -0700165 '-g',
Davide Pesavento3e79c9c2015-11-01 20:38:28 +0100166 '-Wall',
167 '-Wextra',
Davide Pesavento3b4ee2f2022-12-31 01:55:06 -0500168 '-Wpedantic',
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400169 '-Wcatch-value=2',
170 '-Wextra-semi',
Davide Pesavento887336c2017-09-19 15:25:23 -0400171 '-Wnon-virtual-dtor',
Davide Pesavento3e79c9c2015-11-01 20:38:28 +0100172 '-Wno-unused-parameter',
Junxiao Shic8a0a252015-10-05 07:25:02 -0700173 ]
Davide Pesaventoe1b18a62018-12-19 01:17:42 -0500174 flags['LINKFLAGS'] += ['-Wl,-O1']
Junxiao Shif7191242015-03-19 05:53:41 -0700175 return flags
176
177class GccFlags(GccBasicFlags):
Junxiao Shif7191242015-03-19 05:53:41 -0700178 def getDebugFlags(self, conf):
179 flags = super(GccFlags, self).getDebugFlags(conf)
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400180 flags['CXXFLAGS'] += ['-fdiagnostics-color',
181 '-Wredundant-tags',
182 ]
Davide Pesaventob04c52b2022-02-20 15:20:02 -0500183 if platform.machine() == 'armv7l':
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400184 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Junxiao Shic8a0a252015-10-05 07:25:02 -0700185 return flags
186
187 def getOptimizedFlags(self, conf):
188 flags = super(GccFlags, self).getOptimizedFlags(conf)
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400189 flags['CXXFLAGS'] += ['-fdiagnostics-color',
190 '-Wredundant-tags',
191 ]
Davide Pesaventob04c52b2022-02-20 15:20:02 -0500192 if platform.machine() == 'armv7l':
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400193 flags['CXXFLAGS'] += ['-Wno-psabi'] # Bug #5106
Junxiao Shif7191242015-03-19 05:53:41 -0700194 return flags
195
196class ClangFlags(GccBasicFlags):
197 def getGeneralFlags(self, conf):
198 flags = super(ClangFlags, self).getGeneralFlags(conf)
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400199 if Utils.unversioned_sys_platform() == 'darwin':
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -0500200 # Bug #4296
Davide Pesavento423e58a2022-08-12 15:51:42 -0400201 brewdir = '/opt/homebrew' if platform.machine() == 'arm64' else '/usr/local'
202 flags['CXXFLAGS'] += [['-isystem', f'{brewdir}/include'], # for Homebrew
Alexander Afanasyev11e74eb2017-09-21 19:01:54 -0400203 ['-isystem', '/opt/local/include']] # for MacPorts
Davide Pesaventob07d7a92020-05-13 23:30:07 -0400204 elif Utils.unversioned_sys_platform() == 'freebsd':
205 # Bug #4790
206 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include']]
Junxiao Shif7191242015-03-19 05:53:41 -0700207 return flags
208
209 def getDebugFlags(self, conf):
210 flags = super(ClangFlags, self).getDebugFlags(conf)
Davide Pesaventoc0702702017-08-24 22:04:00 -0400211 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Davide Pesaventoc0702702017-08-24 22:04:00 -0400212 '-Wundefined-func-template',
Davide Pesaventoc0702702017-08-24 22:04:00 -0400213 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
214 ]
Junxiao Shic8a0a252015-10-05 07:25:02 -0700215 return flags
216
217 def getOptimizedFlags(self, conf):
218 flags = super(ClangFlags, self).getOptimizedFlags(conf)
219 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Davide Pesaventoc0702702017-08-24 22:04:00 -0400220 '-Wundefined-func-template',
Junxiao Shic8a0a252015-10-05 07:25:02 -0700221 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
222 ]
Junxiao Shif7191242015-03-19 05:53:41 -0700223 return flags