Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 2 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 3 | from waflib import Context, Logs, Utils |
| 4 | import os, subprocess |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 5 | |
Alexander Afanasyev | cf8ffd4 | 2019-12-29 17:58:53 -0800 | [diff] [blame] | 6 | VERSION = '0.7.0' |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 7 | APPNAME = 'ndn-cxx' |
| 8 | PACKAGE_BUGREPORT = 'https://redmine.named-data.net/projects/ndn-cxx' |
| 9 | PACKAGE_URL = 'http://named-data.net/doc/ndn-cxx/' |
| 10 | GIT_TAG_PREFIX = 'ndn-cxx-' |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 11 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 12 | def options(opt): |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 13 | opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx']) |
Davide Pesavento | 844b093 | 2018-05-07 01:00:16 -0400 | [diff] [blame] | 14 | opt.load(['default-compiler-flags', 'compiler-features', |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 15 | 'coverage', 'pch', 'sanitizers', 'osx-frameworks', |
Alexander Afanasyev | adc7184 | 2017-01-26 22:17:58 -0500 | [diff] [blame] | 16 | 'boost', 'openssl', 'sqlite3', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 17 | 'doxygen', 'sphinx_build'], |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 18 | tooldir=['.waf-tools']) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 19 | |
Davide Pesavento | 77f1c76 | 2019-02-19 03:20:49 -0500 | [diff] [blame] | 20 | opt = opt.add_option_group('ndn-cxx Options') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 21 | |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 22 | opt.add_option('--enable-static', action='store_true', default=False, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 23 | dest='enable_static', help='Build static library (disabled by default)') |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 24 | opt.add_option('--disable-static', action='store_false', default=False, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 25 | dest='enable_static', help='Do not build static library (disabled by default)') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 26 | |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 27 | opt.add_option('--enable-shared', action='store_true', default=True, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 28 | dest='enable_shared', help='Build shared library (enabled by default)') |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 29 | opt.add_option('--disable-shared', action='store_false', default=True, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 30 | dest='enable_shared', help='Do not build shared library (enabled by default)') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 31 | |
Davide Pesavento | 77f1c76 | 2019-02-19 03:20:49 -0500 | [diff] [blame] | 32 | opt.add_option('--without-osx-keychain', action='store_false', default=True, |
| 33 | dest='with_osx_keychain', help='Do not use macOS Keychain as default TPM (macOS only)') |
| 34 | |
| 35 | opt.add_option('--without-sqlite-locking', action='store_false', default=True, dest='with_sqlite_locking', |
| 36 | help='Disable filesystem locking in sqlite3 database ' |
| 37 | '(use unix-dot locking mechanism instead). ' |
| 38 | 'This option may be necessary if the home directory is hosted on NFS.') |
| 39 | |
| 40 | stacktrace_choices = ['backtrace', 'addr2line', 'basic', 'noop'] |
| 41 | opt.add_option('--with-stacktrace', action='store', default=None, choices=stacktrace_choices, |
| 42 | help='Select the stacktrace backend implementation: ' |
| 43 | '%s [default=auto-detect]' % ', '.join(stacktrace_choices)) |
| 44 | opt.add_option('--without-stacktrace', action='store_const', const='', dest='with_stacktrace', |
| 45 | help='Disable stacktrace support') |
| 46 | |
| 47 | opt.add_option('--with-examples', action='store_true', default=False, |
| 48 | help='Build examples') |
| 49 | |
| 50 | opt.add_option('--with-tests', action='store_true', default=False, |
| 51 | help='Build tests') |
| 52 | |
| 53 | opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools', |
| 54 | help='Do not build tools') |
| 55 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 56 | def configure(conf): |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 57 | conf.start_msg('Building static library') |
| 58 | if conf.options.enable_static: |
| 59 | conf.end_msg('yes') |
| 60 | else: |
| 61 | conf.end_msg('no', color='YELLOW') |
| 62 | conf.env.enable_static = conf.options.enable_static |
| 63 | |
| 64 | conf.start_msg('Building shared library') |
| 65 | if conf.options.enable_shared: |
| 66 | conf.end_msg('yes') |
| 67 | else: |
| 68 | conf.end_msg('no', color='YELLOW') |
| 69 | conf.env.enable_shared = conf.options.enable_shared |
| 70 | |
| 71 | if not conf.options.enable_shared and not conf.options.enable_static: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 72 | conf.fatal('Either static library or shared library must be enabled') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 73 | |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 74 | conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx', |
Davide Pesavento | 844b093 | 2018-05-07 01:00:16 -0400 | [diff] [blame] | 75 | 'default-compiler-flags', 'compiler-features', |
Alexander Afanasyev | adc7184 | 2017-01-26 22:17:58 -0500 | [diff] [blame] | 76 | 'pch', 'osx-frameworks', 'boost', 'openssl', 'sqlite3', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 77 | 'doxygen', 'sphinx_build']) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 78 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 79 | conf.env.WITH_TESTS = conf.options.with_tests |
| 80 | conf.env.WITH_TOOLS = conf.options.with_tools |
| 81 | conf.env.WITH_EXAMPLES = conf.options.with_examples |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 82 | |
Davide Pesavento | 77f1c76 | 2019-02-19 03:20:49 -0500 | [diff] [blame] | 83 | conf.find_program('sh', var='SH') |
Alexander Afanasyev | 95de62e | 2014-04-11 18:26:33 -0700 | [diff] [blame] | 84 | |
Eric Newberry | 9603325 | 2020-04-10 13:08:27 -0700 | [diff] [blame] | 85 | conf.check_cxx(lib='atomic', uselib_store='ATOMIC', define_name='HAVE_ATOMIC', mandatory=False) |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 86 | conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False) |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 87 | conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False) |
Davide Pesavento | 78338c5 | 2020-04-20 23:00:02 -0400 | [diff] [blame] | 88 | |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 89 | conf.check_cxx(msg='Checking for function getpass', define_name='HAVE_GETPASS', mandatory=False, |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 90 | fragment='''#include <unistd.h> |
| 91 | int main() { getpass("Enter password"); }''') |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 92 | |
Davide Pesavento | 474c3b2 | 2018-08-25 16:24:43 -0400 | [diff] [blame] | 93 | if conf.check_cxx(msg='Checking for netlink', define_name='HAVE_NETLINK', mandatory=False, |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 94 | header_name=['linux/if_addr.h', 'linux/if_link.h', |
Davide Pesavento | 474c3b2 | 2018-08-25 16:24:43 -0400 | [diff] [blame] | 95 | 'linux/netlink.h', 'linux/rtnetlink.h', 'linux/genetlink.h']): |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 96 | conf.env.HAVE_NETLINK = True |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 97 | conf.check_cxx(msg='Checking for NETLINK_EXT_ACK', define_name='HAVE_NETLINK_EXT_ACK', mandatory=False, |
| 98 | fragment='''#include <linux/netlink.h> |
| 99 | int main() { return NETLINK_EXT_ACK; }''') |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 100 | conf.check_cxx(msg='Checking for IFA_FLAGS', define_name='HAVE_IFA_FLAGS', mandatory=False, |
Davide Pesavento | 844b093 | 2018-05-07 01:00:16 -0400 | [diff] [blame] | 101 | fragment='''#include <linux/if_addr.h> |
| 102 | int main() { return IFA_FLAGS; }''') |
Alexander Afanasyev | 7b3080f | 2015-01-28 21:21:01 -0800 | [diff] [blame] | 103 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 104 | conf.check_osx_frameworks() |
Davide Pesavento | 77f1c76 | 2019-02-19 03:20:49 -0500 | [diff] [blame] | 105 | conf.check_sqlite3() |
| 106 | conf.check_openssl(lib='crypto', atleast_version=0x1000200f) # 1.0.2 |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 107 | |
Davide Pesavento | 77f1c76 | 2019-02-19 03:20:49 -0500 | [diff] [blame] | 108 | boost_libs = ['system', 'program_options', 'chrono', 'date_time', 'filesystem', 'thread', 'log'] |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 109 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 110 | stacktrace_backend = conf.options.with_stacktrace |
| 111 | if stacktrace_backend is None: |
| 112 | # auto-detect |
| 113 | for candidate in ['backtrace', 'basic']: |
| 114 | try: |
| 115 | conf.check_boost(lib='stacktrace_%s' % candidate, mt=True) |
| 116 | except conf.errors.ConfigurationError: |
| 117 | continue |
| 118 | stacktrace_backend = candidate |
| 119 | break |
| 120 | if stacktrace_backend: |
| 121 | conf.env.HAVE_STACKTRACE = True |
| 122 | conf.env.append_unique('DEFINES_BOOST', ['BOOST_STACKTRACE_DYN_LINK']) |
| 123 | boost_libs.append('stacktrace_%s' % stacktrace_backend) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 124 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 125 | if conf.env.WITH_TESTS: |
| 126 | boost_libs.append('unit_test_framework') |
| 127 | |
| 128 | conf.check_boost(lib=boost_libs, mt=True) |
Davide Pesavento | 844b093 | 2018-05-07 01:00:16 -0400 | [diff] [blame] | 129 | if conf.env.BOOST_VERSION_NUMBER < 105800: |
Davide Pesavento | 78338c5 | 2020-04-20 23:00:02 -0400 | [diff] [blame] | 130 | conf.fatal('The minimum supported version of Boost is 1.65.1.\n' |
| 131 | 'Please upgrade your distribution or manually install a newer version of Boost.\n' |
| 132 | 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost') |
| 133 | elif conf.env.BOOST_VERSION_NUMBER < 106501: |
| 134 | Logs.warn('WARNING: Using a version of Boost older than 1.65.1 is not officially supported and may not work.\n' |
| 135 | 'If you encounter any problems, please upgrade your distribution or manually install a newer version of Boost.\n' |
| 136 | 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 137 | |
Davide Pesavento | fc27d3b | 2019-03-02 00:47:35 -0500 | [diff] [blame] | 138 | # Workaround for bug 4860 |
| 139 | if conf.env.BOOST_VERSION_NUMBER < 106900 and conf.env.CXX_NAME == 'clang': |
| 140 | conf.env.append_unique('DEFINES_BOOST', ['BOOST_ASIO_DISABLE_STD_EXPERIMENTAL_STRING_VIEW']) |
| 141 | |
Alexander Afanasyev | b82d8c3 | 2017-09-21 11:35:07 -0400 | [diff] [blame] | 142 | conf.check_compiler_flags() |
| 143 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 144 | # Loading "late" to prevent tests from being compiled with profiling flags |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 145 | conf.load('coverage') |
Eric Newberry | a3973e0 | 2016-11-01 17:58:12 -0700 | [diff] [blame] | 146 | conf.load('sanitizers') |
| 147 | |
Alexander Afanasyev | 224044f | 2016-07-18 10:45:08 +0200 | [diff] [blame] | 148 | if not conf.env.enable_static: |
| 149 | # If there happens to be a static library, waf will put the corresponding -L flags |
| 150 | # before dynamic library flags. This can result in compilation failure when the |
| 151 | # system has a different version of the ndn-cxx library installed. |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 152 | conf.env.prepend_value('STLIBPATH', ['.']) |
Alexander Afanasyev | 224044f | 2016-07-18 10:45:08 +0200 | [diff] [blame] | 153 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 154 | conf.define_cond('HAVE_STACKTRACE', conf.env.HAVE_STACKTRACE) |
| 155 | conf.define_cond('HAVE_TESTS', conf.env.WITH_TESTS) |
| 156 | conf.define_cond('WITH_OSX_KEYCHAIN', conf.env.HAVE_OSX_FRAMEWORKS and conf.options.with_osx_keychain) |
| 157 | conf.define_cond('DISABLE_SQLITE3_FS_LOCKING', not conf.options.with_sqlite_locking) |
| 158 | conf.define('SYSCONFDIR', conf.env.SYSCONFDIR) |
| 159 | # The config header will contain all defines that were added using conf.define() |
| 160 | # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES |
| 161 | # will not appear in the config header, but will instead be passed directly to the |
| 162 | # compiler on the command line. |
Junxiao Shi | d1fc9a7 | 2018-12-12 16:35:34 +0000 | [diff] [blame] | 163 | conf.write_config_header('ndn-cxx/detail/config.hpp', define_prefix='NDN_CXX_') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 164 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 165 | def build(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 166 | version(bld) |
| 167 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 168 | bld(features='subst', |
| 169 | name='version.hpp', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 170 | source='ndn-cxx/version.hpp.in', |
| 171 | target='ndn-cxx/version.hpp', |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 172 | install_path=None, |
| 173 | VERSION_STRING=VERSION_BASE, |
| 174 | VERSION_BUILD=VERSION, |
| 175 | VERSION=int(VERSION_SPLIT[0]) * 1000000 + |
| 176 | int(VERSION_SPLIT[1]) * 1000 + |
| 177 | int(VERSION_SPLIT[2]), |
| 178 | VERSION_MAJOR=VERSION_SPLIT[0], |
| 179 | VERSION_MINOR=VERSION_SPLIT[1], |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 180 | VERSION_PATCH=VERSION_SPLIT[2]) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 181 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 182 | if bld.env.HAVE_OSX_FRAMEWORKS: |
Alexander Afanasyev | 7cd43ab | 2017-03-27 21:33:10 -0500 | [diff] [blame] | 183 | # Need to disable precompiled headers for Objective-C++ code |
Davide Pesavento | 25d4f1c | 2020-04-29 23:31:04 -0400 | [diff] [blame] | 184 | bld(features='cxx', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 185 | target='ndn-cxx-mm-objects', |
| 186 | source=bld.path.ant_glob('ndn-cxx/**/*-osx.mm'), |
| 187 | use='BOOST PTHREAD OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN', |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 188 | includes='.') |
Alexander Afanasyev | 7cd43ab | 2017-03-27 21:33:10 -0500 | [diff] [blame] | 189 | |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 190 | libndn_cxx = dict( |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 191 | target='ndn-cxx', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 192 | source=bld.path.ant_glob('ndn-cxx/**/*.cpp', |
| 193 | excl=['ndn-cxx/**/*-osx.cpp', |
| 194 | 'ndn-cxx/**/*netlink*.cpp', |
| 195 | 'ndn-cxx/**/*-sqlite3.cpp']), |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 196 | features='pch', |
Junxiao Shi | d1fc9a7 | 2018-12-12 16:35:34 +0000 | [diff] [blame] | 197 | headers='ndn-cxx/impl/common-pch.hpp', |
Eric Newberry | 9603325 | 2020-04-10 13:08:27 -0700 | [diff] [blame] | 198 | use='ndn-cxx-mm-objects version BOOST OPENSSL SQLITE3 ATOMIC RT PTHREAD', |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 199 | includes='.', |
| 200 | export_includes='.', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 201 | install_path='${LIBDIR}') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 202 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 203 | if bld.env.HAVE_OSX_FRAMEWORKS: |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 204 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-osx.cpp') |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 205 | libndn_cxx['use'] += ' OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN' |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 206 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 207 | if bld.env.HAVE_NETLINK: |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 208 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*netlink*.cpp') |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 209 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 210 | # In case we want to make it optional later |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 211 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.cpp') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 212 | |
| 213 | if bld.env.enable_shared: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 214 | bld.shlib(name='ndn-cxx', |
| 215 | vnum=VERSION_BASE, |
| 216 | cnum=VERSION_BASE, |
| 217 | **libndn_cxx) |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 218 | |
| 219 | if bld.env.enable_static: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 220 | bld.stlib(name='ndn-cxx-static' if bld.env.enable_shared else 'ndn-cxx', |
| 221 | **libndn_cxx) |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 222 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 223 | # Prepare flags that should go to pkgconfig file |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 224 | pkgconfig_libs = [] |
| 225 | pkgconfig_ldflags = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 226 | pkgconfig_linkflags = [] |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 227 | pkgconfig_includes = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 228 | pkgconfig_cxxflags = [] |
Alexander Afanasyev | 8fdae89 | 2019-02-10 16:40:48 -0500 | [diff] [blame] | 229 | pkgconfig_defines = [] |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 230 | for lib in Utils.to_list(libndn_cxx['use']): |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 231 | if bld.env['LIB_%s' % lib]: |
| 232 | pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib]) |
| 233 | if bld.env['LIBPATH_%s' % lib]: |
| 234 | pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib]) |
| 235 | if bld.env['INCLUDES_%s' % lib]: |
| 236 | pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib]) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 237 | if bld.env['LINKFLAGS_%s' % lib]: |
| 238 | pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib]) |
| 239 | if bld.env['CXXFLAGS_%s' % lib]: |
| 240 | pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib]) |
Alexander Afanasyev | 8fdae89 | 2019-02-10 16:40:48 -0500 | [diff] [blame] | 241 | if bld.env['DEFINES_%s' % lib]: |
| 242 | pkgconfig_defines += Utils.to_list(bld.env['DEFINES_%s' % lib]) |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 243 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 244 | EXTRA_FRAMEWORKS = '' |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 245 | if bld.env.HAVE_OSX_FRAMEWORKS: |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 246 | EXTRA_FRAMEWORKS = '-framework CoreFoundation -framework Security -framework SystemConfiguration -framework Foundation -framework CoreWLAN' |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 247 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 248 | def uniq(alist): |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 249 | seen = set() |
| 250 | return [x for x in alist if x not in seen and not seen.add(x)] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 251 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 252 | pkconfig = bld(features='subst', |
| 253 | source='libndn-cxx.pc.in', |
| 254 | target='libndn-cxx.pc', |
| 255 | install_path='${LIBDIR}/pkgconfig', |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 256 | VERSION=VERSION_BASE, |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 257 | |
| 258 | # This probably not the right thing to do, but to simplify life of apps |
| 259 | # that use the library |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 260 | EXTRA_LIBS=' '.join([('-l%s' % i) for i in uniq(pkgconfig_libs)]), |
| 261 | EXTRA_LDFLAGS=' '.join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]), |
| 262 | EXTRA_LINKFLAGS=' '.join(uniq(pkgconfig_linkflags)), |
| 263 | EXTRA_INCLUDES=' '.join([('-I%s' % i) for i in uniq(pkgconfig_includes)]), |
Davide Pesavento | 4fb35d8 | 2019-10-31 19:33:10 -0400 | [diff] [blame] | 264 | EXTRA_CXXFLAGS=' '.join(uniq(pkgconfig_cxxflags) + [('-D%s' % i) for i in uniq(pkgconfig_defines)]), |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 265 | EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 266 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 267 | if bld.env.WITH_TESTS: |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 268 | bld.recurse('tests') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 269 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 270 | if bld.env.WITH_TOOLS: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 271 | bld.recurse('tools') |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 272 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 273 | if bld.env.WITH_EXAMPLES: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 274 | bld.recurse('examples') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 275 | |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 276 | headers = bld.path.ant_glob('ndn-cxx/**/*.hpp', |
| 277 | excl=['ndn-cxx/**/*-osx.hpp', |
| 278 | 'ndn-cxx/**/*netlink*.hpp', |
| 279 | 'ndn-cxx/**/*-sqlite3.hpp', |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 280 | 'ndn-cxx/**/impl/**/*']) |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 281 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 282 | if bld.env.HAVE_OSX_FRAMEWORKS: |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 283 | headers += bld.path.ant_glob('ndn-cxx/**/*-osx.hpp', excl='ndn-cxx/**/impl/**/*') |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 284 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 285 | if bld.env.HAVE_NETLINK: |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 286 | headers += bld.path.ant_glob('ndn-cxx/**/*netlink*.hpp', excl='ndn-cxx/**/impl/**/*') |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 287 | |
| 288 | # In case we want to make it optional later |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 289 | headers += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.hpp', excl='ndn-cxx/**/impl/**/*') |
Junxiao Shi | e30aaea | 2014-12-03 20:48:34 -0700 | [diff] [blame] | 290 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 291 | bld.install_files(bld.env.INCLUDEDIR, headers, relative_trick=True) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 292 | |
Junxiao Shi | d1fc9a7 | 2018-12-12 16:35:34 +0000 | [diff] [blame] | 293 | # Install generated headers |
| 294 | for filename in ['ndn-cxx/detail/config.hpp', 'ndn-cxx/version.hpp']: |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 295 | bld.install_files('%s/%s' % (bld.env.INCLUDEDIR, os.path.dirname(filename)), |
Junxiao Shi | d1fc9a7 | 2018-12-12 16:35:34 +0000 | [diff] [blame] | 296 | bld.path.find_resource(filename)) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 297 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 298 | bld.install_files('${SYSCONFDIR}/ndn', 'client.conf.sample') |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 299 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 300 | if bld.env.SPHINX_BUILD: |
| 301 | bld(features='sphinx', |
| 302 | name='manpages', |
| 303 | builder='man', |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 304 | config='docs/conf.py', |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 305 | outdir='docs/manpages', |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 306 | source=bld.path.ant_glob('docs/manpages/*.rst'), |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 307 | install_path='${MANDIR}', |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 308 | version=VERSION_BASE, |
| 309 | release=VERSION) |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 310 | |
| 311 | def docs(bld): |
| 312 | from waflib import Options |
| 313 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 314 | |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 315 | def doxygen(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 316 | version(bld) |
| 317 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 318 | if not bld.env.DOXYGEN: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 319 | bld.fatal('Cannot build documentation ("doxygen" not found in PATH)') |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 320 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 321 | bld(features='subst', |
| 322 | name='doxygen.conf', |
| 323 | source=['docs/doxygen.conf.in', |
| 324 | 'docs/named_data_theme/named_data_footer-with-analytics.html.in'], |
| 325 | target=['docs/doxygen.conf', |
| 326 | 'docs/named_data_theme/named_data_footer-with-analytics.html'], |
| 327 | VERSION=VERSION, |
| 328 | HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \ |
| 329 | if os.getenv('GOOGLE_ANALYTICS', None) \ |
| 330 | else '../docs/named_data_theme/named_data_footer.html', |
| 331 | GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', '')) |
| 332 | |
| 333 | bld(features='doxygen', |
| 334 | doxyfile='docs/doxygen.conf', |
| 335 | use='doxygen.conf') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 336 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 337 | def sphinx(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 338 | version(bld) |
| 339 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 340 | if not bld.env.SPHINX_BUILD: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 341 | bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)') |
| 342 | |
| 343 | bld(features='sphinx', |
| 344 | config='docs/conf.py', |
| 345 | outdir='docs', |
| 346 | source=bld.path.ant_glob('docs/**/*.rst'), |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 347 | version=VERSION_BASE, |
| 348 | release=VERSION) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 349 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 350 | def version(ctx): |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 351 | # don't execute more than once |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 352 | if getattr(Context.g_module, 'VERSION_BASE', None): |
| 353 | return |
| 354 | |
| 355 | Context.g_module.VERSION_BASE = Context.g_module.VERSION |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 356 | Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.') |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 357 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 358 | # first, try to get a version string from git |
| 359 | gotVersionFromGit = False |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 360 | try: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 361 | cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX] |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 362 | out = subprocess.check_output(cmd, universal_newlines=True).strip() |
| 363 | if out: |
| 364 | gotVersionFromGit = True |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 365 | if out.startswith(GIT_TAG_PREFIX): |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 366 | Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 367 | else: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 368 | # no tags matched |
| 369 | Context.g_module.VERSION = '%s-commit-%s' % (VERSION_BASE, out) |
Davide Pesavento | 21be816 | 2018-05-10 20:36:37 -0400 | [diff] [blame] | 370 | except (OSError, subprocess.CalledProcessError): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 371 | pass |
| 372 | |
Alexander Afanasyev | 3de8aac | 2020-05-28 20:51:43 -0400 | [diff] [blame] | 373 | versionFile = ctx.path.find_node('VERSION.info') |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 374 | if not gotVersionFromGit and versionFile is not None: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 375 | try: |
| 376 | Context.g_module.VERSION = versionFile.read() |
| 377 | return |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 378 | except EnvironmentError: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 379 | pass |
| 380 | |
| 381 | # version was obtained from git, update VERSION file if necessary |
| 382 | if versionFile is not None: |
| 383 | try: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 384 | if versionFile.read() == Context.g_module.VERSION: |
| 385 | # already up-to-date |
| 386 | return |
| 387 | except EnvironmentError as e: |
| 388 | Logs.warn('%s exists but is not readable (%s)' % (versionFile, e.strerror)) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 389 | else: |
Alexander Afanasyev | 3de8aac | 2020-05-28 20:51:43 -0400 | [diff] [blame] | 390 | versionFile = ctx.path.make_node('VERSION.info') |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 391 | |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 392 | try: |
| 393 | versionFile.write(Context.g_module.VERSION) |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 394 | except EnvironmentError as e: |
| 395 | Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror)) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 396 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 397 | def dist(ctx): |
| 398 | version(ctx) |
| 399 | |
| 400 | def distcheck(ctx): |
| 401 | version(ctx) |