blob: e11f7f11e3488446bb783c5e32358f5401de16ef [file] [log] [blame]
Yingdi Yu40cd1c32014-04-17 15:02:17 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Yingdi Yu40cd1c32014-04-17 15:02:17 -07002
Alexander Afanasyevf9f39102015-12-01 17:43:40 -08003from waflib import Logs, Configure, Utils
Yingdi Yu40cd1c32014-04-17 15:02:17 -07004
5def options(opt):
Yingdi Yu40cd1c32014-04-17 15:02:17 -07006 opt.add_option('--debug', '--with-debug', action='store_true', default=False, dest='debug',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -04007 help='''Compile in debugging mode with minimal optimizations (-O0 or -Og)''')
Yingdi Yu40cd1c32014-04-17 15:02:17 -07008
9def configure(conf):
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040010 conf.start_msg('Checking C++ compiler version')
11
12 cxx = conf.env['CXX_NAME'] # CXX_NAME is the generic name of the compiler
13 ccver = tuple(int(i) for i in conf.env['CC_VERSION'])
14 errmsg = ''
15 warnmsg = ''
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080016 if cxx == 'gcc':
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040017 if ccver < (4, 8, 2):
18 errmsg = ('The version of gcc you are using is too old.\n'
19 'The minimum supported gcc version is 4.8.2.')
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080020 flags = GccFlags()
21 elif cxx == 'clang':
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040022 if ccver < (3, 4, 0):
23 errmsg = ('The version of clang you are using is too old.\n'
24 'The minimum supported clang version is 3.4.0.')
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080025 flags = ClangFlags()
26 else:
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040027 warnmsg = 'Note: %s compiler is unsupported' % cxx
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080028 flags = CompilerFlags()
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040029
30 if errmsg:
31 conf.end_msg('.'.join(conf.env['CC_VERSION']), color='RED')
32 conf.fatal(errmsg)
33 elif warnmsg:
34 conf.end_msg('.'.join(conf.env['CC_VERSION']), color='YELLOW')
35 Logs.warn(warnmsg)
36 else:
37 conf.end_msg('.'.join(conf.env['CC_VERSION']))
Yingdi Yu40cd1c32014-04-17 15:02:17 -070038
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080039 areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
40
41 # General flags are always applied (e.g., selecting C++11 mode)
42 generalFlags = flags.getGeneralFlags(conf)
43 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
44 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
45 conf.env.DEFINES += generalFlags['DEFINES']
46
47 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
48 # corresponding environment variables are not set.
49 # DEFINES are always applied.
Yingdi Yu40cd1c32014-04-17 15:02:17 -070050 if conf.options.debug:
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080051 extraFlags = flags.getDebugFlags(conf)
Yingdi Yu40cd1c32014-04-17 15:02:17 -070052 if areCustomCxxflagsPresent:
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080053 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
Yingdi Yu40cd1c32014-04-17 15:02:17 -070054 if len(missingFlags) > 0:
55 Logs.warn("Selected debug mode, but CXXFLAGS is set to a custom value '%s'"
56 % " ".join(conf.env.CXXFLAGS))
57 Logs.warn("Default flags '%s' are not activated" % " ".join(missingFlags))
Yingdi Yu40cd1c32014-04-17 15:02:17 -070058 else:
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080059 extraFlags = flags.getOptimizedFlags(conf)
Yingdi Yu40cd1c32014-04-17 15:02:17 -070060
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080061 if not areCustomCxxflagsPresent:
62 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
63 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
64
65 conf.env.DEFINES += extraFlags['DEFINES']
Vince Lehman0a7da612014-10-29 14:39:29 -050066
Yingdi Yu40cd1c32014-04-17 15:02:17 -070067@Configure.conf
68def add_supported_cxxflags(self, cxxflags):
69 """
70 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
71 """
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080072 if len(cxxflags) == 0:
73 return
74
75 self.start_msg('Checking supported CXXFLAGS')
Yingdi Yu40cd1c32014-04-17 15:02:17 -070076
77 supportedFlags = []
78 for flag in cxxflags:
Vince Lehman0a7da612014-10-29 14:39:29 -050079 if self.check_cxx(cxxflags=['-Werror', flag], mandatory=False):
Yingdi Yu40cd1c32014-04-17 15:02:17 -070080 supportedFlags += [flag]
81
82 self.end_msg(' '.join(supportedFlags))
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050083 self.env.prepend_value('CXXFLAGS', supportedFlags)
Vince Lehman0a7da612014-10-29 14:39:29 -050084
85@Configure.conf
86def add_supported_linkflags(self, linkflags):
87 """
88 Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable
89 """
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080090 if len(linkflags) == 0:
91 return
92
93 self.start_msg('Checking supported LINKFLAGS')
Vince Lehman0a7da612014-10-29 14:39:29 -050094
95 supportedFlags = []
96 for flag in linkflags:
97 if self.check_cxx(linkflags=['-Werror', flag], mandatory=False):
98 supportedFlags += [flag]
99
100 self.end_msg(' '.join(supportedFlags))
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500101 self.env.prepend_value('LINKFLAGS', supportedFlags)
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800102
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400103
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800104class CompilerFlags(object):
105 def getGeneralFlags(self, conf):
106 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
107 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
108
109 def getDebugFlags(self, conf):
110 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
111 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
112
113 def getOptimizedFlags(self, conf):
114 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
115 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
116
117class GccBasicFlags(CompilerFlags):
118 """
119 This class defines basic flags that work for both gcc and clang compilers
120 """
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400121 def getGeneralFlags(self, conf):
122 flags = super(GccBasicFlags, self).getGeneralFlags(conf)
123 flags['CXXFLAGS'] += ['-std=c++11']
124 return flags
125
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800126 def getDebugFlags(self, conf):
127 flags = super(GccBasicFlags, self).getDebugFlags(conf)
128 flags['CXXFLAGS'] += ['-O0',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400129 '-Og', # gcc >= 4.8, clang >= 4.0
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800130 '-g3',
131 '-pedantic',
132 '-Wall',
133 '-Wextra',
134 '-Werror',
Alexander Afanasyev96bf2f02016-10-11 16:37:45 -0700135 '-Wno-error=deprecated-declarations', # Bug #3795
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400136 '-Wno-error=maybe-uninitialized', # Bug #1615
137 '-Wno-unused-parameter',
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800138 ]
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400139 flags['LINKFLAGS'] += ['-fuse-ld=gold', '-Wl,-O1']
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800140 return flags
141
142 def getOptimizedFlags(self, conf):
143 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
144 flags['CXXFLAGS'] += ['-O2',
145 '-g',
146 '-pedantic',
147 '-Wall',
148 '-Wextra',
149 '-Wno-unused-parameter',
150 ]
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400151 flags['LINKFLAGS'] += ['-fuse-ld=gold', '-Wl,-O1']
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800152 return flags
153
154class GccFlags(GccBasicFlags):
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800155 def getDebugFlags(self, conf):
156 flags = super(GccFlags, self).getDebugFlags(conf)
157 version = tuple(int(i) for i in conf.env['CC_VERSION'])
158 if version < (5, 1, 0):
159 flags['CXXFLAGS'] += ['-Wno-missing-field-initializers']
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400160 flags['CXXFLAGS'] += ['-fdiagnostics-color'] # gcc >= 4.9
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800161 return flags
162
163 def getOptimizedFlags(self, conf):
164 flags = super(GccFlags, self).getOptimizedFlags(conf)
165 version = tuple(int(i) for i in conf.env['CC_VERSION'])
166 if version < (5, 1, 0):
167 flags['CXXFLAGS'] += ['-Wno-missing-field-initializers']
168 flags['CXXFLAGS'] += ['-fdiagnostics-color'] # gcc >= 4.9
169 return flags
170
171class ClangFlags(GccBasicFlags):
172 def getGeneralFlags(self, conf):
173 flags = super(ClangFlags, self).getGeneralFlags(conf)
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800174 if Utils.unversioned_sys_platform() == 'darwin':
175 flags['CXXFLAGS'] += ['-stdlib=libc++']
176 flags['LINKFLAGS'] += ['-stdlib=libc++']
177 return flags
178
179 def getDebugFlags(self, conf):
180 flags = super(ClangFlags, self).getDebugFlags(conf)
181 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800182 '-Wno-error=deprecated-register',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400183 '-Wno-error=ignored-qualifiers',
184 '-Wno-error=infinite-recursion', # Bug #3358
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800185 '-Wno-error=keyword-macro', # Bug #3235
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400186 '-Wno-error=unneeded-internal-declaration', # Bug #1588
187 '-Wno-keyword-macro',
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800188 '-Wno-nested-anon-types',
189 '-Wno-sign-compare',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400190 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800191 ]
192 return flags
193
194 def getOptimizedFlags(self, conf):
195 flags = super(ClangFlags, self).getOptimizedFlags(conf)
196 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400197 '-Wno-keyword-macro',
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800198 '-Wno-nested-anon-types',
199 '-Wno-sign-compare',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -0400200 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
Alexander Afanasyevf9f39102015-12-01 17:43:40 -0800201 ]
202 return flags