blob: 5fc6407a5e1ef4bbacc7779db113dc7164ec833d [file] [log] [blame]
akmhoque298385a2014-02-13 14:13:09 -06001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
akmhoque85d88332014-02-17 21:11:21 -06003from waflib import Build, Logs, Utils, Task, TaskGen, Configure
akmhoque298385a2014-02-13 14:13:09 -06004
5def options(opt):
akmhoque85d88332014-02-17 21:11:21 -06006 opt.load('compiler_c compiler_cxx gnu_dirs c_osx')
akmhoque3f4c7b02014-02-17 21:13:07 -06007 opt.load('boost', tooldir=['waf-tools'])
akmhoque298385a2014-02-13 14:13:09 -06008
akmhoque85d88332014-02-17 21:11:21 -06009 opt = opt.add_option_group('Options')
10 opt.add_option('--debug',action='store_true',default=False,dest='debug',help='''debugging mode''')
akmhoque298385a2014-02-13 14:13:09 -060011
12def configure(conf):
akmhoque85d88332014-02-17 21:11:21 -060013 conf.load("compiler_cxx boost gnu_dirs")
akmhoque298385a2014-02-13 14:13:09 -060014
15 if conf.options.debug:
16 conf.define ('_DEBUG', 1)
akmhoque85d88332014-02-17 21:11:21 -060017 flags = ['-O0',
18 '-Wall',
19 # '-Werror',
20 '-Wno-unused-variable',
21 '-g3',
22 '-Wno-unused-private-field', # only clang supports
23 '-fcolor-diagnostics', # only clang supports
24 '-Qunused-arguments', # only clang supports
25 '-Wno-tautological-compare', # suppress warnings from CryptoPP
26 '-Wno-unused-function', # another annoying warning from CryptoPP
27
28 '-Wno-deprecated-declarations',
29 ]
30
31 conf.add_supported_cxxflags (cxxflags = flags)
akmhoque298385a2014-02-13 14:13:09 -060032 else:
akmhoque85d88332014-02-17 21:11:21 -060033 flags = ['-O3', '-g', '-Wno-tautological-compare','-Wno-unused-variable',
34 '-Wno-unused-function', '-Wno-deprecated-declarations']
35 conf.add_supported_cxxflags (cxxflags = flags)
akmhoque298385a2014-02-13 14:13:09 -060036
akmhoque85d88332014-02-17 21:11:21 -060037 conf.check_cfg(package='libndn-cpp-dev', args=['--cflags', '--libs'], uselib_store='NDN_CPP', mandatory=True)
38 conf.check_boost(lib='system iostreams thread unit_test_framework log', uselib_store='BOOST', version='1_55', mandatory=True)
akmhoque50fda022014-02-21 17:58:27 -060039 conf.check_cfg(package='nsync', args=['--cflags', '--libs'], uselib_store='nsync', mandatory=True)
akmhoque298385a2014-02-13 14:13:09 -060040
41def build (bld):
42 bld (
akmhoque298385a2014-02-13 14:13:09 -060043 features=['cxx', 'cxxprogram'],
44 target="nlsr",
A K M Mahmudul Hoque4e27b942014-02-20 17:09:51 -060045 source = bld.path.ant_glob('src/*.cpp'),
akmhoque50fda022014-02-21 17:58:27 -060046 use = 'NDN_CPP BOOST nsync',
akmhoque298385a2014-02-13 14:13:09 -060047 )
48
akmhoque298385a2014-02-13 14:13:09 -060049@Configure.conf
50def add_supported_cxxflags(self, cxxflags):
51 """
52 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
53 """
54 self.start_msg('Checking allowed flags for c++ compiler')
55
56 supportedFlags = []
57 for flag in cxxflags:
58 if self.check_cxx (cxxflags=[flag], mandatory=False):
59 supportedFlags += [flag]
60
61 self.end_msg (' '.join (supportedFlags))
62 self.env.CXXFLAGS += supportedFlags
akmhoque85d88332014-02-17 21:11:21 -060063