blob: f82fe100cbf2a5b9af0329962114552685405264 [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
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()
Junxiao Shic8a0a252015-10-05 07:25:02 -070017 Logs.warn('The code has not yet been tested with %s compiler' % cxx)
Junxiao Shif7191242015-03-19 05:53:41 -070018
19 areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0)
20
Junxiao Shic8a0a252015-10-05 07:25:02 -070021 # General flags are always applied (e.g., selecting C++11 mode)
Junxiao Shif7191242015-03-19 05:53:41 -070022 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
Junxiao Shic8a0a252015-10-05 07:25:02 -070027 # Debug or optimized CXXFLAGS and LINKFLAGS are applied only if the
Junxiao Shif7191242015-03-19 05:53:41 -070028 # corresponding environment variables are not set.
Junxiao Shic8a0a252015-10-05 07:25:02 -070029 # DEFINES are always applied.
Junxiao Shif7191242015-03-19 05:53:41 -070030 if conf.options.debug:
31 extraFlags = flags.getDebugFlags(conf)
Junxiao Shif7191242015-03-19 05:53:41 -070032 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_cxxflags(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.CXXFLAGS = supportedFlags + self.env.CXXFLAGS
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.LINKFLAGS = supportedFlags + self.env.LINKFLAGS
82
83
84class CompilerFlags(object):
85 def getGeneralFlags(self, conf):
86 """Get dict {'CXXFLAGS':[...], LINKFLAGS:[...], DEFINES:[...]} that are always needed"""
87 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': []}
88
89 def getDebugFlags(self, conf):
90 """Get tuple {CXXFLAGS, LINKFLAGS, DEFINES} that are needed in debug mode"""
91 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['_DEBUG']}
92
93 def getOptimizedFlags(self, conf):
94 """Get tuple {CXXFLAGS, LINKFLAGS, DEFINES} that are needed in optimized mode"""
95 return {'CXXFLAGS': [], 'LINKFLAGS': [], 'DEFINES': ['NDEBUG']}
96
97class GccBasicFlags(CompilerFlags):
Junxiao Shic8a0a252015-10-05 07:25:02 -070098 """
99 This class defines basic flags that work for both gcc and clang compilers
100 """
Junxiao Shif7191242015-03-19 05:53:41 -0700101 def getDebugFlags(self, conf):
102 flags = super(GccBasicFlags, self).getDebugFlags(conf)
Junxiao Shic8a0a252015-10-05 07:25:02 -0700103 flags['CXXFLAGS'] += ['-pedantic',
104 '-Wall',
Junxiao Shif7191242015-03-19 05:53:41 -0700105 '-O0',
106 '-g3',
107 '-Werror',
108 '-Wno-error=maybe-uninitialized', # Bug #1615
Junxiao Shic8a0a252015-10-05 07:25:02 -0700109 ]
Junxiao Shif7191242015-03-19 05:53:41 -0700110 return flags
111
112 def getOptimizedFlags(self, conf):
113 flags = super(GccBasicFlags, self).getOptimizedFlags(conf)
Junxiao Shic8a0a252015-10-05 07:25:02 -0700114 flags['CXXFLAGS'] += ['-pedantic',
115 '-Wall',
116 '-O2',
117 '-g',
118 ]
Junxiao Shif7191242015-03-19 05:53:41 -0700119 return flags
120
121class GccFlags(GccBasicFlags):
122 def getGeneralFlags(self, conf):
123 flags = super(GccFlags, self).getGeneralFlags(conf)
124 version = tuple(int(i) for i in conf.env['CC_VERSION'])
125 if version < (4, 6, 0):
126 conf.fatal('The version of gcc you are using (%s) is too old.\n' %
127 '.'.join(conf.env['CC_VERSION']) +
128 'The minimum supported gcc version is 4.6.0.')
129 elif version < (4, 7, 0):
130 flags['CXXFLAGS'] += ['-std=c++0x']
131 else:
132 flags['CXXFLAGS'] += ['-std=c++11']
133 if version < (4, 8, 0):
134 flags['DEFINES'] += ['_GLIBCXX_USE_NANOSLEEP'] # Bug #2499
135 return flags
136
137 def getDebugFlags(self, conf):
138 flags = super(GccFlags, self).getDebugFlags(conf)
139 flags['CXXFLAGS'] += ['-Og', # gcc >= 4.8
140 '-fdiagnostics-color', # gcc >= 4.9
Junxiao Shic8a0a252015-10-05 07:25:02 -0700141 ]
142 return flags
143
144 def getOptimizedFlags(self, conf):
145 flags = super(GccFlags, self).getOptimizedFlags(conf)
146 flags['CXXFLAGS'] += ['-fdiagnostics-color'] # gcc >= 4.9
Junxiao Shif7191242015-03-19 05:53:41 -0700147 return flags
148
149class ClangFlags(GccBasicFlags):
150 def getGeneralFlags(self, conf):
151 flags = super(ClangFlags, self).getGeneralFlags(conf)
Junxiao Shic8a0a252015-10-05 07:25:02 -0700152 flags['CXXFLAGS'] += ['-std=c++11']
153 if Utils.unversioned_sys_platform() == 'darwin':
Junxiao Shif7191242015-03-19 05:53:41 -0700154 flags['CXXFLAGS'] += ['-stdlib=libc++']
155 flags['LINKFLAGS'] += ['-stdlib=libc++']
156 return flags
157
158 def getDebugFlags(self, conf):
159 flags = super(ClangFlags, self).getDebugFlags(conf)
Junxiao Shic8a0a252015-10-05 07:25:02 -0700160 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
161 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
162 '-Wno-error=unneeded-internal-declaration', # Bug #1588
163 '-Wno-error=deprecated-register',
164 '-Wno-error=keyword-macro', # Bug #3235
165 ]
166 return flags
167
168 def getOptimizedFlags(self, conf):
169 flags = super(ClangFlags, self).getOptimizedFlags(conf)
170 flags['CXXFLAGS'] += ['-fcolor-diagnostics',
171 '-Wno-unused-local-typedef', # Bugs #2657 and #3209
172 ]
Junxiao Shif7191242015-03-19 05:53:41 -0700173 return flags