blob: e6902902933a557a1ab26f89ee3473513c87f3eb [file] [log] [blame]
Alexander Afanasyev7eb59112014-07-02 14:21:11 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyev7eb59112014-07-02 14:21:11 -07002
Alexander Afanasyev40491df2018-03-09 16:29:52 -05003from waflib import Configure, Logs, Utils
Alexander Afanasyev7eb59112014-07-02 14:21:11 -07004
5def options(opt):
Alexander Afanasyev40491df2018-03-09 16:29:52 -05006 opt.add_option('--debug', '--with-debug', action='store_true', default=False,
7 help='Compile in debugging mode with minimal optimizations (-O0 or -Og)')
Alexander Afanasyev7eb59112014-07-02 14:21:11 -07008
9def configure(conf):
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040010 conf.start_msg('Checking C++ compiler version')
Alexander Afanasyev7eb59112014-07-02 14:21:11 -070011
Alexander Afanasyev40491df2018-03-09 16:29:52 -050012 cxx = conf.env.CXX_NAME # generic name of the compiler
13 ccver = tuple(int(i) for i in conf.env.CC_VERSION)
14 ccverstr = '.'.join(conf.env.CC_VERSION)
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040015 errmsg = ''
16 warnmsg = ''
17 if cxx == 'gcc':
Davide Pesavento4a9395b2018-05-24 00:23:22 -040018 if ccver < (5, 3, 0):
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040019 errmsg = ('The version of gcc you are using is too old.\n'
Davide Pesavento4a9395b2018-05-24 00:23:22 -040020 'The minimum supported gcc version is 5.3.0.')
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040021 conf.flags = GccFlags()
22 elif cxx == 'clang':
Davide Pesavento4a9395b2018-05-24 00:23:22 -040023 if ccver < (3, 5, 0):
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040024 errmsg = ('The version of clang you are using is too old.\n'
Davide Pesavento4a9395b2018-05-24 00:23:22 -040025 'The minimum supported clang version is 3.5.0.')
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040026 conf.flags = ClangFlags()
27 else:
28 warnmsg = 'Note: %s compiler is unsupported' % cxx
29 conf.flags = CompilerFlags()
30
31 if errmsg:
Alexander Afanasyev40491df2018-03-09 16:29:52 -050032 conf.end_msg(ccverstr, color='RED')
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040033 conf.fatal(errmsg)
34 elif warnmsg:
Alexander Afanasyev40491df2018-03-09 16:29:52 -050035 conf.end_msg(ccverstr, color='YELLOW')
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040036 Logs.warn(warnmsg)
37 else:
Alexander Afanasyev40491df2018-03-09 16:29:52 -050038 conf.end_msg(ccverstr)
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040039
40 conf.areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080041
Davide Pesavento4a9395b2018-05-24 00:23:22 -040042 # General flags are always applied (e.g., selecting C++ language standard)
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040043 generalFlags = conf.flags.getGeneralFlags(conf)
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080044 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
45 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
46 conf.env.DEFINES += generalFlags['DEFINES']
47
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040048@Configure.conf
49def check_compiler_flags(conf):
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080050 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
51 # corresponding environment variables are not set.
52 # DEFINES are always applied.
Alexander Afanasyev7eb59112014-07-02 14:21:11 -070053 if conf.options.debug:
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040054 extraFlags = conf.flags.getDebugFlags(conf)
55 if conf.areCustomCxxflagsPresent:
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080056 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
Alexander Afanasyev40491df2018-03-09 16:29:52 -050057 if missingFlags:
58 Logs.warn('Selected debug mode, but CXXFLAGS is set to a custom value "%s"'
59 % ' '.join(conf.env.CXXFLAGS))
60 Logs.warn('Default flags "%s" will not be used' % ' '.join(missingFlags))
Alexander Afanasyev7eb59112014-07-02 14:21:11 -070061 else:
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040062 extraFlags = conf.flags.getOptimizedFlags(conf)
Alexander Afanasyev7eb59112014-07-02 14:21:11 -070063
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040064 if not conf.areCustomCxxflagsPresent:
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080065 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
66 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
67
68 conf.env.DEFINES += extraFlags['DEFINES']
Yingdi Yu906c2ea2014-10-31 11:24:50 -070069
Alexander Afanasyev7eb59112014-07-02 14:21:11 -070070@Configure.conf
71def add_supported_cxxflags(self, cxxflags):
72 """
73 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
74 """
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080075 if len(cxxflags) == 0:
76 return
77
Yingdi Yu906c2ea2014-10-31 11:24:50 -070078 self.start_msg('Checking supported CXXFLAGS')
Alexander Afanasyev7eb59112014-07-02 14:21:11 -070079
80 supportedFlags = []
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -040081 for flags in cxxflags:
82 flags = Utils.to_list(flags)
83 if self.check_cxx(cxxflags=['-Werror'] + flags, mandatory=False):
84 supportedFlags += flags
Alexander Afanasyev7eb59112014-07-02 14:21:11 -070085
86 self.end_msg(' '.join(supportedFlags))
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080087 self.env.prepend_value('CXXFLAGS', supportedFlags)
Yingdi Yu906c2ea2014-10-31 11:24:50 -070088
89@Configure.conf
90def add_supported_linkflags(self, linkflags):
91 """
92 Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable
93 """
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080094 if len(linkflags) == 0:
95 return
96
Yingdi Yu906c2ea2014-10-31 11:24:50 -070097 self.start_msg('Checking supported LINKFLAGS')
98
99 supportedFlags = []
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400100 for flags in linkflags:
101 flags = Utils.to_list(flags)
102 if self.check_cxx(linkflags=['-Werror'] + flags, mandatory=False):
103 supportedFlags += flags
Yingdi Yu906c2ea2014-10-31 11:24:50 -0700104
105 self.end_msg(' '.join(supportedFlags))
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800106 self.env.prepend_value('LINKFLAGS', supportedFlags)
107
108
109class CompilerFlags(object):
Alexander Afanasyev40491df2018-03-09 16:29:52 -0500110 def getCompilerVersion(self, conf):
111 return tuple(int(i) for i in conf.env.CC_VERSION)
112
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800113 def getGeneralFlags(self, conf):
114 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
115 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
116
117 def getDebugFlags(self, conf):
118 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
119 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
120
121 def getOptimizedFlags(self, conf):
122 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
123 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
124
125class GccBasicFlags(CompilerFlags):
126 """
127 This class defines basic flags that work for both gcc and clang compilers
128 """
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400129 def getGeneralFlags(self, conf):
130 flags = super(GccBasicFlags, self).getGeneralFlags(conf)
Davide Pesavento4a9395b2018-05-24 00:23:22 -0400131 flags['CXXFLAGS'] += ['-std=c++14']
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400132 return flags
133
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800134 def getDebugFlags(self, conf):
135 flags = super(GccBasicFlags, self).getDebugFlags(conf)
136 flags['CXXFLAGS'] += ['-O0',
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400137 '-Og', # gcc >= 4.8, clang >= 4.0
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800138 '-g3',
139 '-pedantic',
140 '-Wall',
141 '-Wextra',
142 '-Werror',
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400143 '-Wnon-virtual-dtor',
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800144 '-Wno-error=deprecated-declarations', # Bug #3795
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400145 '-Wno-error=maybe-uninitialized', # Bug #1615
146 '-Wno-unused-parameter',
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800147 ]
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400148 flags['LINKFLAGS'] += ['-fuse-ld=gold', '-Wl,-O1']
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800149 return flags
150
151 def getOptimizedFlags(self, conf):
152 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
153 flags['CXXFLAGS'] += ['-O2',
154 '-g',
155 '-pedantic',
156 '-Wall',
157 '-Wextra',
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400158 '-Wnon-virtual-dtor',
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800159 '-Wno-unused-parameter',
160 ]
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400161 flags['LINKFLAGS'] += ['-fuse-ld=gold', '-Wl,-O1']
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800162 return flags
163
164class GccFlags(GccBasicFlags):
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800165 def getDebugFlags(self, conf):
166 flags = super(GccFlags, self).getDebugFlags(conf)
Davide Pesavento4a9395b2018-05-24 00:23:22 -0400167 flags['CXXFLAGS'] += ['-fdiagnostics-color']
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800168 return flags
169
170 def getOptimizedFlags(self, conf):
171 flags = super(GccFlags, self).getOptimizedFlags(conf)
Davide Pesavento4a9395b2018-05-24 00:23:22 -0400172 flags['CXXFLAGS'] += ['-fdiagnostics-color']
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800173 return flags
174
175class ClangFlags(GccBasicFlags):
176 def getGeneralFlags(self, conf):
177 flags = super(ClangFlags, self).getGeneralFlags(conf)
Alexander Afanasyev40491df2018-03-09 16:29:52 -0500178 if Utils.unversioned_sys_platform() == 'darwin' and self.getCompilerVersion(conf) >= (9, 0, 0):
179 # Bug #4296
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400180 flags['CXXFLAGS'] += [['-isystem', '/usr/local/include'], # for Homebrew
181 ['-isystem', '/opt/local/include']] # for MacPorts
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800182 return flags
183
184 def getDebugFlags(self, conf):
185 flags = super(ClangFlags, self).getDebugFlags(conf)
186 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400187 '-Wextra-semi',
188 '-Wundefined-func-template',
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800189 '-Wno-error=deprecated-register',
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800190 '-Wno-error=infinite-recursion', # Bug #3358
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400191 '-Wno-error=keyword-macro', # Bug #3235
192 '-Wno-error=unneeded-internal-declaration', # Bug #1588
193 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800194 ]
Alexander Afanasyev40491df2018-03-09 16:29:52 -0500195 version = self.getCompilerVersion(conf)
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400196 if version < (3, 9, 0) or (Utils.unversioned_sys_platform() == 'darwin' and version < (8, 1, 0)):
197 flags['CXXFLAGS'] += ['-Wno-unknown-pragmas']
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800198 return flags
199
200 def getOptimizedFlags(self, conf):
201 flags = super(ClangFlags, self).getOptimizedFlags(conf)
202 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400203 '-Wextra-semi',
204 '-Wundefined-func-template',
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800205 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
206 ]
Alexander Afanasyev40491df2018-03-09 16:29:52 -0500207 version = self.getCompilerVersion(conf)
Alexander Afanasyev12d5faa2017-09-21 19:04:22 -0400208 if version < (3, 9, 0) or (Utils.unversioned_sys_platform() == 'darwin' and version < (8, 1, 0)):
209 flags['CXXFLAGS'] += ['-Wno-unknown-pragmas']
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -0800210 return flags