Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 2 | |
| 3 | from waflib import Logs, Configure |
| 4 | |
| 5 | def options(opt): |
| 6 | opt.add_option('--debug', '--with-debug', action='store_true', default=False, dest='debug', |
Davide Pesavento | dfe9c6b | 2014-08-25 21:17:10 +0200 | [diff] [blame] | 7 | help='''Compile in debugging mode without optimizations (-O0 or -Og)''') |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 8 | |
| 9 | def configure(conf): |
| 10 | areCustomCxxflagsPresent = (len(conf.env.CXXFLAGS) > 0) |
Davide Pesavento | dfe9c6b | 2014-08-25 21:17:10 +0200 | [diff] [blame] | 11 | defaultFlags = ['-std=c++0x', '-std=c++11', |
| 12 | '-stdlib=libc++', # clang on OSX < 10.9 by default uses gcc's |
| 13 | # libstdc++, which is not C++11 compatible |
| 14 | '-pedantic', '-Wall'] |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 15 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 16 | if conf.options.debug: |
| 17 | conf.define('_DEBUG', 1) |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 18 | defaultFlags += ['-O0', |
| 19 | '-Og', # gcc >= 4.8 |
| 20 | '-g3', |
| 21 | '-fcolor-diagnostics', # clang |
| 22 | '-fdiagnostics-color', # gcc >= 4.9 |
Alexander Afanasyev | b67090a | 2014-04-29 22:31:01 -0700 | [diff] [blame] | 23 | '-Werror', |
| 24 | '-Wno-error=deprecated-register', |
Junxiao Shi | 46ffa69 | 2014-05-16 11:11:00 -0700 | [diff] [blame] | 25 | '-Wno-error=maybe-uninitialized', # Bug #1615 |
Davide Pesavento | dfe9c6b | 2014-08-25 21:17:10 +0200 | [diff] [blame] | 26 | '-Wno-error=unneeded-internal-declaration', # Bug #1588 |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 27 | ] |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 28 | if areCustomCxxflagsPresent: |
| 29 | missingFlags = [x for x in defaultFlags if x not in conf.env.CXXFLAGS] |
| 30 | if len(missingFlags) > 0: |
| 31 | Logs.warn("Selected debug mode, but CXXFLAGS is set to a custom value '%s'" |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 32 | % " ".join(conf.env.CXXFLAGS)) |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 33 | Logs.warn("Default flags '%s' are not activated" % " ".join(missingFlags)) |
| 34 | else: |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 35 | conf.add_supported_cxxflags(defaultFlags) |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 36 | else: |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 37 | defaultFlags += ['-O2', '-g'] |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 38 | if not areCustomCxxflagsPresent: |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 39 | conf.add_supported_cxxflags(defaultFlags) |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 40 | |
Davide Pesavento | dfe9c6b | 2014-08-25 21:17:10 +0200 | [diff] [blame] | 41 | # clang on OSX < 10.9 by default uses gcc's libstdc++, which is not C++11 compatible |
| 42 | conf.add_supported_linkflags(['-stdlib=libc++']) |
| 43 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 44 | @Configure.conf |
| 45 | def add_supported_cxxflags(self, cxxflags): |
| 46 | """ |
| 47 | Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable |
| 48 | """ |
Davide Pesavento | dfe9c6b | 2014-08-25 21:17:10 +0200 | [diff] [blame] | 49 | self.start_msg('Checking supported CXXFLAGS') |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 50 | |
| 51 | supportedFlags = [] |
| 52 | for flag in cxxflags: |
Alexander Afanasyev | 3e6a98e | 2014-04-25 12:02:13 -0700 | [diff] [blame] | 53 | if self.check_cxx(cxxflags=['-Werror', flag], mandatory=False): |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 54 | supportedFlags += [flag] |
| 55 | |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 56 | self.end_msg(' '.join(supportedFlags)) |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 57 | self.env.CXXFLAGS = supportedFlags + self.env.CXXFLAGS |
Davide Pesavento | dfe9c6b | 2014-08-25 21:17:10 +0200 | [diff] [blame] | 58 | |
| 59 | @Configure.conf |
| 60 | def add_supported_linkflags(self, linkflags): |
| 61 | """ |
| 62 | Check which linkflags are supported by compiler and add them to env.LINKFLAGS variable |
| 63 | """ |
| 64 | self.start_msg('Checking supported LINKFLAGS') |
| 65 | |
| 66 | supportedFlags = [] |
| 67 | for flag in linkflags: |
| 68 | if self.check_cxx(linkflags=['-Werror', flag], mandatory=False): |
| 69 | supportedFlags += [flag] |
| 70 | |
| 71 | self.end_msg(' '.join(supportedFlags)) |
| 72 | self.env.LINKFLAGS = supportedFlags + self.env.LINKFLAGS |