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 |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 5 | import os |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 6 | |
| 7 | def options(opt): |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 8 | opt.load('compiler_cxx gnu_dirs') |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 9 | opt.load('boost doxygen coverage unix-socket', tooldir=['.waf-tools']) |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 10 | |
| 11 | nfdopt = opt.add_option_group('NFD Options') |
| 12 | nfdopt.add_option('--debug',action='store_true',default=False,dest='debug',help='''Compile library debugging mode without all optimizations (-O0)''') |
| 13 | nfdopt.add_option('--with-tests', action='store_true',default=False,dest='with_tests',help='''Build unit tests''') |
| 14 | nfdopt.add_option('--with-ndn-cpp',action='store',type='string',default=None,dest='ndn_cpp_dir', |
| 15 | help='''Use NDN-CPP library from the specified path''') |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 16 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 17 | def configure(conf): |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 18 | conf.load("compiler_cxx boost gnu_dirs") |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 19 | try: |
| 20 | conf.load("doxygen") |
| 21 | except: |
| 22 | pass |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 23 | |
| 24 | if conf.options.debug: |
Junxiao Shi | ea48d8b | 2014-03-16 13:53:47 -0700 | [diff] [blame] | 25 | conf.define('_DEBUG', 1) |
| 26 | conf.add_supported_cxxflags(cxxflags = ['-O0', |
| 27 | '-Wall', |
| 28 | '-Wno-unused-variable', |
| 29 | '-g3', |
| 30 | '-Wno-unused-private-field', # only clang supports |
| 31 | '-fcolor-diagnostics', # only clang supports |
| 32 | '-Qunused-arguments', # only clang supports |
| 33 | '-Wno-tautological-compare', # suppress warnings from CryptoPP |
| 34 | '-Wno-unused-function', # suppress warnings from CryptoPP |
| 35 | '-fno-inline', |
| 36 | ]) |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 37 | else: |
Junxiao Shi | ea48d8b | 2014-03-16 13:53:47 -0700 | [diff] [blame] | 38 | conf.add_supported_cxxflags(cxxflags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function']) |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 39 | |
| 40 | if not conf.options.ndn_cpp_dir: |
| 41 | conf.check_cfg(package='libndn-cpp-dev', args=['--cflags', '--libs'], uselib_store='NDN_CPP', mandatory=True) |
| 42 | else: |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 43 | conf.check_cxx(lib='ndn-cpp-dev', uselib_store='NDN_CPP', |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 44 | cxxflags="-I%s/include" % conf.options.ndn_cpp_dir, |
| 45 | linkflags="-L%s/lib" % conf.options.ndn_cpp_dir, |
| 46 | mandatory=True) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 47 | |
Junxiao Shi | ea48d8b | 2014-03-16 13:53:47 -0700 | [diff] [blame] | 48 | boost_libs = 'system chrono' |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 49 | if conf.options.with_tests: |
| 50 | conf.env['WITH_TESTS'] = 1 |
Junxiao Shi | 8888449 | 2014-02-15 15:57:43 -0700 | [diff] [blame] | 51 | conf.define('WITH_TESTS', 1); |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 52 | boost_libs+=' unit_test_framework' |
| 53 | |
| 54 | conf.check_boost(lib=boost_libs) |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 55 | |
Alexander Afanasyev | e1724c4 | 2014-02-26 22:00:54 -0800 | [diff] [blame] | 56 | if conf.env.BOOST_VERSION_NUMBER < 104800: |
Junxiao Shi | ea48d8b | 2014-03-16 13:53:47 -0700 | [diff] [blame] | 57 | Logs.error("Minimum required boost version is 1.48.0") |
| 58 | Logs.error("Please upgrade your distribution or install custom boost libraries" + |
| 59 | " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)") |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 60 | return |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 61 | |
| 62 | conf.load('unix-socket') |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 63 | |
Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 64 | conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 65 | if conf.check_cxx(lib='pcap', uselib_store='PCAP', define_name='HAVE_PCAP', mandatory=False): |
| 66 | conf.env['HAVE_PCAP'] = True |
hilata | dd50ada | 2014-03-13 12:48:47 -0500 | [diff] [blame^] | 67 | |
| 68 | conf.check_cxx(lib='resolv', uselib_store='RESOLV', mandatory=True) |
| 69 | |
Alexander Afanasyev | 689569b | 2014-02-16 20:20:07 -0800 | [diff] [blame] | 70 | conf.load('coverage') |
| 71 | |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 72 | conf.define('DEFAULT_CONFIG_FILE', '%s/nfd/nfd.conf' % conf.env['SYSCONFDIR']) |
| 73 | |
Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 74 | conf.write_config_header('daemon/config.hpp') |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 75 | |
Junxiao Shi | 09bf7c4 | 2014-01-31 11:10:25 -0700 | [diff] [blame] | 76 | def build(bld): |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 77 | nfd_objects = bld( |
| 78 | target = "nfd-objects", |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 79 | features = "cxx", |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 80 | source = bld.path.ant_glob(['daemon/**/*.cpp'], |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 81 | excl=['daemon/face/ethernet-*.cpp', |
| 82 | 'daemon/face/unix-*.cpp', |
| 83 | 'daemon/main.cpp']), |
Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 84 | use = 'BOOST NDN_CPP RT', |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 85 | includes = [".", "daemon"], |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 86 | ) |
| 87 | |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 88 | if bld.env['HAVE_PCAP']: |
| 89 | nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp') |
| 90 | nfd_objects.use += ' PCAP' |
| 91 | |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 92 | if bld.env['HAVE_UNIX_SOCKETS']: |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 93 | nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp') |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 94 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 95 | bld(target = "nfd", |
| 96 | features = "cxx cxxprogram", |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 97 | source = 'daemon/main.cpp', |
| 98 | use = 'nfd-objects', |
Junxiao Shi | 09bf7c4 | 2014-01-31 11:10:25 -0700 | [diff] [blame] | 99 | includes = [".", "daemon"], |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 100 | ) |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 101 | |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 102 | for app in bld.path.ant_glob('tools/*.cpp'): |
| 103 | bld(features=['cxx', 'cxxprogram'], |
| 104 | target = 'bin/%s' % (str(app.change_ext(''))), |
| 105 | source = ['tools/%s' % (str(app))], |
hilata | dd50ada | 2014-03-13 12:48:47 -0500 | [diff] [blame^] | 106 | use = 'BOOST NDN_CPP RT RESOLV', |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 107 | ) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 108 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 109 | # Unit tests |
| 110 | if bld.env['WITH_TESTS']: |
Junxiao Shi | ea48d8b | 2014-03-16 13:53:47 -0700 | [diff] [blame] | 111 | unit_tests = bld.program( |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 112 | target="unit-tests", |
| 113 | features = "cxx cxxprogram", |
| 114 | source = bld.path.ant_glob(['tests/**/*.cpp'], |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 115 | excl=['tests/face/ethernet.cpp', |
| 116 | 'tests/face/unix-*.cpp']), |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 117 | use = 'nfd-objects', |
| 118 | includes = [".", "daemon"], |
| 119 | install_prefix = None, |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 120 | ) |
| 121 | |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 122 | if bld.env['HAVE_PCAP']: |
| 123 | unit_tests.source += bld.path.ant_glob('tests/face/ethernet.cpp') |
| 124 | |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 125 | if bld.env['HAVE_UNIX_SOCKETS']: |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 126 | unit_tests.source += bld.path.ant_glob('tests/face/unix-*.cpp') |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 127 | |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 128 | bld(features = "subst", |
| 129 | source = 'nfd.conf.sample.in', |
| 130 | target = 'nfd.conf.sample', |
| 131 | install_path = "${SYSCONFDIR}/ndn") |
| 132 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 133 | @Configure.conf |
| 134 | def add_supported_cxxflags(self, cxxflags): |
| 135 | """ |
| 136 | Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable |
| 137 | """ |
| 138 | self.start_msg('Checking allowed flags for c++ compiler') |
| 139 | |
| 140 | supportedFlags = [] |
| 141 | for flag in cxxflags: |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 142 | if self.check_cxx(cxxflags=[flag], mandatory=False): |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 143 | supportedFlags += [flag] |
| 144 | |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 145 | self.end_msg(' '.join (supportedFlags)) |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 146 | self.env.CXXFLAGS += supportedFlags |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 147 | |
| 148 | # doxygen docs |
| 149 | from waflib.Build import BuildContext |
| 150 | class doxy(BuildContext): |
| 151 | cmd = "doxygen" |
| 152 | fun = "doxygen" |
| 153 | |
| 154 | def doxygen(bld): |
| 155 | if not bld.env.DOXYGEN: |
| 156 | bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
| 157 | bld(features="doxygen", |
| 158 | doxyfile='docs/doxygen.conf') |