Alexander Afanasyev | abaab52 | 2014-04-30 20:42:11 -0700 | [diff] [blame] | 1 | .. _Getting Started with ndn-cxx: |
| 2 | |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 3 | Getting started with ndn-cxx |
| 4 | ============================ |
| 5 | |
| 6 | Supported platforms |
| 7 | ------------------- |
| 8 | |
| 9 | ndn-cxx uses continuous integration and has been tested on the following |
| 10 | platforms: |
| 11 | |
| 12 | - Ubuntu 12.04 (64-bit and 32-bit) |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 13 | - Ubuntu 14.04 (64-bit and 32-bit) |
| 14 | - Ubuntu 14.10 (64-bit and 32-bit) |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 15 | - OS X 10.8 |
| 16 | - OS X 10.9 |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 17 | - OS X 10.10 |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 18 | |
| 19 | ndn-cxx is known to work on the following platforms, although they are not officially |
| 20 | supported: |
| 21 | |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 22 | - Fedora >= 20 |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 23 | - CentOS >= 6.2 |
| 24 | - Gentoo Linux |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 25 | - FreeBSD >= 10.0 |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 26 | - Raspbian >= 3.12 |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 27 | |
| 28 | Prerequisites |
| 29 | ------------- |
| 30 | |
| 31 | Required: |
| 32 | ~~~~~~~~~ |
| 33 | |
| 34 | - ``python`` >= 2.6 |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 35 | - ``libsqlite3`` |
| 36 | - ``libcrypto++`` |
| 37 | - ``pkg-config`` |
| 38 | - Boost libraries >= 1.48 |
| 39 | - OSX Security framework (on OSX platform only) |
| 40 | |
| 41 | Following are the detailed steps for each platform to install the compiler, all necessary |
| 42 | development tools and libraries, and ndn-cxx prerequisites. |
| 43 | |
| 44 | - OS X |
| 45 | |
| 46 | Install Xcode. In Xcode Preferences > Downloads, install "Command |
| 47 | Line Tools". |
| 48 | |
| 49 | If using MacPorts, dependencies can be installed using the following |
| 50 | commands:: |
| 51 | |
| 52 | sudo port install pkgconfig boost sqlite3 libcryptopp |
| 53 | |
Junxiao Shi | 190bee2 | 2015-02-14 19:21:36 -0700 | [diff] [blame] | 54 | .. note:: |
| 55 | |
| 56 | If a major OS X system upgrade is performed after installing dependencies with MacPorts, |
| 57 | remember to `reinstall all ports <https://trac.macports.org/wiki/Migration>`__. |
| 58 | |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 59 | - Ubuntu |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 60 | |
| 61 | In a terminal, enter:: |
| 62 | |
| 63 | sudo apt-get install build-essential |
Alexander Afanasyev | 0151579 | 2014-12-16 14:20:01 -0800 | [diff] [blame] | 64 | sudo apt-get install libsqlite3-dev libcrypto++-dev |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 65 | |
| 66 | # For Ubuntu 12.04 |
| 67 | sudo apt-get install libboost1.48-all-dev |
| 68 | |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 69 | # For all other Ubuntu versions |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 70 | sudo apt-get install libboost-all-dev |
| 71 | |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 72 | - Fedora |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 73 | |
| 74 | In a terminal, enter:: |
| 75 | |
| 76 | sudo yum install gcc-g++ git |
Alexander Afanasyev | 0151579 | 2014-12-16 14:20:01 -0800 | [diff] [blame] | 77 | sudo yum install sqlite-devel cryptopp-devel boost-devel |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 78 | |
| 79 | Optional: |
| 80 | ~~~~~~~~~ |
| 81 | |
| 82 | To build tutorials, manpages, and API documentation the following |
| 83 | dependencies need to be installed: |
| 84 | |
| 85 | - ``doxygen`` |
| 86 | - ``graphviz`` |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 87 | - ``python-sphinx`` and sphinx extensions ``sphinxcontrib-doxylink``, |
| 88 | ``sphinxcontrib-googleanalytics`` |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 89 | |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 90 | The following lists steps for common platforms to install these prerequisites: |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 91 | |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 92 | - On OS X with MacPorts:: |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 93 | |
| 94 | sudo port install doxygen graphviz py27-sphinx sphinx_select |
| 95 | sudo port select sphinx py27-sphinx |
| 96 | |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 97 | # Install sphinx extensions |
| 98 | sudo port install py27-pip |
| 99 | sudo port select pip pip27 |
| 100 | sudo pip install sphinxcontrib-doxylink sphinxcontrib-googleanalytics |
| 101 | |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 102 | - On Ubuntu:: |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 103 | |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 104 | sudo apt-get install doxygen graphviz python-sphinx python-pip |
| 105 | sudo pip install sphinxcontrib-doxylink sphinxcontrib-googleanalytics |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 106 | |
Ivan Yeo | ba1a4a9 | 2015-01-11 00:45:57 -0800 | [diff] [blame] | 107 | - On Fedora:: |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 108 | |
Alexander Afanasyev | 5946ed1 | 2015-01-19 23:41:39 -0800 | [diff] [blame] | 109 | sudo yum install doxygen graphviz python-sphinx |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 110 | sudo pip install sphinxcontrib-doxylink sphinxcontrib-googleanalytics |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 111 | |
Alexander Afanasyev | 7ed2943 | 2015-06-05 18:01:16 -0700 | [diff] [blame] | 112 | .. _build: |
| 113 | |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 114 | Build |
| 115 | ----- |
| 116 | |
| 117 | (These are instructions to build ndn-cxx. To do development of ndn-cxx |
| 118 | code and update the build system, see Development.) |
| 119 | |
| 120 | To build in a terminal, change directory to the ndn-cxx root. Enter: |
| 121 | |
| 122 | :: |
| 123 | |
| 124 | ./waf configure |
| 125 | ./waf |
| 126 | sudo ./waf install |
| 127 | |
Alexander Afanasyev | 7ed2943 | 2015-06-05 18:01:16 -0700 | [diff] [blame] | 128 | By default, only the static version of ndn-cxx library is built. To build the shared library, |
| 129 | use ``--enable-shared`` option for ``./waf configure`` command. For example:: |
| 130 | |
| 131 | ./waf configure --enable-shared |
| 132 | |
| 133 | To disable build of the static library and build only the shared library, use additional |
| 134 | ``--disable-static`` option. Note that at least one version of the library needs to be |
| 135 | enabled. |
| 136 | |
| 137 | :: |
| 138 | |
| 139 | ./waf configure --enable-shared --disable-static |
| 140 | |
| 141 | |
| 142 | After shared library is built and installed, some systems require additional actions. |
| 143 | |
| 144 | - on Linux:: |
| 145 | |
| 146 | sudo ldconfig |
| 147 | |
| 148 | - on FreeBSD:: |
| 149 | |
| 150 | sudo ldconfig -m |
| 151 | |
| 152 | .. note:: |
| 153 | When library is installed in a non-standard path (in general: not in ``/usr/lib`` or |
| 154 | ``/usr/local/lib``; on some Linux distros including Fedora: not in ``/usr/lib``), |
| 155 | additional actions may be necessary. |
| 156 | |
| 157 | The installation path should be added to ``/etc/ld.so.conf`` (or in |
| 158 | ``/etc/ld.so.conf.d``) **before** running ``sudo ldconfig``. For example:: |
| 159 | |
| 160 | echo /usr/local/lib | sudo tee /etc/ld.so.conf.d/ndn-cxx.conf |
| 161 | |
| 162 | Alternatively, ``LD_LIBRARY_PATH`` environment variable should be set to the location of |
| 163 | the library:: |
| 164 | |
| 165 | export LD_LIBRARY_PATH=/usr/local/lib |
| 166 | |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 167 | This builds and installs the following items: |
| 168 | |
Alexander Afanasyev | 7ed2943 | 2015-06-05 18:01:16 -0700 | [diff] [blame] | 169 | - ``<LIBPATH>/libndn-cxx.a``: static NDN C++ library (if enabled) |
| 170 | - ``<LIBPATH>/libndn-cxx.so``, ``<LIBPATH>/libndn-cxx.so.<VERSION>`` (on Linux), |
| 171 | ``<LIBPATH>/libndn-cxx.dylib``, ``<LIBPATH>/libndn-cxx.<VERSION>.dylib`` (on OS X): |
| 172 | shared NDN C++ library (if enabled) |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 173 | - ``<LIBPATH>/pkgconfig/libndn-cxx.pc``: pkgconfig file storing all |
| 174 | neccessary flags to build against the library. For example, if |
| 175 | pkgconfig or pkgconf package is installed and ``PKG_CONFIG_PATH`` is |
| 176 | configured properly (or ``<LIBPATH>/pkgconfig`` is a default path), |
| 177 | ``pkgconfig --libs --clflags libndn-cxx`` will return all necessary |
| 178 | compile and link flags for the library. |
| 179 | - ``<BINPATH>/tlvdump``: a simple tool to dump contents of |
| 180 | TLV-formatted data |
| 181 | - ``<BINPATH>/ndncatchunks3``: a simplified equivalent to ndncatchunks2 |
| 182 | in NDNx package |
| 183 | - ``<BINPATH>/ndnputchunks3``: a simplified equivalent to ndnputchunks2 |
| 184 | in NDNx package |
| 185 | - ``<BINPATH>/ndnsec``: tool to manage NDN keys and certificates |
| 186 | - ``<BINPATH>/ndnsec-*``: convenience scripts for ``ndnsec`` tools |
| 187 | |
| 188 | If configured with tests: ``./waf configure --with-tests``), the above |
| 189 | commands will also produce: |
| 190 | |
| 191 | - ``build/unit-tests``: A unit test binary for the library |
| 192 | |
Junxiao Shi | e04bd83 | 2014-11-29 23:02:38 -0700 | [diff] [blame] | 193 | 1.5GB available memory per CPU core is necessary for efficient compilation. |
| 194 | On a multi-core machine with less than 1.5GB available memory per CPU core, |
| 195 | limit the objects being compiled in parallel with ``./waf -jN`` where N is the amount |
| 196 | of available memory divided by 1.5GB (eg. ``./waf -j1`` for 1.5GB memory), |
| 197 | which could usually avoid memory thrashing and result in faster compilation. |
| 198 | |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 199 | Build with examples |
| 200 | ------------------- |
| 201 | |
| 202 | By default, examples in ``examples/`` are not build. To enable them, use |
| 203 | ``--with-examples`` configure option: |
| 204 | |
| 205 | :: |
| 206 | |
| 207 | ./waf configure --with-examples |
| 208 | ./waf |
Alexander Afanasyev | 7ed2943 | 2015-06-05 18:01:16 -0700 | [diff] [blame] | 209 | sudo ./waf install |
| 210 | |
| 211 | :ref:`Additional step <build>`: |
| 212 | |
| 213 | - on Linux:: |
| 214 | |
| 215 | sudo ldconfig |
| 216 | |
| 217 | - on FreeBSD:: |
| 218 | |
| 219 | sudo ldconfig -m |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 220 | |
| 221 | To run examples: |
| 222 | |
| 223 | :: |
| 224 | |
| 225 | # trivial producer app |
| 226 | ./build/examples/producer |
| 227 | |
| 228 | # trivial consumer app |
| 229 | ./build/examples/consumer |
| 230 | |
| 231 | # trivial consumer app with timers |
| 232 | ./build/examples/consumer-with-timer |
| 233 | |
| 234 | If you want to test out a sample application, just create a ``.cpp`` file in ``examples/`` |
| 235 | folder and it will be compiled on the next run on ``./waf``. For example: |
| 236 | |
| 237 | :: |
| 238 | |
| 239 | cp examples/consumer.cpp examples/my-new-consumer-app.cpp |
| 240 | ./waf |
Alexander Afanasyev | 7ed2943 | 2015-06-05 18:01:16 -0700 | [diff] [blame] | 241 | sudo ./waf install |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 242 | ./build/examples/my-new-consumer-app |
| 243 | |
| 244 | |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 245 | Debug symbols |
| 246 | ~~~~~~~~~~~~~ |
| 247 | |
| 248 | The default compiler flags enable debug symbols to be included in binaries (i.e., ``-g`` |
| 249 | flag for ``./waf configure`` and ``-g3`` for ``./waf configure --debug``). This |
| 250 | potentially allows more meaningful debugging information if your application crashes. |
| 251 | |
| 252 | If it is undesirable, default flags can be easily overridden: |
| 253 | |
| 254 | :: |
| 255 | |
| 256 | CXXFLAGS="-O2" ./waf configure --prefix=/usr --sysconfdir=/etc |
| 257 | ./waf |
| 258 | sudo ./waf install |
| 259 | |
Alexander Afanasyev | 7ed2943 | 2015-06-05 18:01:16 -0700 | [diff] [blame] | 260 | :ref:`Additional step <build>`: |
| 261 | |
| 262 | - on Linux:: |
| 263 | |
| 264 | sudo ldconfig |
| 265 | |
| 266 | - on FreeBSD:: |
| 267 | |
| 268 | sudo ldconfig -m |
| 269 | |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 270 | Documentation |
| 271 | ------------- |
| 272 | |
| 273 | ndn-cxx tutorials and API documentation can be built using the following |
| 274 | commands: |
| 275 | |
| 276 | :: |
| 277 | |
| 278 | # Full set of documentation (tutorials + API) in build/docs |
| 279 | ./waf docs |
| 280 | |
| 281 | # Only tutorials in `build/docs` |
| 282 | ./waf sphinx |
| 283 | |
| 284 | # Only API docs in `build/docs/doxygen` |
| 285 | ./waf doxgyen |
| 286 | |
| 287 | Manpages are automatically created and installed during the normal build |
| 288 | process (e.g., during ``./waf`` and ``./waf install``), if |
| 289 | ``python-sphinx`` module is detected during ``./waf configure`` stage. |
| 290 | By default, manpages are installed into ``${PREFIX}/share/man`` (where |
| 291 | default value for ``PREFIX`` is ``/usr/local``). This location can be |
| 292 | changed during ``./waf configure`` stage using ``--prefix``, |
| 293 | ``--datarootdir``, or ``--mandir`` options. |
| 294 | |
| 295 | For more details, refer to ``./waf --help``. |
| 296 | |
| 297 | Development Build |
| 298 | ----------------- |
| 299 | |
| 300 | The following is the suggested configure commands for development build. |
| 301 | |
| 302 | :: |
| 303 | |
| 304 | ./waf configure --debug --with-tests |
| 305 | ./waf |
| 306 | sudo ./waf install |
| 307 | |
Alexander Afanasyev | 7ed2943 | 2015-06-05 18:01:16 -0700 | [diff] [blame] | 308 | :ref:`Additional step <build>`: |
| 309 | |
| 310 | - on Linux:: |
| 311 | |
| 312 | sudo ldconfig |
| 313 | |
| 314 | - on FreeBSD:: |
| 315 | |
| 316 | sudo ldconfig -m |
| 317 | |
Alexander Afanasyev | c5452c5 | 2014-04-29 17:21:51 -0700 | [diff] [blame] | 318 | In the development build all compiler optimizations are disabled by |
| 319 | default and all warnings are treated as error. The default behavior can |
| 320 | be overridden by setting ``CXXFLAGS`` environment variable before |
| 321 | running ``./waf configure``: |
| 322 | |
| 323 | :: |
| 324 | |
| 325 | CXXFLAGS="-O1 -g3" ./waf configure --debug --with-tests |
| 326 | ... |
Alexander Afanasyev | 5946ed1 | 2015-01-19 23:41:39 -0800 | [diff] [blame] | 327 | |
| 328 | Customize Compiler |
| 329 | ------------------ |
| 330 | |
| 331 | To customize compiler, set ``CXX`` environment variable to point to compiler binary and, in |
| 332 | some case, specify type of the compiler using ``--check-cxx-compiler``. For example, when |
| 333 | using clang compiler on Linux system, use the following: |
| 334 | |
| 335 | :: |
| 336 | |
| 337 | CXX=clang++ ./waf configure --check-cxx-compiler=clang++ |