blob: 13de2635ba58f967dbdb91c4377285cf1c964ed0 [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
Alexander Afanasyev01515792014-12-16 14:20:01 -08003from waflib import Logs, Configure, Utils
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07004
5def options(opt):
6 opt.add_option('--debug', '--with-debug', action='store_true', default=False, dest='debug',
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +02007 help='''Compile in debugging mode without optimizations (-O0 or -Og)''')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07008
9def configure(conf):
Alexander Afanasyev01515792014-12-16 14:20:01 -080010 cxx = conf.env['CXX_NAME'] # CXX_NAME represents generic name of the compiler
11 if cxx == 'gcc':
12 flags = GccFlags()
13 elif cxx == 'clang':
14 flags = ClangFlags()
15 else:
16 flags = CompilerFlags()
Davide Pesaventod06ea052015-10-02 01:48:24 +020017 Logs.warn('The code has not yet been tested with %s compiler' % cxx)
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070018
Alexander Afanasyev01515792014-12-16 14:20:01 -080019 areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
20
Davide Pesaventod06ea052015-10-02 01:48:24 +020021 # General flags are always applied (e.g., selecting C++11 mode)
Alexander Afanasyev01515792014-12-16 14:20:01 -080022 generalFlags = flags.getGeneralFlags(conf)
23 conf.add_supported_cxxflags(generalFlags['CXXFLAGS'])
24 conf.add_supported_linkflags(generalFlags['LINKFLAGS'])
25 conf.env.DEFINES += generalFlags['DEFINES']
26
Davide Pesaventod06ea052015-10-02 01:48:24 +020027 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
Alexander Afanasyev01515792014-12-16 14:20:01 -080028 # corresponding environment variables are not set.
Davide Pesaventod06ea052015-10-02 01:48:24 +020029 # DEFINES are always applied.
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070030 if conf.options.debug:
Alexander Afanasyev01515792014-12-16 14:20:01 -080031 extraFlags = flags.getDebugFlags(conf)
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070032 if areCustomCxxflagsPresent:
Alexander Afanasyev01515792014-12-16 14:20:01 -080033 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070034 if len(missingFlags) > 0:
35 Logs.warn("Selected debug mode, but CXXFLAGS is set to a custom value '%s'"
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070036 % " ".join(conf.env.CXXFLAGS))
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070037 Logs.warn("Default flags '%s' are not activated" % " ".join(missingFlags))
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070038 else:
Alexander Afanasyev01515792014-12-16 14:20:01 -080039 extraFlags = flags.getOptimizedFlags(conf)
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070040
Alexander Afanasyev01515792014-12-16 14:20:01 -080041 if not areCustomCxxflagsPresent:
42 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
Davide Pesavento7c02b472015-10-28 20:50:17 +010043 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
Alexander Afanasyev01515792014-12-16 14:20:01 -080044
45 conf.env.DEFINES += extraFlags['DEFINES']
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020046
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070047@Configure.conf
48def add_supported_cxxflags(self, cxxflags):
49 """
50 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
51 """
Alexander Afanasyev01515792014-12-16 14:20:01 -080052 if len(cxxflags) == 0:
53 return
54
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020055 self.start_msg('Checking supported CXXFLAGS')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070056
57 supportedFlags = []
58 for flag in cxxflags:
Alexander Afanasyev3e6a98e2014-04-25 12:02:13 -070059 if self.check_cxx(cxxflags=['-Werror', flag], mandatory=False):
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070060 supportedFlags += [flag]
61
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070062 self.end_msg(' '.join(supportedFlags))
Davide Pesavento1349d2d2016-08-09 06:43:57 +020063 self.env.prepend_value('CXXFLAGS', supportedFlags)
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020064
65@Configure.conf
66def add_supported_linkflags(self, linkflags):
67 """
68 Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable
69 """
Alexander Afanasyev01515792014-12-16 14:20:01 -080070 if len(linkflags) == 0:
71 return
72
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +020073 self.start_msg('Checking supported LINKFLAGS')
74
75 supportedFlags = []
76 for flag in linkflags:
77 if self.check_cxx(linkflags=['-Werror', flag], mandatory=False):
78 supportedFlags += [flag]
79
80 self.end_msg(' '.join(supportedFlags))
Davide Pesavento1349d2d2016-08-09 06:43:57 +020081 self.env.prepend_value('LINKFLAGS', supportedFlags)
Alexander Afanasyev01515792014-12-16 14:20:01 -080082
83
84class CompilerFlags(object):
85 def getGeneralFlags(self, conf):
Davide Pesavento7c02b472015-10-28 20:50:17 +010086 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
Alexander Afanasyev01515792014-12-16 14:20:01 -080087 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
88
89 def getDebugFlags(self, conf):
Davide Pesavento7c02b472015-10-28 20:50:17 +010090 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
Alexander Afanasyev01515792014-12-16 14:20:01 -080091 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
92
93 def getOptimizedFlags(self, conf):
Davide Pesavento7c02b472015-10-28 20:50:17 +010094 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
Alexander Afanasyev01515792014-12-16 14:20:01 -080095 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
96
97class GccBasicFlags(CompilerFlags):
Davide Pesaventod06ea052015-10-02 01:48:24 +020098 """
99 This class defines basic flags that work for both gcc and clang compilers
100 """
Alexander Afanasyev01515792014-12-16 14:20:01 -0800101 def getDebugFlags(self, conf):
102 flags = super(GccBasicFlags, self).getDebugFlags(conf)
Davide Pesavento7c02b472015-10-28 20:50:17 +0100103 flags['CXXFLAGS'] += ['-O0',
Alexander Afanasyev01515792014-12-16 14:20:01 -0800104 '-g3',
Davide Pesavento7c02b472015-10-28 20:50:17 +0100105 '-pedantic',
106 '-Wall',
107 '-Wextra',
Alexander Afanasyev01515792014-12-16 14:20:01 -0800108 '-Werror',
Davide Pesavento7f20d6e2017-01-16 14:43:58 -0500109 '-Wnon-virtual-dtor',
Davide Pesavento7c02b472015-10-28 20:50:17 +0100110 '-Wno-unused-parameter',
Alexander Afanasyev01515792014-12-16 14:20:01 -0800111 '-Wno-error=maybe-uninitialized', # Bug #1615
Alexander Afanasyev465c9732016-10-11 16:35:32 -0700112 '-Wno-error=deprecated-declarations', # Bug #3795
Davide Pesavento1aafba42015-09-17 17:22:31 -0700113 ]
Alexander Afanasyev01515792014-12-16 14:20:01 -0800114 return flags
115
116 def getOptimizedFlags(self, conf):
117 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
Davide Pesavento7c02b472015-10-28 20:50:17 +0100118 flags['CXXFLAGS'] += ['-O2',
Davide Pesavento1aafba42015-09-17 17:22:31 -0700119 '-g',
Davide Pesavento7c02b472015-10-28 20:50:17 +0100120 '-pedantic',
121 '-Wall',
122 '-Wextra',
Davide Pesavento7f20d6e2017-01-16 14:43:58 -0500123 '-Wnon-virtual-dtor',
Davide Pesavento7c02b472015-10-28 20:50:17 +0100124 '-Wno-unused-parameter',
Davide Pesavento1aafba42015-09-17 17:22:31 -0700125 ]
Alexander Afanasyev01515792014-12-16 14:20:01 -0800126 return flags
127
128class GccFlags(GccBasicFlags):
129 def getGeneralFlags(self, conf):
130 flags = super(GccFlags, self).getGeneralFlags(conf)
131 version = tuple(int(i) for i in conf.env['CC_VERSION'])
Davide Pesaventoe6e6fde2016-04-16 14:44:45 +0200132 if version < (4, 8, 2):
Alexander Afanasyev01515792014-12-16 14:20:01 -0800133 conf.fatal('The version of gcc you are using (%s) is too old.\n' %
Stephen McQuistine3d62662015-01-15 15:08:34 +0000134 '.'.join(conf.env['CC_VERSION']) +
Davide Pesaventoe6e6fde2016-04-16 14:44:45 +0200135 'The minimum supported gcc version is 4.8.2.')
Alexander Afanasyev01515792014-12-16 14:20:01 -0800136 else:
137 flags['CXXFLAGS'] += ['-std=c++11']
138 return flags
139
140 def getDebugFlags(self, conf):
141 flags = super(GccFlags, self).getDebugFlags(conf)
Davide Pesavento7c02b472015-10-28 20:50:17 +0100142 version = tuple(int(i) for i in conf.env['CC_VERSION'])
143 if version < (5, 1, 0):
144 flags['CXXFLAGS'] += ['-Wno-missing-field-initializers']
Alexander Afanasyev01515792014-12-16 14:20:01 -0800145 flags['CXXFLAGS'] += ['-Og', # gcc >= 4.8
146 '-fdiagnostics-color', # gcc >= 4.9
Davide Pesavento1aafba42015-09-17 17:22:31 -0700147 ]
Alexander Afanasyev01515792014-12-16 14:20:01 -0800148 return flags
149
Davide Pesaventod06ea052015-10-02 01:48:24 +0200150 def getOptimizedFlags(self, conf):
151 flags = super(GccFlags, self).getOptimizedFlags(conf)
Davide Pesavento7c02b472015-10-28 20:50:17 +0100152 version = tuple(int(i) for i in conf.env['CC_VERSION'])
153 if version < (5, 1, 0):
154 flags['CXXFLAGS'] += ['-Wno-missing-field-initializers']
Davide Pesaventod06ea052015-10-02 01:48:24 +0200155 flags['CXXFLAGS'] += ['-fdiagnostics-color'] # gcc >= 4.9
156 return flags
157
Alexander Afanasyev01515792014-12-16 14:20:01 -0800158class ClangFlags(GccBasicFlags):
159 def getGeneralFlags(self, conf):
160 flags = super(ClangFlags, self).getGeneralFlags(conf)
Davide Pesavento1aafba42015-09-17 17:22:31 -0700161 flags['CXXFLAGS'] += ['-std=c++11']
Davide Pesaventod06ea052015-10-02 01:48:24 +0200162 if Utils.unversioned_sys_platform() == 'darwin':
Alexander Afanasyev01515792014-12-16 14:20:01 -0800163 flags['CXXFLAGS'] += ['-stdlib=libc++']
164 flags['LINKFLAGS'] += ['-stdlib=libc++']
165 return flags
166
167 def getDebugFlags(self, conf):
168 flags = super(ClangFlags, self).getDebugFlags(conf)
Davide Pesavento1aafba42015-09-17 17:22:31 -0700169 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
Davide Pesaventod06ea052015-10-02 01:48:24 +0200170 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
Davide Pesavento1aafba42015-09-17 17:22:31 -0700171 '-Wno-error=unneeded-internal-declaration', # Bug #1588
172 '-Wno-error=deprecated-register',
Junxiao Shib1ba3e02015-10-04 16:56:37 -0700173 '-Wno-error=keyword-macro', # Bug #3235
Alexander Afanasyevefa22d62015-12-04 13:39:17 -0800174 '-Wno-error=infinite-recursion', # Bug #3358
Davide Pesaventod06ea052015-10-02 01:48:24 +0200175 ]
176 return flags
177
178 def getOptimizedFlags(self, conf):
179 flags = super(ClangFlags, self).getOptimizedFlags(conf)
180 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
181 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
Davide Pesavento1aafba42015-09-17 17:22:31 -0700182 ]
Alexander Afanasyev01515792014-12-16 14:20:01 -0800183 return flags