Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | VERSION='0.1' |
| 3 | |
| 4 | from waflib import Build, Logs, Utils, Task, TaskGen, Configure |
| 5 | |
| 6 | def options(opt): |
| 7 | opt.load('compiler_cxx') |
| 8 | opt.load('boost', tooldir=['.waf-tools']) |
| 9 | |
| 10 | nfdopt = opt.add_option_group('NFD Options') |
| 11 | nfdopt.add_option('--debug',action='store_true',default=False,dest='debug',help='''Compile library debugging mode without all optimizations (-O0)''') |
| 12 | nfdopt.add_option('--with-tests', action='store_true',default=False,dest='with_tests',help='''Build unit tests''') |
| 13 | nfdopt.add_option('--with-ndn-cpp',action='store',type='string',default=None,dest='ndn_cpp_dir', |
| 14 | help='''Use NDN-CPP library from the specified path''') |
| 15 | |
| 16 | def configure(conf): |
| 17 | conf.load("compiler_cxx boost") |
| 18 | |
| 19 | if conf.options.debug: |
| 20 | conf.define ('_DEBUG', 1) |
| 21 | conf.add_supported_cxxflags (cxxflags = ['-O0', |
| 22 | '-Wall', |
| 23 | '-Wno-unused-variable', |
| 24 | '-g3', |
| 25 | '-Wno-unused-private-field', # only clang supports |
| 26 | '-fcolor-diagnostics', # only clang supports |
| 27 | '-Qunused-arguments', # only clang supports |
| 28 | '-Wno-tautological-compare', # suppress warnings from CryptoPP |
| 29 | '-Wno-unused-function', # suppress warnings from CryptoPP |
| 30 | ]) |
| 31 | else: |
| 32 | conf.add_supported_cxxflags (cxxflags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function']) |
| 33 | |
| 34 | if not conf.options.ndn_cpp_dir: |
| 35 | conf.check_cfg(package='libndn-cpp-dev', args=['--cflags', '--libs'], uselib_store='NDN_CPP', mandatory=True) |
| 36 | else: |
| 37 | conf.check_cxx(lib='ndn-cpp-dev', uselib_store='NDN_CPP', |
| 38 | cxxflags="-I%s/include" % conf.options.ndn_cpp_dir, |
| 39 | linkflags="-L%s/lib" % conf.options.ndn_cpp_dir, |
| 40 | mandatory=True) |
| 41 | |
| 42 | boost_libs='system' |
| 43 | if conf.options.with_tests: |
| 44 | conf.env['WITH_TESTS'] = 1 |
| 45 | boost_libs+=' unit_test_framework' |
| 46 | |
| 47 | conf.check_boost(lib=boost_libs) |
| 48 | |
| 49 | boost_version = conf.env.BOOST_VERSION.split('_') |
| 50 | if int(boost_version[0]) < 1 or int(boost_version[1]) < 42: |
| 51 | Logs.error ("Minumum required boost version is 1.42") |
| 52 | return |
| 53 | |
| 54 | def build (bld): |
| 55 | bld(target = "nfd", |
| 56 | features = "cxx cxxprogram", |
| 57 | source = bld.path.ant_glob(['daemon/**/*.cpp']), |
| 58 | use = 'BOOST NDN_CPP', |
| 59 | ) |
| 60 | |
| 61 | # Unit tests |
| 62 | if bld.env['WITH_TESTS']: |
| 63 | unittests = bld.program ( |
| 64 | target="unit-tests", |
| 65 | features = "cxx cxxprogram", |
Junxiao Shi | 1a2a856 | 2014-01-23 10:07:59 -0700 | [diff] [blame^] | 66 | source = bld.path.ant_glob(['tests/**/*.cpp']), |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 67 | use = 'BOOST NDN_CPP', |
Junxiao Shi | 1a2a856 | 2014-01-23 10:07:59 -0700 | [diff] [blame^] | 68 | includes = [".", "daemon"], |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 69 | install_prefix = None, |
| 70 | ) |
| 71 | |
| 72 | @Configure.conf |
| 73 | def add_supported_cxxflags(self, cxxflags): |
| 74 | """ |
| 75 | Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable |
| 76 | """ |
| 77 | self.start_msg('Checking allowed flags for c++ compiler') |
| 78 | |
| 79 | supportedFlags = [] |
| 80 | for flag in cxxflags: |
| 81 | if self.check_cxx (cxxflags=[flag], mandatory=False): |
| 82 | supportedFlags += [flag] |
| 83 | |
| 84 | self.end_msg (' '.join (supportedFlags)) |
| 85 | self.env.CXXFLAGS += supportedFlags |