blob: 629b8cf9fb8be7b88f1813a65079b0d0e2f8a937 [file] [log] [blame]
Zhiyi Zhang8617a792017-01-17 16:45:56 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3from waflib import Logs, Configure, Utils
4
5def options(opt):
6 opt.add_option('--debug', '--with-debug', action='store_true', default=False, dest='debug',
7 help='''Compile in debugging mode without optimizations (-O0 or -Og)''')
8
9def configure(conf):
10 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()
17 Logs.warn('The code has not yet been tested with %s compiler' % cxx)
18
19 areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
20
21 # General flags are always applied (e.g., selecting C++11 mode)
22 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
27 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
28 # corresponding environment variables are not set.
29 # DEFINES are always applied.
30 if conf.options.debug:
31 extraFlags = flags.getDebugFlags(conf)
32 if areCustomCxxflagsPresent:
33 missingFlags = [x for x in extraFlags['CXXFLAGS'] if x not in conf.env.CXXFLAGS]
34 if len(missingFlags) > 0:
35 Logs.warn("Selected debug mode, but CXXFLAGS is set to a custom value '%s'"
36 % " ".join(conf.env.CXXFLAGS))
37 Logs.warn("Default flags '%s' are not activated" % " ".join(missingFlags))
38 else:
39 extraFlags = flags.getOptimizedFlags(conf)
40
41 if not areCustomCxxflagsPresent:
42 conf.add_supported_cxxflags(extraFlags['CXXFLAGS'])
43 conf.add_supported_linkflags(extraFlags['LINKFLAGS'])
44
45 conf.env.DEFINES += extraFlags['DEFINES']
46
47@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 """
52 if len(cxxflags) == 0:
53 return
54
55 self.start_msg('Checking supported CXXFLAGS')
56
57 supportedFlags = []
58 for flag in cxxflags:
59 if self.check_cxx(cxxflags=['-Werror', flag], mandatory=False):
60 supportedFlags += [flag]
61
62 self.end_msg(' '.join(supportedFlags))
63 self.env.prepend_value('CXXFLAGS', supportedFlags)
64
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 """
70 if len(linkflags) == 0:
71 return
72
73 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))
81 self.env.prepend_value('LINKFLAGS', supportedFlags)
82
83
84class CompilerFlags(object):
85 def getGeneralFlags(self, conf):
86 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are always needed"""
87 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
88
89 def getDebugFlags(self, conf):
90 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in debug mode"""
91 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
92
93 def getOptimizedFlags(self, conf):
94 """Get dict of CXXFLAGS, LINKFLAGS, and DEFINES that are needed only in optimized mode"""
95 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
96
97class GccBasicFlags(CompilerFlags):
98 """
99 This class defines basic flags that work for both gcc and clang compilers
100 """
101 def getDebugFlags(self, conf):
102 flags = super(GccBasicFlags, self).getDebugFlags(conf)
103 flags['CXXFLAGS'] += ['-O0',
104 '-g3',
105 '-pedantic',
106 '-Wall',
107 '-Wextra',
108 '-Werror',
109 '-Wno-unused-parameter',
110 '-Wno-error=maybe-uninitialized', # Bug #1615
111 '-Wno-error=deprecated-declarations', # Bug #3795
112 '-Wno-error=unused-local-typedefs',
113 ]
114 return flags
115
116 def getOptimizedFlags(self, conf):
117 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
118 flags['CXXFLAGS'] += ['-O2',
119 '-g',
120 '-pedantic',
121 '-Wall',
122 '-Wextra',
123 '-Wno-unused-parameter',
124 ]
125 return flags
126
127class GccFlags(GccBasicFlags):
128 def getGeneralFlags(self, conf):
129 flags = super(GccFlags, self).getGeneralFlags(conf)
130 version = tuple(int(i) for i in conf.env['CC_VERSION'])
131 if version < (4, 8, 2):
132 conf.fatal('The version of gcc you are using (%s) is too old.\n' %
133 '.'.join(conf.env['CC_VERSION']) +
134 'The minimum supported gcc version is 4.8.2.')
135 else:
136 flags['CXXFLAGS'] += ['-std=c++11']
137 return flags
138
139 def getDebugFlags(self, conf):
140 flags = super(GccFlags, self).getDebugFlags(conf)
141 version = tuple(int(i) for i in conf.env['CC_VERSION'])
142 if version < (5, 1, 0):
143 flags['CXXFLAGS'] += ['-Wno-missing-field-initializers']
144 flags['CXXFLAGS'] += ['-Og', # gcc >= 4.8
145 '-fdiagnostics-color', # gcc >= 4.9
146 ]
147 return flags
148
149 def getOptimizedFlags(self, conf):
150 flags = super(GccFlags, self).getOptimizedFlags(conf)
151 version = tuple(int(i) for i in conf.env['CC_VERSION'])
152 if version < (5, 1, 0):
153 flags['CXXFLAGS'] += ['-Wno-missing-field-initializers']
154 flags['CXXFLAGS'] += ['-fdiagnostics-color'] # gcc >= 4.9
155 return flags
156
157class ClangFlags(GccBasicFlags):
158 def getGeneralFlags(self, conf):
159 flags = super(ClangFlags, self).getGeneralFlags(conf)
160 flags['CXXFLAGS'] += ['-std=c++11']
161 if Utils.unversioned_sys_platform() == 'darwin':
162 flags['CXXFLAGS'] += ['-stdlib=libc++']
163 flags['LINKFLAGS'] += ['-stdlib=libc++']
164 return flags
165
166 def getDebugFlags(self, conf):
167 flags = super(ClangFlags, self).getDebugFlags(conf)
168 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
169 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
170 '-Wno-error=unneeded-internal-declaration', # Bug #1588
171 '-Wno-error=deprecated-register',
172 '-Wno-error=keyword-macro', # Bug #3235
173 '-Wno-error=infinite-recursion', # Bug #3358
174 ]
175 return flags
176
177 def getOptimizedFlags(self, conf):
178 flags = super(ClangFlags, self).getOptimizedFlags(conf)
179 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
180 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
181 ]
182 return flags