Installing problem of NS3.26 on MAC OS 10.11.6 (15G1421)

1,767 views
Skip to first unread message

Jaycee King

unread,
Jun 23, 2017, 6:37:00 AM6/23/17
to ns-3-users
Hi, 

I'm new to the NS3. After I installed Xcode and common line tools and downloaded ns3.26 according to tutorial, I tried to building ns3 by "../build.py --enable-examples --enable-tests". I got the error message in Terminal as follow

"../src/wifi/model/wifi-phy.cc:65:46: error: no matching constructor for initialization of 'WifiPhy::ChannelToFrequencyWidthMap' (aka 'map<pair<unsigned short, ns3::WifiPhyStandard>, pair<unsigned int, unsigned int> >')

WifiPhy::ChannelToFrequencyWidthMap WifiPhy::m_channelToFrequencyWidth =

                                             ^

/usr/include/c++/4.2.1/bits/stl_map.h:188:9: note: candidate constructor template not viable: requires 2 arguments, but 79 were provided

        map(_InputIterator __first, _InputIterator __last)

        ^

/usr/include/c++/4.2.1/bits/stl_map.h:204:9: note: candidate constructor template not viable: requires at most 4 arguments, but 79 were provided

        map(_InputIterator __first, _InputIterator __last,

        ^

/usr/include/c++/4.2.1/bits/stl_map.h:165:7: note: candidate constructor not viable: requires at most 2 arguments, but 79 were provided

      map(const _Compare& __comp, const allocator_type& __a = allocator_type())

      ^

/usr/include/c++/4.2.1/bits/stl_map.h:175:7: note: candidate constructor not viable: requires single argument '__x', but 79 arguments were provided

      map(const map& __x)

      ^

/usr/include/c++/4.2.1/bits/stl_map.h:157:7: note: candidate constructor not viable: requires 0 arguments, but 79 were provided

      map()

      ^

1 error generated.


Waf: Leaving directory `/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build'

Build failed

 -> task in 'ns3-wifi' failed (exit status 1): 

{task 4358878656: cxx wifi-phy.cc -> wifi-phy.cc.1.o}

['/usr/bin/clang++', '-O0', '-ggdb', '-g3', '-Wall', '-Werror', '-Wno-unused-local-typedefs', '-Wno-potentially-evaluated-expression', '-std=c++11', '-fPIC', '-I.', '-I..', '-DNS3_BUILD_PROFILE_DEBUG', '-DNS3_ASSERT_ENABLE', '-DNS3_LOG_ENABLE', '-DHAVE_SYS_IOCTL_H=1', '-DHAVE_IF_NETS_H=1', '-DHAVE_NET_ETHERNET_H=1', '-DHAVE_SQLITE3=1', '../src/wifi/model/wifi-phy.cc', '-c', '-o', '/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build/src/wifi/model/wifi-phy.cc.1.o']

Traceback (most recent call last):

  File "./build.py", line 171, in <module>

    sys.exit(main(sys.argv))

  File "./build.py", line 162, in main

    build_ns3(config, build_examples, build_tests, args, build_options)

  File "./build.py", line 82, in build_ns3

    run_command([sys.executable, "waf", "build"] + build_options)

  File "/Users/Jaycee/Documents/workspace/ns-allinone-3.26/util.py", line 25, in run_command

    raise CommandError("Command %r exited with code %i" % (argv, retval))

util.CommandError: Command ['/Users/Jaycee/anaconda/bin/python', 'waf', 'build'] exited with code 1"

Hope anyone could help me figure out this problem. Thanks a lot!

Jaycee

Rediet

unread,
Jun 23, 2017, 9:20:59 AM6/23/17
to ns-3-users
Hello Jaycee,

I'm not running ns-3 on Mac but it seems that there is an issue with your C++ version: see wiki.

BR,

Rediet

Jaycee King

unread,
Jun 23, 2017, 10:03:15 AM6/23/17
to ns-3-users
Hi Rediet,

Thanks for your help. I've checked C++ version (shown as follow), which is LLVM 8.0.0. 

"ns-allinone-3.26 Jaycee$ gcc --version

Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1

Apple LLVM version 8.0.0 (clang-800.0.42.1)

Target: x86_64-apple-darwin15.6.0

Thread model: posix

InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin


Actually, I've successfully built and run ns3.25 with no problem. But I cannot build new version ns3.26.

Best regards,

Jaycee

在 2017年6月23日星期五 UTC+1下午2:20:59,Rediet写道:

Konstantinos

unread,
Jun 23, 2017, 10:40:21 AM6/23/17
to ns-3-users
Hi

Can you try with ns-3-dev?

Regards
K

Tom Henderson

unread,
Jun 23, 2017, 11:03:07 AM6/23/17
to ns-3-...@googlegroups.com
On 06/23/2017 07:40 AM, Konstantinos wrote:
> Hi
>
> Can you try with ns-3-dev?
>
> Regards
> K
>
> On Friday, June 23, 2017 at 3:03:15 PM UTC+1, Jaycee King wrote:
>
> Hi Rediet,
>
> Thanks for your help. I've checked C++ version (shown as follow),
> which is LLVM 8.0.0.
>
> "ns-allinone-3.26 Jaycee$ gcc --version
>
> Configured with:
> --prefix=/Applications/Xcode.app/Contents/Developer/usr
> --with-gxx-include-dir=/usr/include/c++/4.2.1


Hi, I could not reproduce your problem on ns-3.26 on my installation; it
builds fine for me.

When I do 'gcc --version' I get:
$ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr
--with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/usr/include/c++/4.2.1
Apple LLVM version 8.0.0 (clang-800.0.42.1)
Target: x86_64-apple-darwin15.6.0

We are really using clang, so do you see something like this?

$ clang -v
Apple LLVM version 8.0.0 (clang-800.0.42.1)
Target: x86_64-apple-darwin15.6.0
Thread model: posix
InstalledDir:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

My Xcode version:

$ /usr/bin/xcodebuild -version
Xcode 8.2.1
Build version 8C1002

It seems that you may be using 10.11 El Capitan; I don't have a version
of that older OS.

- Tom

Jaycee King

unread,
Jun 26, 2017, 5:20:44 AM6/26/17
to ns-3-users
Hi Tom,

Thanks for your reply. Now, I've updated my MAC OS to latest one 10.12.5, and when I type gcc --version and clang -v, the terminal shows respectively as follow

"gcc --version

Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/usr/include/c++/4.2.1

Apple LLVM version 8.1.0 (clang-802.0.42)

Target: x86_64-apple-darwin16.6.0

Thread model: posix

InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin


" clang -v

Apple LLVM version 8.1.0 (clang-802.0.42)

Target: x86_64-apple-darwin16.6.0

Thread model: posix

InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

"
But I still cannot install ns3.26, and the terminal shows

"

JayceedeMacBook-Pro:ns-allinone-3.26 Jaycee$ ./build.py

# Build NetAnim

Entering directory `netanim-3.107'

 =>  qmake -v

QMake version 3.0

Using Qt version 5.6.0 in /Users/Jaycee/anaconda/lib

qmake found

 =>  qmake -spec macx-g++ NetAnim.pro

Info: creating stash file /Users/Jaycee/Documents/workspace/ns-allinone-3.26/netanim-3.107/.qmake.stash

 =>  make

/Applications/Xcode.app/Contents/Developer/usr/bin/g++ -c -pipe -O2 -std=gnu++0x -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk -mmacosx-version-min=10.7 -Wall -W -fPIC -DNS3_LOG_ENABLE -DQT_NO_DEBUG -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -Iqtpropertybrowser/src -I../../../../anaconda/include/qt -I../../../../anaconda/include/qt/QtPrintSupport -I../../../../anaconda/include/qt/QtWidgets -I../../../../anaconda/include/qt/QtGui -I../../../../anaconda/include/qt/QtCore -I. -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/AGL.framework/Headers -I../../../../anaconda/mkspecs/macx-g++ -o main.o main.cpp

In file included from main.cpp:19:

In file included from ./netanim.h:22:

In file included from ./common.h:25:

In file included from ../../../../anaconda/include/qt/QtWidgets/QWidget:1:

In file included from ../../../../anaconda/include/qt/QtWidgets/qwidget.h:38:

In file included from ../../../../anaconda/include/qt/QtCore/qobject.h:41:

../../../../anaconda/include/qt/QtCore/qstring.h:756:55: error: no type named

      'u16string' in namespace 'std'

    static inline QString fromStdU16String(const std::u16string &s);

                                                 ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:757:17: error: no type named

      'u16string' in namespace 'std'

    inline std::u16string toStdU16String() const;

           ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:758:55: error: no type named

      'u32string' in namespace 'std'

    static inline QString fromStdU32String(const std::u32string &s);

                                                 ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:759:17: error: no type named

      'u32string' in namespace 'std'

    inline std::u32string toStdU32String() const;

           ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:1319:53: error: no type named

      'u16string' in namespace 'std'

inline QString QString::fromStdU16String(const std::u16string &s)

                                               ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:1322:13: error: no type named

      'u16string' in namespace 'std'

inline std::u16string QString::toStdU16String() const

       ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:1323:15: error: no member named

      'u16string' in namespace 'std'

{ return std::u16string(reinterpret_cast<const char16_t*>(utf16()), length()); }

         ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:1325:53: error: no type named

      'u32string' in namespace 'std'

inline QString QString::fromStdU32String(const std::u32string &s)

                                               ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:1328:13: error: no type named

      'u32string' in namespace 'std'

inline std::u32string QString::toStdU32String() const

       ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:1330:19: error: expected ';'

      after expression

    std::u32string u32str(length(), char32_t(0));

                  ^

                  ;

../../../../anaconda/include/qt/QtCore/qstring.h:1330:10: error: no member named

      'u32string' in namespace 'std'

    std::u32string u32str(length(), char32_t(0));

    ~~~~~^

../../../../anaconda/include/qt/QtCore/qstring.h:1330:20: error: use of

      undeclared identifier 'u32str'

    std::u32string u32str(length(), char32_t(0));

                   ^

../../../../anaconda/include/qt/QtCore/qstring.h:1331:75: error: use of

      undeclared identifier 'u32str'

    int len = toUcs4_helper(d->data(), length(), reinterpret_cast<uint*>(&u32str...

                                                                          ^

../../../../anaconda/include/qt/QtCore/qstring.h:1332:5: error: use of

      undeclared identifier 'u32str'

    u32str.resize(len);

    ^

../../../../anaconda/include/qt/QtCore/qstring.h:1333:12: error: use of

      undeclared identifier 'u32str'

    return u32str;

           ^

In file included from main.cpp:19:

In file included from ./netanim.h:22:

In file included from ./common.h:25:

In file included from ../../../../anaconda/include/qt/QtWidgets/QWidget:1:

In file included from ../../../../anaconda/include/qt/QtWidgets/qwidget.h:38:

In file included from ../../../../anaconda/include/qt/QtCore/qobject.h:43:

In file included from ../../../../anaconda/include/qt/QtCore/qlist.h:41:

In file included from ../../../../anaconda/include/qt/QtCore/qhashfunctions.h:39:

../../../../anaconda/include/qt/QtCore/qpair.h:62:44: error: no member named

      'declval' in namespace 'std'

        Q_DECL_NOEXCEPT_EXPR(noexcept(std::declval<T1&>() = p.first) && ...

                                      ~~~~~^

../../../../anaconda/include/qt/QtCore/qcompilerdetection.h:1036:43: note: 

      expanded from macro 'Q_DECL_NOEXCEPT_EXPR'

# define Q_DECL_NOEXCEPT_EXPR(x) noexcept(x)

                                          ^

In file included from main.cpp:19:

In file included from ./netanim.h:22:

In file included from ./common.h:25:

In file included from ../../../../anaconda/include/qt/QtWidgets/QWidget:1:

In file included from ../../../../anaconda/include/qt/QtWidgets/qwidget.h:38:

In file included from ../../../../anaconda/include/qt/QtCore/qobject.h:43:

In file included from ../../../../anaconda/include/qt/QtCore/qlist.h:41:

In file included from ../../../../anaconda/include/qt/QtCore/qhashfunctions.h:39:

../../../../anaconda/include/qt/QtCore/qpair.h:62:52: error: 'T1' does not refer

      to a value

        Q_DECL_NOEXCEPT_EXPR(noexcept(std::declval<T1&>() = p.first) && ...

                                                   ^

../../../../anaconda/include/qt/QtCore/qpair.h:42:17: note: declared here

template <class T1, class T2>

                ^

../../../../anaconda/include/qt/QtCore/qpair.h:62:55: error: expected expression

        Q_DECL_NOEXCEPT_EXPR(noexcept(std::declval<T1&>() = p.first) && ...

                                                      ^

../../../../anaconda/include/qt/QtCore/qpair.h:62:57: error: expected expression

        Q_DECL_NOEXCEPT_EXPR(noexcept(std::declval<T1&>() = p.first) && ...

                                                        ^

fatal error: too many errors emitted, stopping now [-ferror-limit=]

20 errors generated.

make: *** [main.o] Error 1

Error building NetAnim.

Skipping NetAnim ....

Leaving directory `netanim-3.107'

# Build NS-3

Entering directory `./ns-3.26'

 =>  /Users/Jaycee/anaconda/bin/python waf configure --with-pybindgen ../pybindgen-0.17.0.post57+nga6376f2

Setting top to                           : /Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26 

Setting out to                           : /Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build 

Checking for 'clang' (C compiler)        : /usr/bin/clang 

Checking for cc version                  : 8.1.0 

Checking for 'clang++' (C++ compiler)    : /usr/bin/clang++ 

Checking for program 'python'            : /Users/Jaycee/anaconda/bin/python 

Checking for python version              : (3, 5, 2, 'final', 0) 

python-config                            : /Users/Jaycee/anaconda/bin/python3.5-config 

Asking python-config for pyembed '--cflags --libs --ldflags' flags : yes 

Testing pyembed configuration                                      : Could not build a python embedded interpreter 

Testing pyembed configuration                                      : yes 

Asking python-config for pyext '--cflags --libs --ldflags' flags   : yes 

Testing pyext configuration                                        : Could not build python extensions 

Testing pyext configuration                                        : Could not build python extensions 

Checking boost includes                                            : headers not found, please provide a --boost-includes argument (see help) 

Checking boost includes                                            : headers not found, please provide a --boost-includes argument (see help) 

Checking for click location                                        : not found 

Checking for program 'pkg-config'                                  : /usr/local/bin/pkg-config 

Checking for 'gtk+-2.0' >= 2.12                                    : not found 

Checking for 'libxml-2.0' >= 2.7                                   : yes 

Checking for type uint128_t                                        : not found 

Checking for type __uint128_t                                      : yes 

Checking high precision implementation                             : 128-bit integer (default) 

Checking for header stdint.h                                       : yes 

Checking for header inttypes.h                                     : yes 

Checking for header sys/inttypes.h                                 : not found 

Checking for header sys/types.h                                    : yes 

Checking for header sys/stat.h                                     : yes 

Checking for header dirent.h                                       : yes 

Checking for header stdlib.h                                       : yes 

Checking for header signal.h                                       : yes 

Checking for header pthread.h                                      : yes 

Checking for header stdint.h                                       : yes 

Checking for header inttypes.h                                     : yes 

Checking for header sys/inttypes.h                                 : not found 

Checking for library rt                                            : not found 

Checking for header sys/ioctl.h                                    : yes 

Checking for header net/if.h                                       : yes 

Checking for header net/ethernet.h                                 : yes 

Checking for header linux/if_tun.h                                 : not found 

Checking for header netpacket/packet.h                             : not found 

Checking for NSC location                                          : not found 

Checking for 'sqlite3'                                             : yes 

Checking for header linux/if_tun.h                                 : not found 

Checking for program 'sudo'                                        : /usr/bin/sudo 

Checking for program 'valgrind'                                    : not found 

Checking for 'gsl'                                                 : not found 

python-config                                                      : not found 

Checking for program 'doxygen'                                     : not found 

---- Summary of optional NS-3 features:

Build profile                 : debug

Build directory               : 

BRITE Integration             : not enabled (BRITE not enabled (see option --with-brite))

DES Metrics event collection  : not enabled (defaults to disabled)

Emulation FdNetDevice         : not enabled (needs netpacket/packet.h)

Examples                      : not enabled (defaults to disabled)

File descriptor NetDevice     : enabled

GNU Scientific Library (GSL)  : not enabled (GSL not found)

Gcrypt library                : not enabled (libgcrypt not found: you can use libgcrypt-config to find its location.)

GtkConfigStore                : not enabled (library 'gtk+-2.0 >= 2.12' not found)

MPI Support                   : not enabled (option --enable-mpi not selected)

NS-3 Click Integration        : not enabled (nsclick not enabled (see option --with-nsclick))

NS-3 OpenFlow Integration     : not enabled (Required boost libraries not found)

Network Simulation Cradle     : not enabled (NSC not found (see option --with-nsc))

PlanetLab FdNetDevice         : not enabled (PlanetLab operating system not detected (see option --force-planetlab))

PyViz visualizer              : not enabled (Python Bindings are needed but not enabled)

Python Bindings               : not enabled (Python library or headers missing)

Real Time Simulator           : not enabled (librt is not available)

SQlite stats data output      : enabled

Tap Bridge                    : not enabled (<linux/if_tun.h> include not detected)

Tap FdNetDevice               : not enabled (needs linux/if_tun.h)

Tests                         : not enabled (defaults to disabled)

Threading Primitives          : enabled

Use sudo to set suid bit      : not enabled (option --enable-sudo not selected)

XmlIo                         : enabled

'configure' finished successfully (3.087s)

 =>  /Users/Jaycee/anaconda/bin/python waf build

Waf: Entering directory `/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build'

[   1/1738] Compiling install-ns3-header: ns3/cosine-antenna-model.h

[   2/1738] Compiling install-ns3-header: ns3/antenna-model.h

[   3/1738] Compiling install-ns3-header: ns3/angles.h

[   4/1738] Compiling install-ns3-header: ns3/isotropic-antenna-model.h

[   5/1738] Compiling install-ns3-header: ns3/parabolic-antenna-model.h

[   6/1738] Compiling install-ns3-header: ns3/aodv-routing-protocol.h

[   7/1738] Compiling install-ns3-header: ns3/aodv-rqueue.h

[   8/1738] Compiling install-ns3-header: ns3/aodv-neighbor.h

[   9/1738] Compiling install-ns3-header: ns3/aodv-id-cache.h

[  10/1738] Compiling install-ns3-header: ns3/aodv-dpd.h

[  11/1738] Compiling install-ns3-header: ns3/aodv-rtable.h

[  12/1738] Compiling install-ns3-header: ns3/aodv-packet.h

[  13/1738] Compiling install-ns3-header: ns3/aodv-helper.h

[  14/1738] Compiling install-ns3-header: ns3/udp-echo-client.h

[  15/1738] Compiling install-ns3-header: ns3/packet-sink-helper.h

[  16/1738] Compiling install-ns3-header: ns3/udp-client-server-helper.h

[  17/1738] Compiling install-ns3-header: ns3/application-packet-probe.h

[  18/1738] Compiling install-ns3-header: ns3/seq-ts-header.h

[  19/1738] Compiling install-ns3-header: ns3/packet-sink.h

[  20/1738] Compiling install-ns3-header: ns3/udp-trace-client.h

[  21/1738] Compiling install-ns3-header: ns3/udp-server.h

[  22/1738] Compiling install-ns3-header: ns3/on-off-helper.h

[  23/1738] Compiling install-ns3-header: ns3/udp-echo-helper.h

[  24/1738] Compiling install-ns3-header: ns3/bulk-send-helper.h

[  25/1738] Compiling install-ns3-header: ns3/onoff-application.h

[  26/1738] Compiling install-ns3-header: ns3/udp-client.h

[  27/1738] Compiling install-ns3-header: ns3/packet-loss-counter.h

[  28/1738] Compiling install-ns3-header: ns3/udp-echo-server.h

[  29/1738] Compiling install-ns3-header: ns3/bulk-send-application.h

[  30/1738] Compiling install-ns3-header: ns3/bridge-net-device.h

[  31/1738] Compiling install-ns3-header: ns3/bridge-channel.h

[  32/1738] Compiling install-ns3-header: ns3/bridge-helper.h

[  33/1738] Compiling install-ns3-header: ns3/building-list.h

[  34/1738] Compiling install-ns3-header: ns3/hybrid-buildings-propagation-loss-model.h

[  35/1738] Compiling install-ns3-header: ns3/buildings-helper.h

[  36/1738] Compiling install-ns3-header: ns3/itu-r-1238-propagation-loss-model.h

[  37/1738] Compiling install-ns3-header: ns3/buildings-propagation-loss-model.h

[  38/1738] Compiling install-ns3-header: ns3/oh-buildings-propagation-loss-model.h

[  39/1738] Compiling install-ns3-header: ns3/building-position-allocator.h

[  40/1738] Compiling install-ns3-header: ns3/mobility-building-info.h

[  41/1738] Compiling install-ns3-header: ns3/building-container.h

[  42/1738] Compiling install-ns3-header: ns3/building.h

[  43/1738] Compiling install-ns3-header: ns3/building-allocator.h

[  44/1738] Compiling install-ns3-header: ns3/file-config.h

[  45/1738] Compiling install-ns3-header: ns3/config-store.h

[  46/1738] Compiling install-ns3-header: ns3/attribute-construction-list.h

[  47/1738] Compiling install-ns3-header: ns3/breakpoint.h

[  48/1738] Compiling install-ns3-header: ns3/object-vector.h

[  49/1738] Compiling install-ns3-header: ns3/log-macros-enabled.h

[  50/1738] Compiling install-ns3-header: ns3/system-wall-clock-ms.h

[  51/1738] Compiling install-ns3-header: ns3/object-map.h

[  52/1738] Compiling install-ns3-header: ns3/unix-fd-reader.h

[  53/1738] Compiling install-ns3-header: ns3/assert.h

[  54/1738] Compiling install-ns3-header: ns3/event-id.h

[  55/1738] Compiling install-ns3-header: ns3/watchdog.h

[  56/1738] Compiling install-ns3-header: ns3/command-line.h

[  57/1738] Compiling install-ns3-header: ns3/empty.h

[  58/1738] Compiling install-ns3-header: ns3/simulator-impl.h

[  59/1738] Compiling install-ns3-header: ns3/traced-callback.h

[  60/1738] Compiling install-ns3-header: ns3/callback.h

[  61/1738] Compiling install-ns3-header: ns3/simulator.h

[  62/1738] Compiling install-ns3-header: ns3/system-condition.h

[  63/1738] Compiling install-ns3-header: ns3/fatal-impl.h

[  64/1738] Compiling install-ns3-header: ns3/int-to-type.h

[  65/1738] Compiling install-ns3-header: ns3/timer-impl.h

[  66/1738] Compiling install-ns3-header: ns3/abort.h

[  67/1738] Compiling install-ns3-header: ns3/default-deleter.h

[  68/1738] Compiling install-ns3-header: ns3/type-id.h

[  69/1738] Compiling install-ns3-header: ns3/default-simulator-impl.h

[  70/1738] Compiling install-ns3-header: ns3/simulation-singleton.h

[  71/1738] Compiling install-ns3-header: ns3/rng-stream.h

[  72/1738] Compiling install-ns3-header: ns3/des-metrics.h

[  73/1738] Compiling install-ns3-header: ns3/log.h

[  74/1738] Compiling install-ns3-header: ns3/hash-function.h

[  75/1738] Compiling install-ns3-header: ns3/random-variable-stream.h

[  76/1738] Compiling install-ns3-header: ns3/attribute-accessor-helper.h

[  77/1738] Compiling install-ns3-header: ns3/simple-ref-count.h

[  78/1738] Compiling install-ns3-header: ns3/trace-source-accessor.h

[  79/1738] Compiling install-ns3-header: ns3/integer.h

[  80/1738] Compiling install-ns3-header: ns3/type-traits.h

[  81/1738] Compiling install-ns3-header: ns3/unused.h

[  82/1738] Compiling install-ns3-header: ns3/system-path.h

[  83/1738] Compiling install-ns3-header: ns3/double.h

[  84/1738] Compiling install-ns3-header: ns3/fatal-error.h

[  85/1738] Compiling install-ns3-header: ns3/attribute.h

[  86/1738] Compiling install-ns3-header: ns3/scheduler.h

[  87/1738] Compiling install-ns3-header: ns3/ptr.h

[  88/1738] Compiling install-ns3-header: ns3/ref-count-base.h

[  89/1738] Compiling install-ns3-header: ns3/enum.h

[  90/1738] Compiling install-ns3-header: ns3/random-variable-stream-helper.h

[  91/1738] Compiling install-ns3-header: ns3/calendar-scheduler.h

[  92/1738] Compiling install-ns3-header: ns3/make-event.h

[  93/1738] Compiling install-ns3-header: ns3/event-impl.h

[  94/1738] Compiling install-ns3-header: ns3/int64x64.h

[  95/1738] Compiling install-ns3-header: ns3/attribute-helper.h

[  96/1738] Compiling install-ns3-header: ns3/object.h

[  97/1738] Compiling install-ns3-header: ns3/deprecated.h

[  98/1738] Compiling install-ns3-header: ns3/hash.h

[  99/1738] Compiling install-ns3-header: ns3/valgrind.h

[ 100/1738] Compiling install-ns3-header: ns3/int64x64-128.h

[ 101/1738] Compiling install-ns3-header: ns3/singleton.h

[ 102/1738] Compiling install-ns3-header: ns3/global-value.h

[ 103/1738] Compiling install-ns3-header: ns3/map-scheduler.h

[ 104/1738] Compiling install-ns3-header: ns3/heap-scheduler.h

[ 105/1738] Compiling install-ns3-header: ns3/object-factory.h

[ 106/1738] Compiling install-ns3-header: ns3/build-profile.h

[ 107/1738] Compiling install-ns3-header: ns3/uinteger.h

[ 108/1738] Compiling install-ns3-header: ns3/event-garbage-collector.h

[ 109/1738] Compiling install-ns3-header: ns3/synchronizer.h

[ 110/1738] Compiling install-ns3-header: ns3/rng-seed-manager.h

[ 111/1738] Compiling install-ns3-header: ns3/nstime.h

[ 112/1738] Compiling install-ns3-header: ns3/list-scheduler.h

[ 113/1738] Compiling install-ns3-header: ns3/hash-murmur3.h

[ 114/1738] Compiling install-ns3-header: ns3/timer.h

[ 115/1738] Compiling install-ns3-header: ns3/system-thread.h

[ 116/1738] Compiling install-ns3-header: ns3/hash-fnv.h

[ 117/1738] Compiling install-ns3-header: ns3/traced-value.h

[ 118/1738] Compiling install-ns3-header: ns3/names.h

[ 119/1738] Compiling install-ns3-header: ns3/type-name.h

[ 120/1738] Compiling install-ns3-header: ns3/pointer.h

[ 121/1738] Compiling install-ns3-header: ns3/boolean.h

[ 122/1738] Compiling install-ns3-header: ns3/non-copyable.h

[ 123/1738] Compiling install-ns3-header: ns3/vector.h

[ 124/1738] Compiling install-ns3-header: ns3/math.h

[ 125/1738] Compiling install-ns3-header: ns3/object-ptr-container.h

[ 126/1738] Compiling install-ns3-header: ns3/int64x64-double.h

[ 127/1738] Compiling install-ns3-header: ns3/log-macros-disabled.h

[ 128/1738] Compiling install-ns3-header: ns3/system-mutex.h

[ 129/1738] Compiling install-ns3-header: ns3/test.h

[ 130/1738] Compiling install-ns3-header: ns3/object-base.h

[ 131/1738] Compiling install-ns3-header: ns3/config.h

[ 132/1738] Compiling install-ns3-header: ns3/string.h

[ 133/1738] Compiling install-ns3-header: ns3/csma-channel.h

[ 134/1738] Compiling install-ns3-header: ns3/csma-helper.h

[ 135/1738] Compiling install-ns3-header: ns3/csma-net-device.h

[ 136/1738] Compiling install-ns3-header: ns3/backoff.h

[ 137/1738] Compiling install-ns3-header: ns3/csma-star-helper.h

[ 138/1738] Compiling install-ns3-header: ns3/dsdv-packet-queue.h

[ 139/1738] Compiling install-ns3-header: ns3/dsdv-rtable.h

[ 140/1738] Compiling install-ns3-header: ns3/dsdv-helper.h

[ 141/1738] Compiling install-ns3-header: ns3/dsdv-routing-protocol.h

[ 142/1738] Compiling install-ns3-header: ns3/dsdv-packet.h

[ 143/1738] Compiling install-ns3-header: ns3/dsr-errorbuff.h

[ 144/1738] Compiling install-ns3-header: ns3/dsr-passive-buff.h

[ 145/1738] Compiling install-ns3-header: ns3/dsr-rreq-table.h

[ 146/1738] Compiling install-ns3-header: ns3/dsr-helper.h

[ 147/1738] Compiling install-ns3-header: ns3/dsr-routing.h

[ 148/1738] Compiling install-ns3-header: ns3/dsr-fs-header.h

[ 149/1738] Compiling install-ns3-header: ns3/dsr-maintain-buff.h

[ 150/1738] Compiling install-ns3-header: ns3/dsr-rcache.h

[ 151/1738] Compiling install-ns3-header: ns3/dsr-network-queue.h

[ 152/1738] Compiling install-ns3-header: ns3/dsr-main-helper.h

[ 153/1738] Compiling install-ns3-header: ns3/dsr-options.h

[ 154/1738] Compiling install-ns3-header: ns3/dsr-option-header.h

[ 155/1738] Compiling install-ns3-header: ns3/dsr-gratuitous-reply-table.h

[ 156/1738] Compiling install-ns3-header: ns3/dsr-rsendbuff.h

[ 157/1738] Compiling install-ns3-header: ns3/device-energy-model.h

[ 158/1738] Compiling install-ns3-header: ns3/energy-source-container.h

[ 159/1738] Compiling install-ns3-header: ns3/basic-energy-harvester.h

[ 160/1738] Compiling install-ns3-header: ns3/basic-energy-source-helper.h

[ 161/1738] Compiling install-ns3-header: ns3/energy-model-helper.h

[ 162/1738] Compiling install-ns3-header: ns3/simple-device-energy-model.h

[ 163/1738] Compiling install-ns3-header: ns3/energy-source.h

[ 164/1738] Compiling install-ns3-header: ns3/rv-battery-model-helper.h

[ 165/1738] Compiling install-ns3-header: ns3/energy-harvester-helper.h

[ 166/1738] Compiling install-ns3-header: ns3/basic-energy-harvester-helper.h

[ 167/1738] Compiling install-ns3-header: ns3/basic-energy-source.h

[ 168/1738] Compiling install-ns3-header: ns3/li-ion-energy-source-helper.h

[ 169/1738] Compiling install-ns3-header: ns3/energy-harvester-container.h

[ 170/1738] Compiling install-ns3-header: ns3/li-ion-energy-source.h

[ 171/1738] Compiling install-ns3-header: ns3/device-energy-model-container.h

[ 172/1738] Compiling install-ns3-header: ns3/energy-harvester.h

[ 173/1738] Compiling install-ns3-header: ns3/rv-battery-model.h

[ 174/1738] Compiling install-ns3-header: ns3/fd-net-device-helper.h

[ 175/1738] Compiling install-ns3-header: ns3/fd-net-device.h

[ 176/1738] Compiling install-ns3-header: ns3/ipv4-flow-probe.h

[ 177/1738] Compiling install-ns3-header: ns3/histogram.h

[ 178/1738] Compiling install-ns3-header: ns3/flow-classifier.h

[ 179/1738] Compiling install-ns3-header: ns3/flow-probe.h

[ 180/1738] Compiling install-ns3-header: ns3/ipv6-flow-probe.h

[ 181/1738] Compiling install-ns3-header: ns3/flow-monitor.h

[ 182/1738] Compiling install-ns3-header: ns3/flow-monitor-helper.h

[ 183/1738] Compiling install-ns3-header: ns3/ipv6-flow-classifier.h

[ 184/1738] Compiling install-ns3-header: ns3/ipv4-flow-classifier.h

[ 185/1738] Compiling install-ns3-header: ns3/private/tcp-option-rfc793.h

[ 186/1738] Compiling install-ns3-header: ns3/private/tcp-option-ts.h

[ 187/1738] Compiling install-ns3-header: ns3/private/tcp-option-winscale.h

[ 188/1738] Compiling install-ns3-header: ns3/arp-l3-protocol.h

[ 189/1738] Compiling install-ns3-header: ns3/ipv4-route.h

[ 190/1738] Compiling install-ns3-header: ns3/ipv4-l3-protocol.h

[ 191/1738] Compiling install-ns3-header: ns3/ipv6-address-generator.h

[ 192/1738] Compiling install-ns3-header: ns3/tcp-l4-protocol.h

[ 193/1738] Compiling install-ns3-header: ns3/tcp-option.h

[ 194/1738] Compiling install-ns3-header: ns3/ipv4-interface-container.h

[ 195/1738] Compiling install-ns3-header: ns3/tcp-rx-buffer.h

[ 196/1738] Compiling install-ns3-header: ns3/ipv6-static-routing-helper.h

[ 197/1738] Compiling install-ns3-header: ns3/ipv4-routing-protocol.h

[ 198/1738] Compiling install-ns3-header: ns3/ipv6-extension.h

[ 199/1738] Compiling install-ns3-header: ns3/ipv4-global-routing.h

[ 200/1738] Compiling install-ns3-header: ns3/tcp-illinois.h

[ 201/1738] Compiling install-ns3-header: ns3/ipv4-raw-socket-impl.h

[ 202/1738] Compiling install-ns3-header: ns3/tcp-yeah.h

[ 203/1738] Compiling install-ns3-header: ns3/icmpv6-l4-protocol.h

[ 204/1738] Compiling install-ns3-header: ns3/ipv6-routing-helper.h

[ 205/1738] Compiling install-ns3-header: ns3/tcp-westwood.h

[ 206/1738] Compiling install-ns3-header: ns3/tcp-hybla.h

[ 207/1738] Compiling install-ns3-header: ns3/ipv6-routing-table-entry.h

[ 208/1738] Compiling install-ns3-header: ns3/loopback-net-device.h

[ 209/1738] Compiling install-ns3-header: ns3/ipv4-static-routing.h

[ 210/1738] Compiling install-ns3-header: ns3/ipv6-l3-protocol.h

[ 211/1738] Compiling install-ns3-header: ns3/ipv4-interface.h

[ 212/1738] Compiling install-ns3-header: ns3/ipv6-queue-disc-item.h

[ 213/1738] Compiling install-ns3-header: ns3/ipv4-interface-address.h

[ 214/1738] Compiling install-ns3-header: ns3/ipv6-address-helper.h

[ 215/1738] Compiling install-ns3-header: ns3/udp-socket.h

[ 216/1738] Compiling install-ns3-header: ns3/ipv4-queue-disc-item.h

[ 217/1738] Compiling install-ns3-header: ns3/udp-socket-factory.h

[ 218/1738] Compiling install-ns3-header: ns3/rip.h

[ 219/1738] Compiling install-ns3-header: ns3/internet-trace-helper.h

[ 220/1738] Compiling install-ns3-header: ns3/ipv6-pmtu-cache.h

[ 221/1738] Compiling install-ns3-header: ns3/ip-l4-protocol.h

[ 222/1738] Compiling install-ns3-header: ns3/tcp-tx-buffer.h

[ 223/1738] Compiling install-ns3-header: ns3/ipv4-routing-helper.h

[ 224/1738] Compiling install-ns3-header: ns3/internet-stack-helper.h

[ 225/1738] Compiling install-ns3-header: ns3/arp-header.h

[ 226/1738] Compiling install-ns3-header: ns3/ipv4-header.h

[ 227/1738] Compiling install-ns3-header: ns3/icmpv6-header.h

[ 228/1738] Compiling install-ns3-header: ns3/ipv6-route.h

[ 229/1738] Compiling install-ns3-header: ns3/ipv6-interface-address.h

[ 230/1738] Compiling install-ns3-header: ns3/rip-helper.h

[ 231/1738] Compiling install-ns3-header: ns3/tcp-bic.h

[ 232/1738] Compiling install-ns3-header: ns3/global-route-manager-impl.h

[ 233/1738] Compiling install-ns3-header: ns3/ipv4-packet-probe.h

[ 234/1738] Compiling install-ns3-header: ns3/ipv6-extension-header.h

[ 235/1738] Compiling install-ns3-header: ns3/ipv6-raw-socket-factory.h

[ 236/1738] Compiling install-ns3-header: ns3/ndisc-cache.h

[ 237/1738] Compiling install-ns3-header: ns3/ipv6-routing-protocol.h

[ 238/1738] Compiling install-ns3-header: ns3/arp-cache.h

[ 239/1738] Compiling install-ns3-header: ns3/ipv4-raw-socket-factory.h

[ 240/1738] Compiling install-ns3-header: ns3/ipv6-interface-container.h

[ 241/1738] Compiling install-ns3-header: ns3/ipv6-packet-info-tag.h

[ 242/1738] Compiling install-ns3-header: ns3/ipv6-list-routing.h

[ 243/1738] Compiling install-ns3-header: ns3/ipv4-address-helper.h

[ 244/1738] Compiling install-ns3-header: ns3/ripng-header.h

[ 245/1738] Compiling install-ns3-header: ns3/ipv6-packet-probe.h

[ 246/1738] Compiling install-ns3-header: ns3/ripng-helper.h

[ 247/1738] Compiling install-ns3-header: ns3/tcp-htcp.h

[ 248/1738] Compiling install-ns3-header: ns3/ipv4-static-routing-helper.h

[ 249/1738] Compiling install-ns3-header: ns3/global-route-manager.h

[ 250/1738] Compiling install-ns3-header: ns3/icmpv4-l4-protocol.h

[ 251/1738] Compiling install-ns3-header: ns3/ipv6-interface.h

[ 252/1738] Compiling install-ns3-header: ns3/tcp-vegas.h

[ 253/1738] Compiling install-ns3-header: ns3/udp-header.h

[ 254/1738] Compiling install-ns3-header: ns3/ipv6-list-routing-helper.h

[ 255/1738] Compiling install-ns3-header: ns3/ipv4-list-routing.h

[ 256/1738] Compiling install-ns3-header: ns3/rip-header.h

[ 257/1738] Compiling install-ns3-header: ns3/ipv6-extension-demux.h

[ 258/1738] Compiling install-ns3-header: ns3/ipv6-header.h

[ 259/1738] Compiling install-ns3-header: ns3/tcp-veno.h

[ 260/1738] Compiling install-ns3-header: ns3/tcp-socket-base.h

[ 261/1738] Compiling install-ns3-header: ns3/tcp-header.h

[ 262/1738] Compiling install-ns3-header: ns3/candidate-queue.h

[ 263/1738] Compiling install-ns3-header: ns3/ipv4-address-generator.h

[ 264/1738] Compiling install-ns3-header: ns3/rtt-estimator.h

[ 265/1738] Compiling install-ns3-header: ns3/icmpv4.h

[ 266/1738] Compiling install-ns3-header: ns3/ipv6-option-header.h

[ 267/1738] Compiling install-ns3-header: ns3/udp-l4-protocol.h

[ 268/1738] Compiling install-ns3-header: ns3/ipv6.h

[ 269/1738] Compiling install-ns3-header: ns3/ipv6-packet-filter.h

[ 270/1738] Compiling install-ns3-header: ns3/ipv4-packet-filter.h

[ 271/1738] Compiling install-ns3-header: ns3/tcp-socket-factory.h

[ 272/1738] Compiling install-ns3-header: ns3/tcp-highspeed.h

[ 273/1738] Compiling install-ns3-header: ns3/tcp-scalable.h

[ 274/1738] Compiling install-ns3-header: ns3/tcp-socket.h

[ 275/1738] Compiling install-ns3-header: ns3/global-router-interface.h

[ 276/1738] Compiling install-ns3-header: ns3/ipv4-routing-table-entry.h

[ 277/1738] Compiling install-ns3-header: ns3/ipv4.h

[ 278/1738] Compiling install-ns3-header: ns3/ripng.h

[ 279/1738] Compiling install-ns3-header: ns3/ipv4-packet-info-tag.h

[ 280/1738] Compiling install-ns3-header: ns3/ipv4-global-routing-helper.h

[ 281/1738] Compiling install-ns3-header: ns3/ipv6-static-routing.h

[ 282/1738] Compiling install-ns3-header: ns3/tcp-congestion-ops.h

[ 283/1738] Compiling install-ns3-header: ns3/ipv4-list-routing-helper.h

[ 284/1738] Compiling install-ns3-header: ns3/radvd-interface.h

[ 285/1738] Compiling install-ns3-header: ns3/radvd-helper.h

[ 286/1738] Compiling install-ns3-header: ns3/v4ping.h

[ 287/1738] Compiling install-ns3-header: ns3/radvd.h

[ 288/1738] Compiling install-ns3-header: ns3/radvd-prefix.h

[ 289/1738] Compiling install-ns3-header: ns3/ping6-helper.h

[ 290/1738] Compiling install-ns3-header: ns3/ping6.h

[ 291/1738] Compiling install-ns3-header: ns3/v4ping-helper.h

[ 292/1738] Compiling install-ns3-header: ns3/lr-wpan-mac-trailer.h

[ 293/1738] Compiling install-ns3-header: ns3/lr-wpan-mac.h

[ 294/1738] Compiling install-ns3-header: ns3/lr-wpan-csmaca.h

[ 295/1738] Compiling install-ns3-header: ns3/lr-wpan-net-device.h

[ 296/1738] Compiling install-ns3-header: ns3/lr-wpan-interference-helper.h

[ 297/1738] Compiling install-ns3-header: ns3/lr-wpan-helper.h

[ 298/1738] Compiling install-ns3-header: ns3/lr-wpan-mac-header.h

[ 299/1738] Compiling install-ns3-header: ns3/lr-wpan-lqi-tag.h

[ 300/1738] Compiling install-ns3-header: ns3/lr-wpan-spectrum-signal-parameters.h

[ 301/1738] Compiling install-ns3-header: ns3/lr-wpan-error-model.h

[ 302/1738] Compiling install-ns3-header: ns3/lr-wpan-phy.h

[ 303/1738] Compiling install-ns3-header: ns3/lr-wpan-spectrum-value-helper.h

[ 304/1738] Compiling install-ns3-header: ns3/fdmt-ff-mac-scheduler.h

[ 305/1738] Compiling install-ns3-header: ns3/lte-ffr-soft-algorithm.h

[ 306/1738] Compiling install-ns3-header: ns3/lte-rrc-header.h

[ 307/1738] Compiling install-ns3-header: ns3/lte-enb-rrc.h

[ 308/1738] Compiling install-ns3-header: ns3/lte-phy-tag.h

[ 309/1738] Compiling install-ns3-header: ns3/tdmt-ff-mac-scheduler.h

[ 310/1738] Compiling install-ns3-header: ns3/lte-net-device.h

[ 311/1738] Compiling install-ns3-header: ns3/radio-environment-map-helper.h

[ 312/1738] Compiling install-ns3-header: ns3/trace-fading-loss-model.h

[ 313/1738] Compiling install-ns3-header: ns3/epc-s11-sap.h

[ 314/1738] Compiling install-ns3-header: ns3/lte-rrc-sap.h

[ 315/1738] Compiling install-ns3-header: ns3/lte-ue-net-device.h

[ 316/1738] Compiling install-ns3-header: ns3/lte-stats-calculator.h

[ 317/1738] Compiling install-ns3-header: ns3/epc-tft.h

[ 318/1738] Compiling install-ns3-header: ns3/epc-tft-classifier.h

[ 319/1738] Compiling install-ns3-header: ns3/lte-enb-cphy-sap.h

[ 320/1738] Compiling install-ns3-header: ns3/tdtbfq-ff-mac-scheduler.h

[ 321/1738] Compiling install-ns3-header: ns3/ff-mac-scheduler.h

[ 322/1738] Compiling install-ns3-header: ns3/epc-x2-sap.h

[ 323/1738] Compiling install-ns3-header: ns3/epc-helper.h

[ 324/1738] Compiling install-ns3-header: ns3/rr-ff-mac-scheduler.h

[ 325/1738] Compiling install-ns3-header: ns3/lte-phy.h

[ 326/1738] Compiling install-ns3-header: ns3/epc-ue-nas.h

[ 327/1738] Compiling install-ns3-header: ns3/lte-pdcp-sap.h

[ 328/1738] Compiling install-ns3-header: ns3/eps-bearer.h

[ 329/1738] Compiling install-ns3-header: ns3/lte-enb-cmac-sap.h

[ 330/1738] Compiling install-ns3-header: ns3/lte-rlc-header.h

[ 331/1738] Compiling install-ns3-header: ns3/lte-ue-mac.h

[ 332/1738] Compiling install-ns3-header: ns3/a2-a4-rsrq-handover-algorithm.h

[ 333/1738] Compiling install-ns3-header: ns3/lte-interference.h

[ 334/1738] Compiling install-ns3-header: ns3/ff-mac-csched-sap.h

[ 335/1738] Compiling install-ns3-header: ns3/lte-ffr-enhanced-algorithm.h

[ 336/1738] Compiling install-ns3-header: ns3/lte-rrc-protocol-ideal.h

[ 337/1738] Compiling install-ns3-header: ns3/lte-rlc-sap.h

[ 338/1738] Compiling install-ns3-header: ns3/lte-control-messages.h

[ 339/1738] Compiling install-ns3-header: ns3/lte-pdcp-header.h

[ 340/1738] Compiling install-ns3-header: ns3/lte-ue-power-control.h

[ 341/1738] Compiling install-ns3-header: ns3/epc-sgw-pgw-application.h

[ 342/1738] Compiling install-ns3-header: ns3/phy-stats-calculator.h

[ 343/1738] Compiling install-ns3-header: ns3/lte-ffr-distributed-algorithm.h

[ 344/1738] Compiling install-ns3-header: ns3/lte-rlc.h

[ 345/1738] Compiling install-ns3-header: ns3/lte-chunk-processor.h

[ 346/1738] Compiling install-ns3-header: ns3/epc-gtpu-header.h

[ 347/1738] Compiling install-ns3-header: ns3/lte-pdcp-tag.h

[ 348/1738] Compiling install-ns3-header: ns3/lte-pdcp.h

[ 349/1738] Compiling install-ns3-header: ns3/a3-rsrp-handover-algorithm.h

[ 350/1738] Compiling install-ns3-header: ns3/lte-harq-phy.h

[ 351/1738] Compiling install-ns3-header: ns3/lte-ue-rrc.h

[ 352/1738] Compiling install-ns3-header: ns3/lte-rlc-am-header.h

[ 353/1738] Compiling install-ns3-header: ns3/phy-rx-stats-calculator.h

[ 354/1738] Compiling install-ns3-header: ns3/epc-s1ap-sap.h

[ 355/1738] Compiling install-ns3-header: ns3/lte-fr-no-op-algorithm.h

[ 356/1738] Compiling install-ns3-header: ns3/pf-ff-mac-scheduler.h

[ 357/1738] Compiling install-ns3-header: ns3/lte-spectrum-signal-parameters.h

[ 358/1738] Compiling install-ns3-header: ns3/lte-ue-phy.h

[ 359/1738] Compiling install-ns3-header: ns3/epc-x2.h

[ 360/1738] Compiling install-ns3-header: ns3/eps-bearer-tag.h

[ 361/1738] Compiling install-ns3-header: ns3/lte-fr-hard-algorithm.h

[ 362/1738] Compiling install-ns3-header: ns3/lte-rrc-protocol-real.h

[ 363/1738] Compiling install-ns3-header: ns3/lte-spectrum-phy.h

[ 364/1738] Compiling install-ns3-header: ns3/lte-mac-sap.h

[ 365/1738] Compiling install-ns3-header: ns3/lte-radio-bearer-tag.h

[ 366/1738] Compiling install-ns3-header: ns3/lte-anr.h

[ 367/1738] Compiling install-ns3-header: ns3/no-op-handover-algorithm.h

[ 368/1738] Compiling install-ns3-header: ns3/lte-hex-grid-enb-topology-helper.h

[ 369/1738] Compiling install-ns3-header: ns3/lte-spectrum-value-helper.h

[ 370/1738] Compiling install-ns3-header: ns3/lte-ffr-algorithm.h

[ 371/1738] Compiling install-ns3-header: ns3/lte-radio-bearer-info.h

[ 372/1738] Compiling install-ns3-header: ns3/lte-asn1-header.h

[ 373/1738] Compiling install-ns3-header: ns3/lte-rlc-tag.h

[ 374/1738] Compiling install-ns3-header: ns3/lte-helper.h

[ 375/1738] Compiling install-ns3-header: ns3/radio-bearer-stats-connector.h

[ 376/1738] Compiling install-ns3-header: ns3/mac-stats-calculator.h

[ 377/1738] Compiling install-ns3-header: ns3/lte-global-pathloss-database.h

[ 378/1738] Compiling install-ns3-header: ns3/cqa-ff-mac-scheduler.h

[ 379/1738] Compiling install-ns3-header: ns3/lte-ffr-sap.h

[ 380/1738] Compiling install-ns3-header: ns3/lte-rlc-tm.h

[ 381/1738] Compiling install-ns3-header: ns3/lte-mi-error-model.h

[ 382/1738] Compiling install-ns3-header: ns3/radio-bearer-stats-calculator.h

[ 383/1738] Compiling install-ns3-header: ns3/lte-enb-net-device.h

[ 384/1738] Compiling install-ns3-header: ns3/lte-ue-phy-sap.h

[ 385/1738] Compiling install-ns3-header: ns3/lte-fr-soft-algorithm.h

[ 386/1738] Compiling install-ns3-header: ns3/lte-handover-management-sap.h

[ 387/1738] Compiling install-ns3-header: ns3/lte-rlc-sdu-status-tag.h

[ 388/1738] Compiling install-ns3-header: ns3/ff-mac-common.h

[ 389/1738] Compiling install-ns3-header: ns3/fdbet-ff-mac-scheduler.h

[ 390/1738] Compiling install-ns3-header: ns3/point-to-point-epc-helper.h

[ 391/1738] Compiling install-ns3-header: ns3/lte-amc.h

[ 392/1738] Compiling install-ns3-header: ns3/lte-handover-algorithm.h

[ 393/1738] Compiling install-ns3-header: ns3/epc-mme.h

[ 394/1738] Compiling install-ns3-header: ns3/lte-enb-phy.h

[ 395/1738] Compiling install-ns3-header: ns3/lte-as-sap.h

[ 396/1738] Compiling install-ns3-header: ns3/lte-enb-phy-sap.h

[ 397/1738] Compiling install-ns3-header: ns3/pss-ff-mac-scheduler.h

[ 398/1738] Compiling install-ns3-header: ns3/lte-rlc-um.h

[ 399/1738] Compiling install-ns3-header: ns3/lte-ue-cmac-sap.h

[ 400/1738] Compiling install-ns3-header: ns3/fdtbfq-ff-mac-scheduler.h

[ 401/1738] Compiling install-ns3-header: ns3/epc-x2-header.h

[ 402/1738] Compiling install-ns3-header: ns3/epc-enb-application.h

[ 403/1738] Compiling install-ns3-header: ns3/lte-rlc-am.h

[ 404/1738] Compiling install-ns3-header: ns3/tta-ff-mac-scheduler.h

[ 405/1738] Compiling install-ns3-header: ns3/lte-vendor-specific-parameters.h

[ 406/1738] Compiling install-ns3-header: ns3/lte-fr-strict-algorithm.h

[ 407/1738] Compiling install-ns3-header: ns3/lte-rlc-sequence-number.h

[ 408/1738] Compiling install-ns3-header: ns3/rem-spectrum-phy.h

[ 409/1738] Compiling install-ns3-header: ns3/lte-ue-cphy-sap.h

[ 410/1738] Compiling install-ns3-header: ns3/lte-enb-mac.h

[ 411/1738] Compiling install-ns3-header: ns3/phy-tx-stats-calculator.h

[ 412/1738] Compiling install-ns3-header: ns3/lte-ffr-rrc-sap.h

[ 413/1738] Compiling install-ns3-header: ns3/ff-mac-sched-sap.h

[ 414/1738] Compiling install-ns3-header: ns3/epc-enb-s1-sap.h

[ 415/1738] Compiling install-ns3-header: ns3/lte-common.h

[ 416/1738] Compiling install-ns3-header: ns3/lte-anr-sap.h

[ 417/1738] Compiling install-ns3-header: ns3/tdbet-ff-mac-scheduler.h

[ 418/1738] Compiling install-ns3-header: ns3/mesh-stack-installer.h

[ 419/1738] Compiling install-ns3-header: ns3/flame-protocol.h

[ 420/1738] Compiling install-ns3-header: ns3/ie-dot11s-id.h

[ 421/1738] Compiling install-ns3-header: ns3/peer-management-protocol.h

[ 422/1738] Compiling install-ns3-header: ns3/mesh-wifi-beacon.h

[ 423/1738] Compiling install-ns3-header: ns3/ie-dot11s-peering-protocol.h

[ 424/1738] Compiling install-ns3-header: ns3/ie-dot11s-rann.h

[ 425/1738] Compiling install-ns3-header: ns3/mesh-wifi-interface-mac-plugin.h

[ 426/1738] Compiling install-ns3-header: ns3/mesh-wifi-interface-mac.h

[ 427/1738] Compiling install-ns3-header: ns3/ie-dot11s-prep.h

[ 428/1738] Compiling install-ns3-header: ns3/flame-installer.h

[ 429/1738] Compiling install-ns3-header: ns3/flame-rtable.h

[ 430/1738] Compiling install-ns3-header: ns3/mesh-information-element-vector.h

[ 431/1738] Compiling install-ns3-header: ns3/hwmp-rtable.h

[ 432/1738] Compiling install-ns3-header: ns3/ie-dot11s-perr.h

[ 433/1738] Compiling install-ns3-header: ns3/mesh-point-device.h

[ 434/1738] Compiling install-ns3-header: ns3/ie-dot11s-configuration.h

[ 435/1738] Compiling install-ns3-header: ns3/peer-link-frame.h

[ 436/1738] Compiling install-ns3-header: ns3/ie-dot11s-peer-management.h

[ 437/1738] Compiling install-ns3-header: ns3/flame-protocol-mac.h

[ 438/1738] Compiling install-ns3-header: ns3/mesh-l2-routing-protocol.h

[ 439/1738] Compiling install-ns3-header: ns3/ie-dot11s-metric-report.h

[ 440/1738] Compiling install-ns3-header: ns3/ie-dot11s-preq.h

[ 441/1738] Compiling install-ns3-header: ns3/dot11s-mac-header.h

[ 442/1738] Compiling install-ns3-header: ns3/mesh-helper.h

[ 443/1738] Compiling install-ns3-header: ns3/ie-dot11s-beacon-timing.h

[ 444/1738] Compiling install-ns3-header: ns3/hwmp-protocol.h

[ 445/1738] Compiling install-ns3-header: ns3/peer-link.h

[ 446/1738] Compiling install-ns3-header: ns3/dot11s-installer.h

[ 447/1738] Compiling install-ns3-header: ns3/flame-header.h

[ 448/1738] Compiling install-ns3-header: ns3/gauss-markov-mobility-model.h

[ 449/1738] Compiling install-ns3-header: ns3/constant-velocity-helper.h

[ 450/1738] Compiling install-ns3-header: ns3/random-walk-2d-mobility-model.h

[ 451/1738] Compiling install-ns3-header: ns3/box.h

[ 452/1738] Compiling install-ns3-header: ns3/constant-acceleration-mobility-model.h

[ 453/1738] Compiling install-ns3-header: ns3/geographic-positions.h

[ 454/1738] Compiling install-ns3-header: ns3/mobility-model.h

[ 455/1738] Compiling install-ns3-header: ns3/random-waypoint-mobility-model.h

[ 456/1738] Compiling install-ns3-header: ns3/position-allocator.h

[ 457/1738] Compiling install-ns3-header: ns3/steady-state-random-waypoint-mobility-model.h

[ 458/1738] Compiling install-ns3-header: ns3/waypoint.h

[ 459/1738] Compiling install-ns3-header: ns3/constant-position-mobility-model.h

[ 460/1738] Compiling install-ns3-header: ns3/waypoint-mobility-model.h

[ 461/1738] Compiling install-ns3-header: ns3/ns2-mobility-helper.h

[ 462/1738] Compiling install-ns3-header: ns3/hierarchical-mobility-model.h

[ 463/1738] Compiling install-ns3-header: ns3/rectangle.h

[ 464/1738] Compiling install-ns3-header: ns3/mobility-helper.h

[ 465/1738] Compiling install-ns3-header: ns3/random-direction-2d-mobility-model.h

[ 466/1738] Compiling install-ns3-header: ns3/constant-velocity-mobility-model.h

[ 467/1738] Compiling install-ns3-header: ns3/mpi-receiver.h

[ 468/1738] Compiling install-ns3-header: ns3/parallel-communication-interface.h

[ 469/1738] Compiling install-ns3-header: ns3/mpi-interface.h

[ 470/1738] Compiling install-ns3-header: ns3/animation-interface.h

[ 471/1738] Compiling install-ns3-header: ns3/mac16-address.h

[ 472/1738] Compiling install-ns3-header: ns3/net-device.h

[ 473/1738] Compiling install-ns3-header: ns3/socket-factory.h

[ 474/1738] Compiling install-ns3-header: ns3/inet-socket-address.h

[ 475/1738] Compiling install-ns3-header: ns3/trailer.h

[ 476/1738] Compiling install-ns3-header: ns3/packet-probe.h

[ 477/1738] Compiling install-ns3-header: ns3/node-container.h

[ 478/1738] Compiling install-ns3-header: ns3/output-stream-wrapper.h

[ 479/1738] Compiling install-ns3-header: ns3/packet-socket.h

[ 480/1738] Compiling install-ns3-header: ns3/drop-tail-queue.h

[ 481/1738] Compiling install-ns3-header: ns3/inet6-socket-address.h

[ 482/1738] Compiling install-ns3-header: ns3/packet-burst.h

[ 483/1738] Compiling install-ns3-header: ns3/pcap-file.h

[ 484/1738] Compiling install-ns3-header: ns3/header.h

[ 485/1738] Compiling install-ns3-header: ns3/llc-snap-header.h

[ 486/1738] Compiling install-ns3-header: ns3/pcap-test.h

[ 487/1738] Compiling install-ns3-header: ns3/ethernet-header.h

[ 488/1738] Compiling install-ns3-header: ns3/channel-list.h

[ 489/1738] Compiling install-ns3-header: ns3/ipv4-address.h

[ 490/1738] Compiling install-ns3-header: ns3/ascii-test.h

[ 491/1738] Compiling install-ns3-header: ns3/pcap-file-wrapper.h

[ 492/1738] Compiling install-ns3-header: ns3/ipv6-address.h

[ 493/1738] Compiling install-ns3-header: ns3/queue-limits.h

[ 494/1738] Compiling install-ns3-header: ns3/sgi-hashmap.h

[ 495/1738] Compiling install-ns3-header: ns3/tag.h

[ 496/1738] Compiling install-ns3-header: ns3/channel.h

[ 497/1738] Compiling install-ns3-header: ns3/data-rate.h

[ 498/1738] Compiling install-ns3-header: ns3/mac48-address.h

[ 499/1738] Compiling install-ns3-header: ns3/sll-header.h

[ 500/1738] Compiling install-ns3-header: ns3/mac64-address.h

[ 501/1738] Compiling install-ns3-header: ns3/packet-socket-server.h

[ 502/1738] Compiling install-ns3-header: ns3/chunk.h

[ 503/1738] Compiling install-ns3-header: ns3/packet-socket-factory.h

[ 504/1738] Compiling install-ns3-header: ns3/delay-jitter-estimation.h

[ 505/1738] Compiling install-ns3-header: ns3/simple-net-device.h

[ 506/1738] Compiling install-ns3-header: ns3/generic-phy.h

[ 507/1738] Compiling install-ns3-header: ns3/node.h

[ 508/1738] Compiling install-ns3-header: ns3/nix-vector.h

[ 509/1738] Compiling install-ns3-header: ns3/packet-socket-client.h

[ 510/1738] Compiling install-ns3-header: ns3/simple-channel.h

[ 511/1738] Compiling install-ns3-header: ns3/trace-helper.h

[ 512/1738] Compiling install-ns3-header: ns3/node-list.h

[ 513/1738] Compiling install-ns3-header: ns3/address-utils.h

[ 514/1738] Compiling install-ns3-header: ns3/packetbb.h

[ 515/1738] Compiling install-ns3-header: ns3/flow-id-tag.h

[ 516/1738] Compiling install-ns3-header: ns3/packet-data-calculators.h

[ 517/1738] Compiling install-ns3-header: ns3/packet-tag-list.h

[ 518/1738] Compiling install-ns3-header: ns3/packet-socket-address.h

[ 519/1738] Compiling install-ns3-header: ns3/address.h

[ 520/1738] Compiling install-ns3-header: ns3/tag-buffer.h

[ 521/1738] Compiling install-ns3-header: ns3/simple-net-device-helper.h

[ 522/1738] Compiling install-ns3-header: ns3/packet-metadata.h

[ 523/1738] Compiling install-ns3-header: ns3/radiotap-header.h

[ 524/1738] Compiling install-ns3-header: ns3/socket.h

[ 525/1738] Compiling install-ns3-header: ns3/ethernet-trailer.h

[ 526/1738] Compiling install-ns3-header: ns3/dynamic-queue-limits.h

[ 527/1738] Compiling install-ns3-header: ns3/error-model.h

[ 528/1738] Compiling install-ns3-header: ns3/application-container.h

[ 529/1738] Compiling install-ns3-header: ns3/buffer.h

[ 530/1738] Compiling install-ns3-header: ns3/queue.h

[ 531/1738] Compiling install-ns3-header: ns3/byte-tag-list.h

[ 532/1738] Compiling install-ns3-header: ns3/crc32.h

[ 533/1738] Compiling install-ns3-header: ns3/application.h

[ 534/1738] Compiling install-ns3-header: ns3/net-device-container.h

[ 535/1738] Compiling install-ns3-header: ns3/packet.h

[ 536/1738] Compiling install-ns3-header: ns3/ascii-file.h

[ 537/1738] Compiling install-ns3-header: ns3/sequence-number.h

[ 538/1738] Compiling install-ns3-header: ns3/packet-socket-helper.h

[ 539/1738] Compiling install-ns3-header: ns3/ipv4-nix-vector-routing.h

[ 540/1738] Compiling install-ns3-header: ns3/ipv4-nix-vector-helper.h

[ 541/1738] Compiling install-ns3-header: ns3/olsr-state.h

[ 542/1738] Compiling install-ns3-header: ns3/olsr-helper.h

[ 543/1738] Compiling install-ns3-header: ns3/olsr-repositories.h

[ 544/1738] Compiling install-ns3-header: ns3/olsr-header.h

[ 545/1738] Compiling install-ns3-header: ns3/olsr-routing-protocol.h

[ 546/1738] Compiling install-ns3-header: ns3/point-to-point-remote-channel.h

[ 547/1738] Compiling install-ns3-header: ns3/point-to-point-net-device.h

[ 548/1738] Compiling install-ns3-header: ns3/ppp-header.h

[ 549/1738] Compiling install-ns3-header: ns3/point-to-point-channel.h

[ 550/1738] Compiling install-ns3-header: ns3/point-to-point-helper.h

[ 551/1738] Compiling install-ns3-header: ns3/point-to-point-star.h

[ 552/1738] Compiling install-ns3-header: ns3/point-to-point-dumbbell.h

[ 553/1738] Compiling install-ns3-header: ns3/point-to-point-grid.h

[ 554/1738] Compiling install-ns3-header: ns3/cost231-propagation-loss-model.h

[ 555/1738] Compiling install-ns3-header: ns3/propagation-loss-model.h

[ 556/1738] Compiling install-ns3-header: ns3/kun-2600-mhz-propagation-loss-model.h

[ 557/1738] Compiling install-ns3-header: ns3/propagation-cache.h

[ 558/1738] Compiling install-ns3-header: ns3/okumura-hata-propagation-loss-model.h

[ 559/1738] Compiling install-ns3-header: ns3/propagation-environment.h

[ 560/1738] Compiling install-ns3-header: ns3/itu-r-1411-los-propagation-loss-model.h

[ 561/1738] Compiling install-ns3-header: ns3/jakes-process.h

[ 562/1738] Compiling install-ns3-header: ns3/jakes-propagation-loss-model.h

[ 563/1738] Compiling install-ns3-header: ns3/propagation-delay-model.h

[ 564/1738] Compiling install-ns3-header: ns3/itu-r-1411-nlos-over-rooftop-propagation-loss-model.h

[ 565/1738] Compiling install-ns3-header: ns3/sixlowpan-helper.h

[ 566/1738] Compiling install-ns3-header: ns3/sixlowpan-header.h

[ 567/1738] Compiling install-ns3-header: ns3/sixlowpan-net-device.h

[ 568/1738] Compiling install-ns3-header: ns3/spectrum-helper.h

[ 569/1738] Compiling install-ns3-header: ns3/microwave-oven-spectrum-value-helper.h

[ 570/1738] Compiling install-ns3-header: ns3/spectrum-propagation-loss-model.h

[ 571/1738] Compiling install-ns3-header: ns3/spectrum-test.h

[ 572/1738] Compiling install-ns3-header: ns3/half-duplex-ideal-phy-signal-parameters.h

[ 573/1738] Compiling install-ns3-header: ns3/friis-spectrum-propagation-loss.h

[ 574/1738] Compiling install-ns3-header: ns3/aloha-noack-mac-header.h

[ 575/1738] Compiling install-ns3-header: ns3/spectrum-phy.h

[ 576/1738] Compiling install-ns3-header: ns3/tv-spectrum-transmitter.h

[ 577/1738] Compiling install-ns3-header: ns3/adhoc-aloha-noack-ideal-phy-helper.h

[ 578/1738] Compiling install-ns3-header: ns3/spectrum-signal-parameters.h

[ 579/1738] Compiling install-ns3-header: ns3/tv-spectrum-transmitter-helper.h

[ 580/1738] Compiling install-ns3-header: ns3/spectrum-error-model.h

[ 581/1738] Compiling install-ns3-header: ns3/multi-model-spectrum-channel.h

[ 582/1738] Compiling install-ns3-header: ns3/spectrum-model-ism2400MHz-res1MHz.h

[ 583/1738] Compiling install-ns3-header: ns3/half-duplex-ideal-phy.h

[ 584/1738] Compiling install-ns3-header: ns3/spectrum-analyzer-helper.h

[ 585/1738] Compiling install-ns3-header: ns3/aloha-noack-net-device.h

[ 586/1738] Compiling install-ns3-header: ns3/non-communicating-net-device.h

[ 587/1738] Compiling install-ns3-header: ns3/constant-spectrum-propagation-loss.h

[ 588/1738] Compiling install-ns3-header: ns3/wifi-spectrum-value-helper.h

[ 589/1738] Compiling install-ns3-header: ns3/single-model-spectrum-channel.h

[ 590/1738] Compiling install-ns3-header: ns3/spectrum-converter.h

[ 591/1738] Compiling install-ns3-header: ns3/waveform-generator.h

[ 592/1738] Compiling install-ns3-header: ns3/spectrum-channel.h

[ 593/1738] Compiling install-ns3-header: ns3/spectrum-model.h

[ 594/1738] Compiling install-ns3-header: ns3/spectrum-analyzer.h

[ 595/1738] Compiling install-ns3-header: ns3/spectrum-value.h

[ 596/1738] Compiling install-ns3-header: ns3/spectrum-model-300kHz-300GHz-log.h

[ 597/1738] Compiling install-ns3-header: ns3/spectrum-interference.h

[ 598/1738] Compiling install-ns3-header: ns3/waveform-generator-helper.h

[ 599/1738] Compiling install-ns3-header: ns3/average.h

[ 600/1738] Compiling install-ns3-header: ns3/gnuplot-helper.h

[ 601/1738] Compiling install-ns3-header: ns3/uinteger-8-probe.h

[ 602/1738] Compiling install-ns3-header: ns3/get-wildcard-matches.h

[ 603/1738] Compiling install-ns3-header: ns3/double-probe.h

[ 604/1738] Compiling install-ns3-header: ns3/time-series-adaptor.h

[ 605/1738] Compiling install-ns3-header: ns3/basic-data-calculators.h

[ 606/1738] Compiling install-ns3-header: ns3/data-collector.h

[ 607/1738] Compiling install-ns3-header: ns3/data-output-interface.h

[ 608/1738] Compiling install-ns3-header: ns3/data-collection-object.h

[ 609/1738] Compiling install-ns3-header: ns3/file-helper.h

[ 610/1738] Compiling install-ns3-header: ns3/file-aggregator.h

[ 611/1738] Compiling install-ns3-header: ns3/omnet-data-output.h

[ 612/1738] Compiling install-ns3-header: ns3/data-calculator.h

[ 613/1738] Compiling install-ns3-header: ns3/gnuplot.h

[ 614/1738] Compiling install-ns3-header: ns3/probe.h

[ 615/1738] Compiling install-ns3-header: ns3/uinteger-32-probe.h

[ 616/1738] Compiling install-ns3-header: ns3/sqlite-data-output.h

[ 617/1738] Compiling install-ns3-header: ns3/gnuplot-aggregator.h

[ 618/1738] Compiling install-ns3-header: ns3/time-data-calculators.h

[ 619/1738] Compiling install-ns3-header: ns3/time-probe.h

[ 620/1738] Compiling install-ns3-header: ns3/uinteger-16-probe.h

[ 621/1738] Compiling install-ns3-header: ns3/boolean-probe.h

[ 622/1738] Compiling install-ns3-header: ns3/orbis-topology-reader.h

[ 623/1738] Compiling install-ns3-header: ns3/rocketfuel-topology-reader.h

[ 624/1738] Compiling install-ns3-header: ns3/topology-reader.h

[ 625/1738] Compiling install-ns3-header: ns3/inet-topology-reader.h

[ 626/1738] Compiling install-ns3-header: ns3/topology-reader-helper.h

[ 627/1738] Compiling install-ns3-header: ns3/queue-disc-container.h

[ 628/1738] Compiling install-ns3-header: ns3/fq-codel-queue-disc.h

[ 629/1738] Compiling install-ns3-header: ns3/traffic-control-layer.h

[ 630/1738] Compiling install-ns3-header: ns3/traffic-control-helper.h

[ 631/1738] Compiling install-ns3-header: ns3/pie-queue-disc.h

[ 632/1738] Compiling install-ns3-header: ns3/packet-filter.h

[ 633/1738] Compiling install-ns3-header: ns3/codel-queue-disc.h

[ 634/1738] Compiling install-ns3-header: ns3/queue-disc.h

[ 635/1738] Compiling install-ns3-header: ns3/pfifo-fast-queue-disc.h

[ 636/1738] Compiling install-ns3-header: ns3/red-queue-disc.h

[ 637/1738] Compiling install-ns3-header: ns3/uan-mac-rc.h

[ 638/1738] Compiling install-ns3-header: ns3/uan-tx-mode.h

[ 639/1738] Compiling install-ns3-header: ns3/uan-prop-model-thorp.h

[ 640/1738] Compiling install-ns3-header: ns3/uan-phy-dual.h

[ 641/1738] Compiling install-ns3-header: ns3/uan-prop-model.h

[ 642/1738] Compiling install-ns3-header: ns3/uan-mac-rc-gw.h

[ 643/1738] Compiling install-ns3-header: ns3/uan-channel.h

[ 644/1738] Compiling install-ns3-header: ns3/uan-noise-model-default.h

[ 645/1738] Compiling install-ns3-header: ns3/acoustic-modem-energy-model-helper.h

[ 646/1738] Compiling install-ns3-header: ns3/uan-net-device.h

[ 647/1738] Compiling install-ns3-header: ns3/uan-noise-model.h

[ 648/1738] Compiling install-ns3-header: ns3/uan-helper.h

[ 649/1738] Compiling install-ns3-header: ns3/uan-address.h

[ 650/1738] Compiling install-ns3-header: ns3/uan-transducer-hd.h

[ 651/1738] Compiling install-ns3-header: ns3/uan-prop-model-ideal.h

[ 652/1738] Compiling install-ns3-header: ns3/uan-phy-gen.h

[ 653/1738] Compiling install-ns3-header: ns3/uan-header-rc.h

[ 654/1738] Compiling install-ns3-header: ns3/acoustic-modem-energy-model.h

[ 655/1738] Compiling install-ns3-header: ns3/uan-phy.h

[ 656/1738] Compiling install-ns3-header: ns3/uan-header-common.h

[ 657/1738] Compiling install-ns3-header: ns3/uan-mac-aloha.h

[ 658/1738] Compiling install-ns3-header: ns3/uan-transducer.h

[ 659/1738] Compiling install-ns3-header: ns3/uan-mac-cw.h

[ 660/1738] Compiling install-ns3-header: ns3/uan-mac.h

[ 661/1738] Compiling install-ns3-header: ns3/virtual-net-device.h

[ 662/1738] Compiling install-ns3-header: ns3/default-channel-scheduler.h

[ 663/1738] Compiling install-ns3-header: ns3/channel-scheduler.h

[ 664/1738] Compiling install-ns3-header: ns3/ocb-wifi-mac.h

[ 665/1738] Compiling install-ns3-header: ns3/wave-bsm-stats.h

[ 666/1738] Compiling install-ns3-header: ns3/wave-net-device.h

[ 667/1738] Compiling install-ns3-header: ns3/wifi-80211p-helper.h

[ 668/1738] Compiling install-ns3-header: ns3/higher-tx-tag.h

[ 669/1738] Compiling install-ns3-header: ns3/bsm-application.h

[ 670/1738] Compiling install-ns3-header: ns3/wave-mac-low.h

[ 671/1738] Compiling install-ns3-header: ns3/wave-mac-helper.h

[ 672/1738] Compiling install-ns3-header: ns3/wave-bsm-helper.h

[ 673/1738] Compiling install-ns3-header: ns3/channel-coordinator.h

[ 674/1738] Compiling install-ns3-header: ns3/vsa-manager.h

[ 675/1738] Compiling install-ns3-header: ns3/vendor-specific-action.h

[ 676/1738] Compiling install-ns3-header: ns3/wave-helper.h

[ 677/1738] Compiling install-ns3-header: ns3/channel-manager.h

[ 678/1738] Compiling install-ns3-header: ns3/qos-utils.h

[ 679/1738] Compiling install-ns3-header: ns3/ideal-wifi-manager.h

[ 680/1738] Compiling install-ns3-header: ns3/arf-wifi-manager.h

[ 681/1738] Compiling install-ns3-header: ns3/wifi-phy-state-helper.h

[ 682/1738] Compiling install-ns3-header: ns3/yans-wifi-channel.h

[ 683/1738] Compiling install-ns3-header: ns3/adhoc-wifi-mac.h

[ 684/1738] Compiling install-ns3-header: ns3/minstrel-ht-wifi-manager.h

[ 685/1738] Compiling install-ns3-header: ns3/wifi-radio-energy-model-helper.h

[ 686/1738] Compiling install-ns3-header: ns3/wifi-information-element.h

[ 687/1738] Compiling install-ns3-header: ns3/nist-error-rate-model.h

[ 688/1738] Compiling install-ns3-header: ns3/msdu-standard-aggregator.h

[ 689/1738] Compiling install-ns3-header: ns3/wifi-information-element-vector.h

[ 690/1738] Compiling install-ns3-header: ns3/spectrum-wifi-helper.h

[ 691/1738] Compiling install-ns3-header: ns3/ssid.h

[ 692/1738] Compiling install-ns3-header: ns3/block-ack-manager.h

[ 693/1738] Compiling install-ns3-header: ns3/ampdu-tag.h

[ 694/1738] Compiling install-ns3-header: ns3/parf-wifi-manager.h

[ 695/1738] Compiling install-ns3-header: ns3/wifi-mac-helper.h

[ 696/1738] Compiling install-ns3-header: ns3/ht-capabilities.h

[ 697/1738] Compiling install-ns3-header: ns3/vht-wifi-mac-helper.h

[ 698/1738] Compiling install-ns3-header: ns3/regular-wifi-mac.h

[ 699/1738] Compiling install-ns3-header: ns3/wifi-remote-station-manager.h

[ 700/1738] Compiling install-ns3-header: ns3/aarfcd-wifi-manager.h

[ 701/1738] Compiling install-ns3-header: ns3/dcf-manager.h

[ 702/1738] Compiling install-ns3-header: ns3/sta-wifi-mac.h

[ 703/1738] Compiling install-ns3-header: ns3/wifi-mac-queue.h

[ 704/1738] Compiling install-ns3-header: ns3/mac-low.h

[ 705/1738] Compiling install-ns3-header: ns3/ampdu-subframe-header.h

[ 706/1738] Compiling install-ns3-header: ns3/dsss-parameter-set.h

[ 707/1738] Compiling install-ns3-header: ns3/supported-rates.h

[ 708/1738] Compiling install-ns3-header: ns3/athstats-helper.h

[ 709/1738] Compiling install-ns3-header: ns3/onoe-wifi-manager.h

[ 710/1738] Compiling install-ns3-header: ns3/aparf-wifi-manager.h

[ 711/1738] Compiling install-ns3-header: ns3/interference-helper.h

[ 712/1738] Compiling install-ns3-header: ns3/status-code.h

[ 713/1738] Compiling install-ns3-header: ns3/wifi-mode.h

[ 714/1738] Compiling install-ns3-header: ns3/amrr-wifi-manager.h

[ 715/1738] Compiling install-ns3-header: ns3/wifi-tx-vector.h

[ 716/1738] Compiling install-ns3-header: ns3/ht-operations.h

[ 717/1738] Compiling install-ns3-header: ns3/wifi-mac-header.h

[ 718/1738] Compiling install-ns3-header: ns3/msdu-aggregator.h

[ 719/1738] Compiling install-ns3-header: ns3/wifi-net-device.h

[ 720/1738] Compiling install-ns3-header: ns3/wifi-radio-energy-model.h

[ 721/1738] Compiling install-ns3-header: ns3/yans-wifi-helper.h

[ 722/1738] Compiling install-ns3-header: ns3/ctrl-headers.h

[ 723/1738] Compiling install-ns3-header: ns3/constant-rate-wifi-manager.h

[ 724/1738] Compiling install-ns3-header: ns3/mac-tx-middle.h

[ 725/1738] Compiling install-ns3-header: ns3/yans-wifi-phy.h

[ 726/1738] Compiling install-ns3-header: ns3/spectrum-wifi-phy.h

[ 727/1738] Compiling install-ns3-header: ns3/wifi-helper.h

[ 728/1738] Compiling install-ns3-header: ns3/mac-rx-middle.h

[ 729/1738] Compiling install-ns3-header: ns3/dsss-error-rate-model.h

[ 730/1738] Compiling install-ns3-header: ns3/wifi-tx-current-model.h

[ 731/1738] Compiling install-ns3-header: ns3/wifi-channel.h

[ 732/1738] Compiling install-ns3-header: ns3/wifi-phy.h

[ 733/1738] Compiling install-ns3-header: ns3/wifi-mac-trailer.h

[ 734/1738] Compiling install-ns3-header: ns3/aarf-wifi-manager.h

[ 735/1738] Compiling install-ns3-header: ns3/block-ack-agreement.h

[ 736/1738] Compiling install-ns3-header: ns3/wifi-spectrum-phy-interface.h

[ 737/1738] Compiling install-ns3-header: ns3/rraa-wifi-manager.h

[ 738/1738] Compiling install-ns3-header: ns3/wifi-preamble.h

[ 739/1738] Compiling install-ns3-header: ns3/snr-tag.h

[ 740/1738] Compiling install-ns3-header: ns3/yans-error-rate-model.h

[ 741/1738] Compiling install-ns3-header: ns3/error-rate-model.h

[ 742/1738] Compiling install-ns3-header: ns3/ap-wifi-mac.h

[ 743/1738] Compiling install-ns3-header: ns3/wifi-phy-standard.h

[ 744/1738] Compiling install-ns3-header: ns3/originator-block-ack-agreement.h

[ 745/1738] Compiling install-ns3-header: ns3/edca-parameter-set.h

[ 746/1738] Compiling install-ns3-header: ns3/mpdu-standard-aggregator.h

[ 747/1738] Compiling install-ns3-header: ns3/amsdu-subframe-header.h

[ 748/1738] Compiling install-ns3-header: ns3/minstrel-wifi-manager.h

[ 749/1738] Compiling install-ns3-header: ns3/wifi-spectrum-signal-parameters.h

[ 750/1738] Compiling install-ns3-header: ns3/wifi-mac.h

[ 751/1738] Compiling install-ns3-header: ns3/dcf.h

[ 752/1738] Compiling install-ns3-header: ns3/ht-wifi-mac-helper.h

[ 753/1738] Compiling install-ns3-header: ns3/mgt-headers.h

[ 754/1738] Compiling install-ns3-header: ns3/edca-txop-n.h

[ 755/1738] Compiling install-ns3-header: ns3/capability-information.h

[ 756/1738] Compiling install-ns3-header: ns3/wifi-phy-tag.h

[ 757/1738] Compiling install-ns3-header: ns3/qos-wifi-mac-helper.h

[ 758/1738] Compiling install-ns3-header: ns3/block-ack-cache.h

[ 759/1738] Compiling install-ns3-header: ns3/vht-capabilities.h

[ 760/1738] Compiling install-ns3-header: ns3/cara-wifi-manager.h

[ 761/1738] Compiling install-ns3-header: ns3/mpdu-aggregator.h

[ 762/1738] Compiling install-ns3-header: ns3/erp-information.h

[ 763/1738] Compiling install-ns3-header: ns3/nqos-wifi-mac-helper.h

[ 764/1738] Compiling install-ns3-header: ns3/dca-txop.h

[ 765/1738] Compiling install-ns3-header: ns3/ss-manager.h

[ 766/1738] Compiling install-ns3-header: ns3/ul-job.h

[ 767/1738] Compiling install-ns3-header: ns3/bs-uplink-scheduler.h

[ 768/1738] Compiling install-ns3-header: ns3/ipcs-classifier.h

[ 769/1738] Compiling install-ns3-header: ns3/service-flow.h

[ 770/1738] Compiling install-ns3-header: ns3/wimax-net-device.h

[ 771/1738] Compiling install-ns3-header: ns3/mac-messages.h

[ 772/1738] Compiling install-ns3-header: ns3/bvec.h

[ 773/1738] Compiling install-ns3-header: ns3/wimax-phy.h

[ 774/1738] Compiling install-ns3-header: ns3/bs-scheduler-rtps.h

[ 775/1738] Compiling install-ns3-header: ns3/cs-parameters.h

[ 776/1738] Compiling install-ns3-header: ns3/bs-uplink-scheduler-rtps.h

[ 777/1738] Compiling install-ns3-header: ns3/cid-factory.h

[ 778/1738] Compiling install-ns3-header: ns3/wimax-connection.h

[ 779/1738] Compiling install-ns3-header: ns3/dl-mac-messages.h

[ 780/1738] Compiling install-ns3-header: ns3/ul-mac-messages.h

[ 781/1738] Compiling install-ns3-header: ns3/ss-record.h

[ 782/1738] Compiling install-ns3-header: ns3/wimax-mac-queue.h

[ 783/1738] Compiling install-ns3-header: ns3/connection-manager.h

[ 784/1738] Compiling install-ns3-header: ns3/wimax-channel.h

[ 785/1738] Compiling install-ns3-header: ns3/bs-scheduler-simple.h

[ 786/1738] Compiling install-ns3-header: ns3/wimax-helper.h

[ 787/1738] Compiling install-ns3-header: ns3/service-flow-manager.h

[ 788/1738] Compiling install-ns3-header: ns3/wimax-mac-to-mac-header.h

[ 789/1738] Compiling install-ns3-header: ns3/bs-uplink-scheduler-simple.h

[ 790/1738] Compiling install-ns3-header: ns3/bs-net-device.h

[ 791/1738] Compiling install-ns3-header: ns3/send-params.h

[ 792/1738] Compiling install-ns3-header: ns3/simple-ofdm-wimax-channel.h

[ 793/1738] Compiling install-ns3-header: ns3/cid.h

[ 794/1738] Compiling install-ns3-header: ns3/service-flow-record.h

[ 795/1738] Compiling install-ns3-header: ns3/wimax-mac-header.h

[ 796/1738] Compiling install-ns3-header: ns3/simple-ofdm-wimax-phy.h

[ 797/1738] Compiling install-ns3-header: ns3/ipcs-classifier-record.h

[ 798/1738] Compiling install-ns3-header: ns3/snr-to-block-error-rate-record.h

[ 799/1738] Compiling install-ns3-header: ns3/ofdm-downlink-frame-prefix.h

[ 800/1738] Compiling install-ns3-header: ns3/simple-ofdm-send-param.h

[ 801/1738] Compiling install-ns3-header: ns3/bs-service-flow-manager.h

[ 802/1738] Compiling install-ns3-header: ns3/wimax-tlv.h

[ 803/1738] Compiling install-ns3-header: ns3/crc8.h

[ 804/1738] Compiling install-ns3-header: ns3/ss-net-device.h

[ 805/1738] Compiling install-ns3-header: ns3/snr-to-block-error-rate-manager.h

[ 806/1738] Compiling install-ns3-header: ns3/bs-scheduler.h

[ 807/1738] Compiling install-ns3-header: ns3/bs-uplink-scheduler-mbqos.h

[ 808/1738] Compiling install-ns3-header: ns3/ss-service-flow-manager.h

[ 809/1738] Processing gen-module-header: ns3/antenna-module.h

[ 810/1738] Processing gen-module-header: ns3/aodv-module.h

[ 811/1738] Processing gen-module-header: ns3/applications-module.h

[ 812/1738] Processing gen-module-header: ns3/bridge-module.h

[ 813/1738] Processing gen-module-header: ns3/buildings-module.h

[ 814/1738] Processing gen-module-header: ns3/config-store-module.h

[ 815/1738] Processing gen-module-header: ns3/core-module.h

[ 816/1738] Processing gen-module-header: ns3/csma-module.h

[ 817/1738] Compiling gen-module-header: ns3/csma-layout-module.h

[ 818/1738] Processing gen-module-header: ns3/dsdv-module.h

[ 819/1738] Processing gen-module-header: ns3/dsr-module.h

[ 820/1738] Processing gen-module-header: ns3/energy-module.h

[ 821/1738] Processing gen-module-header: ns3/fd-net-device-module.h

[ 822/1738] Processing gen-module-header: ns3/flow-monitor-module.h

[ 823/1738] Processing gen-module-header: ns3/internet-module.h

[ 824/1738] Processing gen-module-header: ns3/internet-apps-module.h

[ 825/1738] Processing gen-module-header: ns3/lr-wpan-module.h

[ 826/1738] Processing gen-module-header: ns3/lte-module.h

[ 827/1738] Processing gen-module-header: ns3/mesh-module.h

[ 828/1738] Processing gen-module-header: ns3/mobility-module.h

[ 829/1738] Processing gen-module-header: ns3/mpi-module.h

[ 830/1738] Compiling gen-module-header: ns3/netanim-module.h

[ 831/1738] Processing gen-module-header: ns3/network-module.h

[ 832/1738] Processing gen-module-header: ns3/nix-vector-routing-module.h

[ 833/1738] Processing gen-module-header: ns3/olsr-module.h

[ 834/1738] Processing gen-module-header: ns3/point-to-point-module.h

[ 835/1738] Processing gen-module-header: ns3/point-to-point-layout-module.h

[ 836/1738] Processing gen-module-header: ns3/propagation-module.h

[ 837/1738] Processing gen-module-header: ns3/sixlowpan-module.h

[ 838/1738] Processing gen-module-header: ns3/spectrum-module.h

[ 839/1738] Processing gen-module-header: ns3/stats-module.h

[ 840/1738] Processing gen-module-header: ns3/topology-read-module.h

[ 841/1738] Processing gen-module-header: ns3/traffic-control-module.h

[ 842/1738] Processing gen-module-header: ns3/uan-module.h

[ 843/1738] Compiling gen-module-header: ns3/virtual-net-device-module.h

[ 844/1738] Processing gen-module-header: ns3/wave-module.h

[ 845/1738] Processing gen-module-header: ns3/wifi-module.h

[ 846/1738] Processing gen-module-header: ns3/wimax-module.h

[ 847/1738] Compiling src/internet/model/ipv6-raw-socket-factory-impl.cc

[ 848/1738] Compiling src/internet-apps/model/radvd.cc

[ 849/1738] Compiling src/core/model/type-name.cc

[ 850/1738] Compiling src/lte/model/ff-mac-csched-sap.cc

[ 851/1738] Compiling utils/bench-simulator.cc

[ 852/1738] Compiling src/network/helper/node-container.cc

[ 853/1738] Compiling src/mobility/model/box.cc

[ 854/1738] Compiling src/core/model/int64x64-128.cc

[ 855/1738] Compiling src/internet/model/tcp-bic.cc

[ 856/1738] Compiling src/internet/model/tcp-option-ts.cc

[ 857/1738] Compiling src/config-store/model/attribute-iterator.cc

[ 858/1738] Compiling src/lte/model/lte-ue-net-device.cc

[ 859/1738] Compiling src/wifi/model/minstrel-ht-wifi-manager.cc

[ 860/1738] Compiling src/lte/model/lte-rlc-header.cc

[ 861/1738] Compiling src/stats/model/data-calculator.cc

[ 862/1738] Compiling src/wave/helper/wave-bsm-stats.cc

[ 863/1738] Compiling src/network/utils/ipv4-address.cc

[ 864/1738] Compiling src/internet/model/udp-socket.cc

[ 865/1738] Compiling src/wifi/model/spectrum-wifi-phy.cc

[ 866/1738] Compiling src/mesh/model/dot11s/peer-management-protocol-mac.cc

[ 867/1738] Compiling src/wifi/model/dsss-parameter-set.cc

[ 868/1738] Compiling src/mobility/model/steady-state-random-waypoint-mobility-model.cc

[ 869/1738] Compiling src/internet/helper/ipv6-address-helper.cc

[ 870/1738] Compiling src/lte/model/lte-chunk-processor.cc

[ 871/1738] Compiling src/dsr/model/dsr-option-header.cc

[ 872/1738] Compiling src/internet/model/tcp-vegas.cc

[ 873/1738] Compiling src/internet/helper/rip-helper.cc

[ 874/1738] Compiling src/lte/model/tdmt-ff-mac-scheduler.cc

[ 875/1738] Compiling src/stats/model/boolean-probe.cc

[ 876/1738] Compiling src/lte/model/epc-s1ap-sap.cc

[ 877/1738] Compiling src/core/model/attribute-construction-list.cc

[ 878/1738] Compiling src/lte/model/lte-enb-rrc.cc

[ 879/1738] Compiling src/internet/helper/ipv4-routing-helper.cc

[ 880/1738] Compiling src/internet/helper/ipv4-interface-container.cc

[ 881/1738] Compiling src/mesh/model/dot11s/ie-dot11s-configuration.cc

[ 882/1738] Compiling src/energy/helper/energy-harvester-helper.cc

[ 883/1738] Compiling src/lte/model/lte-pdcp-tag.cc

[ 884/1738] Compiling src/spectrum/model/wifi-spectrum-value-helper.cc

[ 885/1738] Compiling src/wimax/model/wimax-net-device.cc

[ 886/1738] Compiling src/mesh/model/dot11s/ie-dot11s-peering-protocol.cc

[ 887/1738] Compiling src/spectrum/model/spectrum-converter.cc

[ 888/1738] Compiling src/mesh/model/dot11s/peer-link-frame.cc

[ 889/1738] Compiling src/stats/model/time-series-adaptor.cc

[ 890/1738] Compiling src/dsr/model/dsr-rcache.cc

[ 891/1738] Compiling src/internet/model/arp-cache.cc

[ 892/1738] Compiling src/wifi/model/wifi-information-element-vector.cc

[ 893/1738] Compiling src/propagation/model/okumura-hata-propagation-loss-model.cc

[ 894/1738] Compiling src/mesh/model/dot11s/ie-dot11s-metric-report.cc

[ 895/1738] Compiling src/mesh/model/flame/flame-rtable.cc

[ 896/1738] Compiling src/internet/model/ipv4-global-routing.cc

[ 897/1738] Compiling src/lte/model/lte-pdcp-header.cc

[ 898/1738] Compiling src/buildings/helper/buildings-helper.cc

[ 899/1738] Compiling src/internet/model/ipv4-raw-socket-impl.cc

[ 900/1738] Compiling src/lte/model/ff-mac-common.cc

[ 901/1738] Compiling src/lte/model/lte-rlc-tag.cc

[ 902/1738] Compiling src/lte/model/lte-enb-cphy-sap.cc

[ 903/1738] Compiling src/internet/model/ip-l4-protocol.cc

[ 904/1738] Compiling src/internet/helper/ipv4-static-routing-helper.cc

[ 905/1738] Compiling src/csma/model/csma-channel.cc

[ 906/1738] Compiling src/uan/model/uan-header-rc.cc

[ 907/1738] Compiling src/internet/model/ipv6-routing-table-entry.cc

[ 908/1738] Compiling src/dsr/model/dsr-maintain-buff.cc

[ 909/1738] Compiling src/lte/model/lte-rrc-sap.cc

[ 910/1738] Compiling src/network/model/tag-buffer.cc

[ 911/1738] Compiling src/lte/model/lte-ffr-soft-algorithm.cc

[ 912/1738] Compiling src/lte/model/tta-ff-mac-scheduler.cc

[ 913/1738] Compiling src/wimax/model/ss-net-device.cc

[ 914/1738] Compiling src/internet/model/tcp-yeah.cc

[ 915/1738] Compiling src/network/model/node-list.cc

[ 916/1738] Compiling src/wifi/model/ampdu-tag.cc

[ 917/1738] Compiling src/internet/model/ipv4-end-point.cc

[ 918/1738] Compiling src/topology-read/model/rocketfuel-topology-reader.cc

[ 919/1738] Compiling src/lte/model/epc-x2.cc

[ 920/1738] Compiling src/antenna/model/antenna-model.cc

[ 921/1738] Compiling src/internet/model/udp-header.cc

[ 922/1738] Compiling src/wifi/model/ap-wifi-mac.cc

[ 923/1738] Compiling src/internet/model/ipv6-autoconfigured-prefix.cc

[ 924/1738] Compiling src/core/model/fatal-impl.cc

[ 925/1738] Compiling src/propagation/model/propagation-loss-model.cc

[ 926/1738] Compiling src/core/model/breakpoint.cc

[ 927/1738] Compiling src/internet-apps/helper/v4ping-helper.cc

[ 928/1738] Compiling src/spectrum/model/spectrum-value.cc

[ 929/1738] Compiling src/wifi/model/msdu-aggregator.cc

[ 930/1738] Compiling src/internet/model/global-route-manager.cc

[ 931/1738] Compiling src/network/model/header.cc

[ 932/1738] Compiling src/mesh/model/dot11s/ie-dot11s-preq.cc

[ 933/1738] Compiling src/uan/model/uan-mac.cc

[ 934/1738] Compiling src/wifi/model/ideal-wifi-manager.cc

[ 935/1738] Compiling src/network/utils/inet-socket-address.cc

[ 936/1738] Compiling src/lte/model/epc-sgw-pgw-application.cc

[ 937/1738] Compiling src/energy/model/device-energy-model.cc

[ 938/1738] Compiling src/core/model/des-metrics.cc

[ 939/1738] Compiling src/wifi/helper/athstats-helper.cc

[ 940/1738] Compiling src/flow-monitor/model/histogram.cc

[ 941/1738] Compiling src/network/model/trailer.cc

[ 942/1738] Compiling src/traffic-control/model/pie-queue-disc.cc

[ 943/1738] Compiling src/lte/model/lte-vendor-specific-parameters.cc

[ 944/1738] Compiling src/wave/helper/wave-mac-helper.cc

[ 945/1738] Compiling src/aodv/model/aodv-packet.cc

[ 946/1738] Compiling src/propagation/model/cost231-propagation-loss-model.cc

[ 947/1738] Compiling src/lte/helper/phy-stats-calculator.cc

[ 948/1738] Compiling src/applications/model/udp-client.cc

[ 949/1738] Compiling src/propagation/model/itu-r-1411-nlos-over-rooftop-propagation-loss-model.cc

[ 950/1738] Compiling src/lte/model/epc-enb-application.cc

[ 951/1738] Compiling src/mobility/helper/ns2-mobility-helper.cc

[ 952/1738] Compiling src/mobility/model/constant-velocity-helper.cc

[ 953/1738] Compiling src/sixlowpan/helper/sixlowpan-helper.cc

[ 954/1738] Compiling src/internet/model/ipv4-address-generator.cc

[ 955/1738] Compiling src/network/utils/ipv6-address.cc

[ 956/1738] Compiling src/wimax/model/bs-link-manager.cc

[ 957/1738] Compiling src/mesh/model/dot11s/peer-management-protocol.cc

[ 958/1738] Compiling src/network/model/channel.cc

[ 959/1738] Compiling src/lte/model/lte-asn1-header.cc

[ 960/1738] Compiling src/wimax/model/connection-manager.cc

[ 961/1738] Compiling src/lte/model/lte-ue-phy-sap.cc

[ 962/1738] Compiling src/antenna/model/isotropic-antenna-model.cc

[ 963/1738] Compiling src/lte/model/lte-enb-net-device.cc

[ 964/1738] Compiling src/mesh/model/dot11s/ie-dot11s-beacon-timing.cc

[ 965/1738] Compiling src/propagation/model/jakes-process.cc

[ 966/1738] Compiling src/spectrum/model/aloha-noack-net-device.cc

[ 967/1738] Compiling src/wifi/model/error-rate-model.cc

[ 968/1738] Compiling src/lr-wpan/model/lr-wpan-spectrum-signal-parameters.cc

[ 969/1738] Compiling src/applications/model/udp-trace-client.cc

[ 970/1738] Compiling src/point-to-point/model/point-to-point-channel.cc

[ 971/1738] Compiling src/wifi/helper/wifi-helper.cc

[ 972/1738] Compiling src/lte/model/lte-radio-bearer-info.cc

[ 973/1738] Compiling src/flow-monitor/model/ipv4-flow-classifier.cc

[ 974/1738] Compiling src/mesh/model/mesh-point-device.cc

[ 975/1738] Compiling src/energy/model/basic-energy-harvester.cc

[ 976/1738] Compiling src/internet/model/tcp-rx-buffer.cc

[ 977/1738] Compiling src/applications/helper/on-off-helper.cc

[ 978/1738] Compiling utils/test-runner.cc

[ 979/1738] Compiling src/wimax/model/wimax-phy.cc

[ 980/1738] Compiling src/lte/model/lte-rlc-um.cc

[ 981/1738] Compiling src/mesh/model/dot11s/dot11s-mac-header.cc

[ 982/1738] Compiling src/wave/model/bsm-application.cc

[ 983/1738] Compiling src/wimax/model/simple-ofdm-wimax-phy.cc

[ 984/1738] Compiling src/wave/helper/wave-bsm-helper.cc

[ 985/1738] Compiling src/mesh/helper/dot11s/dot11s-installer.cc

[ 986/1738] Compiling src/wifi/model/nist-error-rate-model.cc

[ 987/1738] Compiling src/network/model/socket.cc

[ 988/1738] Compiling src/internet/model/tcp-scalable.cc

[ 989/1738] Compiling src/internet/model/ipv4-static-routing.cc

[ 990/1738] Compiling src/internet/model/ipv6-packet-info-tag.cc

[ 991/1738] Compiling src/wimax/model/cs-parameters.cc

[ 992/1738] Compiling src/dsdv/model/dsdv-packet-queue.cc

[ 993/1738] Compiling src/internet/model/ipv4-end-point-demux.cc

[ 994/1738] Compiling src/dsr/model/dsr-rreq-table.cc

[ 995/1738] Compiling src/lte/helper/point-to-point-epc-helper.cc

[ 996/1738] Compiling src/spectrum/model/spectrum-propagation-loss-model.cc

[ 997/1738] Compiling src/internet-apps/model/radvd-interface.cc

[ 998/1738] Compiling src/wifi/model/edca-parameter-set.cc

[ 999/1738] Compiling src/internet/model/ipv6-extension.cc

[1000/1738] Compiling src/wifi/helper/wifi-radio-energy-model-helper.cc

[1001/1738] Compiling src/mpi/model/null-message-mpi-interface.cc

[1002/1738] Compiling src/wimax/model/send-params.cc

[1003/1738] Compiling src/dsr/model/dsr-gratuitous-reply-table.cc

[1004/1738] Compiling src/bridge/model/bridge-net-device.cc

[1005/1738] Compiling src/lte/model/lte-ue-cmac-sap.cc

[1006/1738] Compiling src/internet/model/ipv6-raw-socket-factory.cc

[1007/1738] Compiling src/mobility/model/waypoint-mobility-model.cc

[1008/1738] Compiling src/traffic-control/model/queue-disc.cc

[1009/1738] Compiling src/aodv/model/aodv-rqueue.cc

[1010/1738] Compiling src/traffic-control/helper/traffic-control-helper.cc

[1011/1738] Compiling src/energy/model/energy-source.cc

[1012/1738] Compiling src/dsdv/helper/dsdv-helper.cc

[1013/1738] Compiling src/core/model/string.cc

[1014/1738] Compiling src/internet/model/tcp-option-winscale.cc

[1015/1738] Compiling src/wifi/model/mpdu-standard-aggregator.cc

[1016/1738] Compiling src/mpi/model/granted-time-window-mpi-interface.cc

[1017/1738] Compiling src/lte/helper/radio-bearer-stats-connector.cc

[1018/1738] Compiling src/stats/model/data-output-interface.cc

[1019/1738] Compiling src/mesh/model/dot11s/airtime-metric.cc

[1020/1738] Compiling src/lte/model/fdtbfq-ff-mac-scheduler.cc

[1021/1738] Compiling src/internet/model/ipv6-option.cc

[1022/1738] Compiling src/core/model/type-id.cc

[1023/1738] Compiling src/core/model/callback.cc

[1024/1738] Compiling src/internet/model/tcp-westwood.cc

[1025/1738] Compiling src/lte/model/tdtbfq-ff-mac-scheduler.cc

[1026/1738] Compiling src/uan/model/uan-noise-model-default.cc

[1027/1738] Compiling src/lte/model/lte-rlc-am-header.cc

[1028/1738] Compiling src/mobility/model/constant-acceleration-mobility-model.cc

[1029/1738] Compiling src/internet/model/tcp-l4-protocol.cc

[1030/1738] Compiling src/network/model/address.cc

[1031/1738] Compiling src/traffic-control/helper/queue-disc-container.cc

[1032/1738] Compiling src/lte/model/lte-amc.cc

[1033/1738] Compiling src/internet/model/ipv4-queue-disc-item.cc

[1034/1738] Compiling src/spectrum/model/spectrum-phy.cc

[1035/1738] Compiling src/wimax/model/ipcs-classifier-record.cc

[1036/1738] Compiling src/mpi/model/mpi-interface.cc

[1037/1738] Compiling src/lte/model/lte-interference.cc

[1038/1738] Compiling src/energy/helper/basic-energy-source-helper.cc

[1039/1738] Compiling src/wifi/model/qos-blocked-destinations.cc

[1040/1738] Compiling src/wifi/model/wifi-spectrum-phy-interface.cc

[1041/1738] Compiling src/mesh/model/flame/flame-protocol.cc

[1042/1738] Compiling src/network/utils/packet-probe.cc

[1043/1738] Compiling src/network/utils/mac16-address.cc

[1044/1738] Compiling src/lte/model/lte-spectrum-phy.cc

[1045/1738] Compiling src/core/model/hash-fnv.cc

[1046/1738] Compiling src/wifi/model/wifi-mac-queue.cc

[1047/1738] Compiling src/wifi/model/supported-rates.cc

[1048/1738] Compiling src/wimax/model/wimax-mac-to-mac-header.cc

[1049/1738] Compiling src/internet/model/ipv6-packet-filter.cc

[1050/1738] Compiling src/network/utils/packet-socket-server.cc

[1051/1738] Compiling src/core/model/int64x64.cc

[1052/1738] Compiling src/network/model/chunk.cc

[1053/1738] Compiling src/point-to-point/model/point-to-point-net-device.cc

[1054/1738] Compiling src/internet/model/tcp-socket-factory.cc

[1055/1738] Compiling src/stats/model/time-data-calculators.cc

[1056/1738] Compiling src/traffic-control/model/fq-codel-queue-disc.cc

[1057/1738] Compiling src/network/model/tag.cc

[1058/1738] Compiling src/spectrum/helper/adhoc-aloha-noack-ideal-phy-helper.cc

[1059/1738] Compiling src/stats/model/sqlite-data-output.cc

[1060/1738] Compiling src/core/model/hash.cc

[1061/1738] Compiling src/traffic-control/model/pfifo-fast-queue-disc.cc

[1062/1738] Compiling src/propagation/model/itu-r-1411-los-propagation-loss-model.cc

[1063/1738] Compiling src/antenna/model/angles.cc

[1064/1738] Compiling src/mesh/helper/flame/flame-installer.cc

[1065/1738] Compiling src/core/model/unix-system-wall-clock-ms.cc

[1066/1738] Compiling src/wifi/model/mpdu-aggregator.cc

[1067/1738] Compiling src/core/model/command-line.cc

[1068/1738] Compiling src/wifi/model/parf-wifi-manager.cc

[1069/1738] Compiling src/core/model/double.cc

[1070/1738] Compiling src/wifi/model/originator-block-ack-agreement.cc

[1071/1738] Compiling src/internet/model/ipv4-packet-probe.cc

[1072/1738] Compiling src/internet/model/ipv6.cc

[1073/1738] Compiling src/network/utils/simple-net-device.cc

[1074/1738] Compiling src/lte/model/lte-enb-phy.cc

[1075/1738] Compiling src/network/utils/ethernet-header.cc

[1076/1738] Compiling src/spectrum/model/microwave-oven-spectrum-value-helper.cc

[1077/1738] Compiling src/lte/model/lte-anr.cc

[1078/1738] Compiling src/applications/model/onoff-application.cc

[1079/1738] Compiling src/point-to-point/model/ppp-header.cc

[1080/1738] Compiling src/lte/model/lte-ue-cphy-sap.cc

[1081/1738] Compiling src/network/utils/mac64-address.cc

[1082/1738] Compiling src/uan/model/uan-transducer-hd.cc

[1083/1738] Compiling src/wifi/model/amsdu-subframe-header.cc

[1084/1738] Compiling src/wimax/model/ipcs-classifier.cc

[1085/1738] Compiling src/uan/model/uan-prop-model-thorp.cc

[1086/1738] Compiling src/spectrum/helper/spectrum-helper.cc

[1087/1738] Compiling src/lte/model/lte-rrc-protocol-ideal.cc

[1088/1738] Compiling src/wifi/model/onoe-wifi-manager.cc

[1089/1738] Compiling src/wimax/model/wimax-mac-queue.cc

[1090/1738] Compiling src/mesh/helper/mesh-helper.cc

[1091/1738] Compiling src/network/utils/sll-header.cc

[1092/1738] Compiling src/topology-read/model/topology-reader.cc

[1093/1738] Compiling src/uan/model/uan-channel.cc

[1094/1738] Compiling src/wifi/model/adhoc-wifi-mac.cc

[1095/1738] Compiling src/lte/helper/radio-environment-map-helper.cc

[1096/1738] Compiling src/lte/model/lte-pdcp.cc

[1097/1738] Compiling src/buildings/model/itu-r-1238-propagation-loss-model.cc

[1098/1738] Compiling src/wimax/model/wimax-channel.cc

[1099/1738] Compiling src/lte/model/rem-spectrum-phy.cc

[1100/1738] Compiling src/lr-wpan/model/lr-wpan-net-device.cc

[1101/1738] Compiling src/stats/model/probe.cc

[1102/1738] Compiling src/wifi/helper/nqos-wifi-mac-helper.cc

[1103/1738] Compiling src/core/model/time.cc

[1104/1738] Compiling src/stats/model/uinteger-32-probe.cc

[1105/1738] Compiling src/dsr/model/dsr-options.cc

[1106/1738] Compiling src/olsr/model/olsr-state.cc

[1107/1738] Compiling src/core/model/hash-murmur3.cc

[1108/1738] Compiling src/wifi/model/capability-information.cc

[1109/1738] Compiling src/mesh/model/dot11s/hwmp-protocol-mac.cc

[1110/1738] Compiling src/mobility/model/random-waypoint-mobility-model.cc

[1111/1738] Compiling src/lr-wpan/helper/lr-wpan-helper.cc

[1112/1738] Compiling src/lte/model/lte-fr-soft-algorithm.cc

[1113/1738] Compiling src/internet/model/ndisc-cache.cc

[1114/1738] Compiling src/internet/model/tcp-socket-factory-impl.cc

[1115/1738] Compiling src/wave/model/vendor-specific-action.cc

[1116/1738] Compiling src/core/model/simulator-impl.cc

[1117/1738] Compiling src/wifi/model/minstrel-wifi-manager.cc

[1118/1738] Compiling src/point-to-point/model/point-to-point-remote-channel.cc

[1119/1738] Compiling src/internet/model/ipv4-packet-filter.cc

[1120/1738] Compiling src/traffic-control/model/codel-queue-disc.cc

[1121/1738] Compiling src/lte/model/pf-ff-mac-scheduler.cc

[1122/1738] Compiling src/wimax/model/bandwidth-manager.cc

[1123/1738] Compiling src/core/model/object-base.cc

[1124/1738] Compiling src/internet/model/ipv4-header.cc

[1125/1738] Compiling src/uan/model/uan-prop-model-ideal.cc

[1126/1738] Compiling src/wifi/model/ht-operations.cc

[1127/1738] Compiling src/wifi/model/block-ack-manager.cc

[1128/1738] Compiling src/network/helper/net-device-container.cc

[1129/1738] Compiling src/network/helper/simple-net-device-helper.cc

[1130/1738] Compiling src/network/model/nix-vector.cc

[1131/1738] Compiling src/core/model/integer.cc

[1132/1738] Compiling src/lte/model/lte-fr-strict-algorithm.cc

[1133/1738] Compiling src/internet/model/candidate-queue.cc

[1134/1738] Compiling src/wifi/model/yans-wifi-phy.cc

[1135/1738] Compiling src/wifi/model/wifi-spectrum-signal-parameters.cc

[1136/1738] Compiling src/uan/model/uan-mac-cw.cc

[1137/1738] Compiling src/wifi/model/wifi-mac-header.cc

[1138/1738] Compiling src/lte/helper/lte-global-pathloss-database.cc

[1139/1738] Compiling src/core/model/map-scheduler.cc

[1140/1738] Compiling src/lte/model/tdbet-ff-mac-scheduler.cc

[1141/1738] Compiling src/flow-monitor/helper/flow-monitor-helper.cc

[1142/1738] Compiling src/mobility/model/hierarchical-mobility-model.cc

[1143/1738] Compiling src/network/utils/crc32.cc

[1144/1738] Compiling src/lte/model/lte-rlc-am.cc

[1145/1738] Compiling src/internet/model/rip-header.cc

[1146/1738] Compiling src/wifi/model/sta-wifi-mac.cc

[1147/1738] Compiling src/internet/model/ipv4-route.cc

[1148/1738] Compiling src/nix-vector-routing/model/ipv4-nix-vector-routing.cc

[1149/1738] Compiling src/lte/model/lte-ue-power-control.cc

[1150/1738] Compiling src/core/model/object-ptr-container.cc

[1151/1738] Compiling src/wifi/model/aparf-wifi-manager.cc

[1152/1738] Compiling src/wimax/model/bs-scheduler.cc

[1153/1738] Compiling src/uan/model/uan-transducer.cc

[1154/1738] Compiling src/wifi/model/dca-txop.cc

[1155/1738] Compiling src/internet/model/ipv6-end-point-demux.cc

[1156/1738] Compiling src/core/model/config.cc

[1157/1738] Compiling src/network/helper/delay-jitter-estimation.cc

[1158/1738] Compiling src/wifi/model/wifi-mode.cc

[1159/1738] Compiling src/core/model/make-event.cc

[1160/1738] Compiling src/uan/model/uan-phy.cc

[1161/1738] Compiling src/lte/model/lte-ffr-sap.cc

[1162/1738] Compiling src/wifi/model/dsss-error-rate-model.cc

[1163/1738] Compiling src/propagation/model/jakes-propagation-loss-model.cc

[1164/1738] Compiling src/internet/model/arp-header.cc

[1165/1738] Compiling src/wifi/model/qos-utils.cc

[1166/1738] Compiling src/internet-apps/helper/radvd-helper.cc

[1167/1738] Compiling src/lte/model/lte-radio-bearer-tag.cc

[1168/1738] Compiling src/mobility/model/waypoint.cc

[1169/1738] Compiling src/core/model/object.cc

[1170/1738] Compiling src/lr-wpan/model/lr-wpan-spectrum-value-helper.cc

[1171/1738] Compiling src/internet/helper/ipv4-global-routing-helper.cc

[1172/1738] Compiling src/lte/model/lte-enb-mac.cc

[1173/1738] Compiling src/wifi/model/wifi-radio-energy-model.cc

[1174/1738] Compiling src/wimax/model/cid.cc

[1175/1738] Compiling src/wifi/model/wifi-mac.cc

[1176/1738] Compiling src/wave/model/wave-net-device.cc

[1177/1738] Compiling src/internet/model/rip.cc

[1178/1738] Compiling src/spectrum/model/waveform-generator.cc

[1179/1738] Compiling src/flow-monitor/model/ipv4-flow-probe.cc

[1180/1738] Compiling src/uan/model/uan-mac-rc.cc

[1181/1738] Compiling src/mobility/model/random-walk-2d-mobility-model.cc

[1182/1738] Compiling src/dsr/helper/dsr-main-helper.cc

[1183/1738] Compiling src/flow-monitor/model/flow-probe.cc

[1184/1738] Compiling src/wifi/model/ampdu-subframe-header.cc

[1185/1738] Compiling src/wimax/model/simple-ofdm-wimax-channel.cc

[1186/1738] Compiling src/stats/model/data-collector.cc

[1187/1738] Compiling src/network/model/channel-list.cc

[1188/1738] Compiling src/spectrum/model/spectrum-analyzer.cc

[1189/1738] Compiling src/applications/helper/bulk-send-helper.cc

[1190/1738] Compiling src/mesh/model/mesh-wifi-beacon.cc

[1191/1738] Compiling src/wifi/model/snr-tag.cc

[1192/1738] Compiling src/wimax/model/bs-scheduler-simple.cc

[1193/1738] Compiling src/lte/model/lte-rlc-tm.cc

[1194/1738] Compiling src/core/model/object-factory.cc

[1195/1738] Compiling src/internet/helper/internet-stack-helper.cc

[1196/1738] Compiling src/buildings/model/buildings-propagation-loss-model.cc

[1197/1738] Compiling src/internet/model/global-route-manager-impl.cc

[1198/1738] Compiling src/core/model/unix-system-condition.cc

[1199/1738] Compiling src/dsr/model/dsr-rsendbuff.cc

[1200/1738] Compiling src/internet/model/ipv6-pmtu-cache.cc

[1201/1738] Compiling src/internet/model/icmpv6-header.cc

[1202/1738] Compiling src/uan/model/uan-address.cc

[1203/1738] Compiling src/internet/model/ipv4-packet-info-tag.cc

[1204/1738] Compiling src/lte/model/epc-tft-classifier.cc

[1205/1738] Compiling src/mobility/model/geographic-positions.cc

[1206/1738] Compiling src/wifi/model/erp-information.cc

[1207/1738] Compiling src/lte/model/epc-s11-sap.cc

[1208/1738] Compiling src/wimax/model/ss-record.cc

[1209/1738] Compiling src/lte/model/fdbet-ff-mac-scheduler.cc

[1210/1738] Compiling src/dsr/model/dsr-errorbuff.cc

[1211/1738] Compiling src/internet/helper/ipv6-routing-helper.cc

[1212/1738] Compiling src/wifi/model/aarf-wifi-manager.cc

[1213/1738] Compiling src/network/utils/drop-tail-queue.cc

[1214/1738] Compiling src/internet/model/ipv6-routing-protocol.cc

[1215/1738] Compiling src/spectrum/model/spectrum-model-300kHz-300GHz-log.cc

[1216/1738] Compiling src/netanim/model/animation-interface.cc

[1217/1738] Compiling src/dsdv/model/dsdv-rtable.cc

[1218/1738] Compiling src/lte/helper/epc-helper.cc

[1219/1738] Compiling src/network/helper/trace-helper.cc

[1220/1738] Compiling src/network/helper/application-container.cc

[1221/1738] Compiling src/wifi/model/dcf-manager.cc

[1222/1738] Compiling src/internet/model/tcp-socket-base.cc

[1223/1738] Compiling src/flow-monitor/model/flow-classifier.cc

[1224/1738] Compiling src/topology-read/model/orbis-topology-reader.cc

[1225/1738] Compiling src/internet/model/rtt-estimator.cc

[1226/1738] Compiling src/mesh/model/flame/flame-header.cc

[1227/1738] Compiling src/buildings/helper/building-position-allocator.cc

[1228/1738] Compiling src/fd-net-device/model/fd-net-device.cc

[1229/1738] Compiling src/internet/model/tcp-option-rfc793.cc

[1230/1738] Compiling src/lte/model/ff-mac-scheduler.cc

[1231/1738] Compiling src/internet/helper/ipv4-list-routing-helper.cc

[1232/1738] Compiling src/core/model/synchronizer.cc

[1233/1738] Compiling src/core/model/global-value.cc

[1234/1738] Compiling src/internet/model/ipv4-routing-protocol.cc

[1235/1738] Compiling src/internet-apps/model/ping6.cc

[1236/1738] Compiling src/csma/model/csma-net-device.cc

[1237/1738] Compiling src/lte/model/cqa-ff-mac-scheduler.cc

[1238/1738] Compiling src/internet/helper/ipv6-interface-container.cc

[1239/1738] Compiling src/internet/model/udp-socket-factory.cc

[1240/1738] Compiling src/wifi/model/mac-rx-middle.cc

[1241/1738] Compiling src/traffic-control/model/traffic-control-layer.cc

[1242/1738] Compiling src/wimax/model/snr-to-block-error-rate-record.cc

[1243/1738] Compiling src/lr-wpan/model/lr-wpan-lqi-tag.cc

[1244/1738] Compiling src/mobility/model/gauss-markov-mobility-model.cc

[1245/1738] Compiling src/wifi/helper/yans-wifi-helper.cc

[1246/1738] Compiling src/lte/model/lte-ue-phy.cc

[1247/1738] Compiling src/lte/model/lte-ue-mac.cc

[1248/1738] Compiling src/point-to-point-layout/model/point-to-point-star.cc

[1249/1738] Compiling src/energy/model/energy-harvester.cc

[1250/1738] Compiling src/antenna/model/cosine-antenna-model.cc

[1251/1738] Compiling src/applications/helper/packet-sink-helper.cc

[1252/1738] Compiling src/internet/helper/ipv6-list-routing-helper.cc

[1253/1738] Compiling src/dsdv/model/dsdv-packet.cc

[1254/1738] Compiling src/applications/model/udp-echo-client.cc

[1255/1738] Compiling src/uan/model/uan-mac-aloha.cc

[1256/1738] Compiling src/wimax/model/bs-uplink-scheduler-mbqos.cc

[1257/1738] Compiling src/mpi/model/null-message-simulator-impl.cc

[1258/1738] Compiling src/wifi/model/cara-wifi-manager.cc

[1259/1738] Compiling src/mesh/helper/mesh-stack-installer.cc

[1260/1738] Compiling src/config-store/model/config-store.cc

[1261/1738] Compiling src/uan/model/uan-net-device.cc

[1262/1738] Compiling src/stats/model/double-probe.cc

[1263/1738] Compiling src/applications/model/packet-sink.cc

[1264/1738] Compiling src/csma/helper/csma-helper.cc

In file included from ../src/config-store/model/config-store.cc:31:

../src/config-store/model/xml-config.h:25:10: fatal error: 'libxml/xmlwriter.h' file not found

#include <libxml/xmlwriter.h>

         ^

1 error generated.


Waf: Leaving directory `/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build'

Build failed

 -> task in 'ns3-config-store' failed (exit status 1): 

{task 4335145592: cxx config-store.cc -> config-store.cc.1.o}

['/usr/bin/clang++', '-O0', '-ggdb', '-g3', '-Wall', '-Werror', '-Wno-unused-local-typedefs', '-Wno-potentially-evaluated-expression', '-std=c++11', '-fPIC', '-I.', '-I..', '-I/usr/include/libxml2', '-DNS3_BUILD_PROFILE_DEBUG', '-DNS3_ASSERT_ENABLE', '-DNS3_LOG_ENABLE', '-DHAVE_SYS_IOCTL_H=1', '-DHAVE_IF_NETS_H=1', '-DHAVE_NET_ETHERNET_H=1', '-DHAVE_SQLITE3=1', '-DHAVE_LIBXML2=1', '../src/config-store/model/config-store.cc', '-c', '-o', '/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build/src/config-store/model/config-store.cc.1.o']

Traceback (most recent call last):

  File "./build.py", line 171, in <module>

    sys.exit(main(sys.argv))

  File "./build.py", line 162, in main

    build_ns3(config, build_examples, build_tests, args, build_options)

  File "./build.py", line 82, in build_ns3

    run_command([sys.executable, "waf", "build"] + build_options)

  File "/Users/Jaycee/Documents/workspace/ns-allinone-3.26/util.py", line 25, in run_command

    raise CommandError("Command %r exited with code %i" % (argv, retval))

util.CommandError: Command ['/Users/Jaycee/anaconda/bin/python', 'waf', 'build'] exited with code 1

"

Thanks again for your help.


Best regards,


Jaycee


在 2017年6月23日星期五 UTC+1下午4:03:07,Tom Henderson写道:

Jaycee King

unread,
Jun 26, 2017, 5:22:08 AM6/26/17
to ns-3-users
Hi Konstantinos,

Thanks for your reply, I will try with ns-3-dev. If It works, i will come back to post.

Best regards,

Jaycee

在 2017年6月23日星期五 UTC+1下午3:40:21,Konstantinos写道:

Konstantinos

unread,
Jun 26, 2017, 5:37:42 AM6/26/17
to ns-3-users
Hi,

The first set of errors are related to NetAnim and Qt. 
See the installation information for NetAnim and the supported Qt versions (recommended Qt 4.7) here 

The second error looks like it is relatd to XML library support for ns-3.
I think this issue should be resolved with the update to CastXML (currently under investigation)

Jaycee King

unread,
Jun 26, 2017, 10:39:04 AM6/26/17
to ns-3-users
Hi Konstantinos,

Thanks for your reply. I've installed qt4 and updated to CastXML now, but I cannot build 3.26 now. The warning shows as follow:

"

# Build NetAnim

Entering directory `netanim-3.107'

 =>  qmake -v

QMake version 3.1

Using Qt version 5.9.0 in /usr/local/Cellar/qt/5.9.0_1/lib

qmake found

 =>  qmake -spec macx-g++ NetAnim.pro

 =>  make

make: Nothing to be done for `first'.

'configure' finished successfully (2.253s)

 =>  /Users/Jaycee/anaconda/bin/python waf build

Waf: Entering directory `/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build'

[ 967/1738] Compiling src/spectrum/model/single-model-spectrum-channel.cc

[1079/1738] Compiling src/lte/helper/lte-hex-grid-enb-topology-helper.cc

[1123/1738] Compiling src/internet/model/ipv6-static-routing.cc

[1134/1738] Compiling src/internet/model/tcp-socket.cc

[1171/1738] Compiling src/fd-net-device/helper/creator-utils.cc

[1189/1738] Compiling src/dsr/model/dsr-fs-header.cc

[1196/1738] Compiling src/csma/model/backoff.cc

[1212/1738] Compiling src/core/model/attribute.cc

[1257/1738] Compiling src/config-store/model/config-store.cc

[1392/1738] Compiling src/aodv/model/aodv-routing-protocol.cc

[1475/1738] Compiling src/config-store/model/xml-config.cc

[1484/1738] Compiling src/core/model/rng-stream.cc

[1541/1738] Compiling src/energy/model/device-energy-model-container.cc

[1601/1738] Compiling src/internet/model/ipv6-extension-demux.cc

In file included from ../src/config-store/model/config-store.cc:31:

../src/config-store/model/xml-config.h:25:10: fatal error: 'libxml/xmlwriter.h' file not found

#include <libxml/xmlwriter.h>

         ^

1 error generated.


In file included from ../src/config-store/model/xml-config.cc:21:

../src/config-store/model/xml-config.h:25:10: fatal error: 'libxml/xmlwriter.h' file not found

#include <libxml/xmlwriter.h>

         ^

1 error generated.


../src/aodv/model/aodv-routing-protocol.cc:1056:24: error: unexpected type name 'uint16_t': expected expression

      retry = std::pow<uint16_t> (2, rt.GetRreqCnt () - 1) * m_netTraversalTime;

                       ^

../src/aodv/model/aodv-routing-protocol.cc:1056:35: error: expression result unused [-Werror,-Wunused-value]

      retry = std::pow<uint16_t> (2, rt.GetRreqCnt () - 1) * m_netTraversalTime;

                                  ^

2 errors generated.


Waf: Leaving directory `/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build'

Build failed

 -> task in 'ns3-config-store' failed (exit status 1): 

{task 4382161720: cxx config-store.cc -> config-store.cc.1.o}

['/usr/bin/clang++', '-O0', '-ggdb', '-g3', '-Wall', '-Werror', '-Wno-unused-local-typedefs', '-Wno-potentially-evaluated-expression', '-std=c++11', '-fPIC', '-I.', '-I..', '-I/usr/include/libxml2', '-DNS3_BUILD_PROFILE_DEBUG', '-DNS3_ASSERT_ENABLE', '-DNS3_LOG_ENABLE', '-DHAVE_SYS_IOCTL_H=1', '-DHAVE_IF_NETS_H=1', '-DHAVE_NET_ETHERNET_H=1', '-DHAVE_SQLITE3=1', '-DHAVE_LIBXML2=1', '../src/config-store/model/config-store.cc', '-c', '-o', '/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build/src/config-store/model/config-store.cc.1.o']

 -> task in 'ns3-config-store' failed (exit status 1): 

{task 4382162168: cxx xml-config.cc -> xml-config.cc.1.o}

['/usr/bin/clang++', '-O0', '-ggdb', '-g3', '-Wall', '-Werror', '-Wno-unused-local-typedefs', '-Wno-potentially-evaluated-expression', '-std=c++11', '-fPIC', '-I.', '-I..', '-I/usr/include/libxml2', '-DNS3_BUILD_PROFILE_DEBUG', '-DNS3_ASSERT_ENABLE', '-DNS3_LOG_ENABLE', '-DHAVE_SYS_IOCTL_H=1', '-DHAVE_IF_NETS_H=1', '-DHAVE_NET_ETHERNET_H=1', '-DHAVE_SQLITE3=1', '-DHAVE_LIBXML2=1', '../src/config-store/model/xml-config.cc', '-c', '-o', '/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build/src/config-store/model/xml-config.cc.1.o']

 -> task in 'ns3-aodv' failed (exit status 1): 

{task 4380592672: cxx aodv-routing-protocol.cc -> aodv-routing-protocol.cc.1.o}

['/usr/bin/clang++', '-O0', '-ggdb', '-g3', '-Wall', '-Werror', '-Wno-unused-local-typedefs', '-Wno-potentially-evaluated-expression', '-std=c++11', '-fPIC', '-Isrc/aodv', '-I../src/aodv', '-I.', '-I..', '-DNS3_BUILD_PROFILE_DEBUG', '-DNS3_ASSERT_ENABLE', '-DNS3_LOG_ENABLE', '-DHAVE_SYS_IOCTL_H=1', '-DHAVE_IF_NETS_H=1', '-DHAVE_NET_ETHERNET_H=1', '-DHAVE_SQLITE3=1', '../src/aodv/model/aodv-routing-protocol.cc', '-c', '-o', '/Users/Jaycee/Documents/workspace/ns-allinone-3.26/ns-3.26/build/src/aodv/model/aodv-routing-protocol.cc.1.o']

Traceback (most recent call last):

  File "./build.py", line 171, in <module>

    sys.exit(main(sys.argv))

  File "./build.py", line 162, in main

    build_ns3(config, build_examples, build_tests, args, build_options)

  File "./build.py", line 82, in build_ns3

    run_command([sys.executable, "waf", "build"] + build_options)

  File "/Users/Jaycee/Documents/workspace/ns-allinone-3.26/util.py", line 25, in run_command

    raise CommandError("Command %r exited with code %i" % (argv, retval))

util.CommandError: Command ['/Users/Jaycee/anaconda/bin/python', 'waf', 'build'] exited with code 1


"
Best regards,

Chuan

在 2017年6月26日星期一 UTC+1上午10:37:42,Konstantinos写道:
...

Tom Henderson

unread,
Jun 26, 2017, 11:21:14 AM6/26/17
to ns-3-...@googlegroups.com
On 06/26/2017 07:39 AM, Jaycee King wrote:
> Hi Konstantinos,
>
> Thanks for your reply. I've installed qt4 and updated to CastXML now,
> but I cannot build 3.26 now. The warning shows as follow:
>

CastXML is still a work in progress so that will not work yet, but that
is an optional component.

There seems to be some problem with the library installations on your
machine; I wonder if removing Xcode and reinstalling it from the app
store might help? To uninstall, drag the Xcode application into the
trash bin, and then reinstall from the app store.

This error is a problem:

> Checking for 'libxml-2.0' >= 2.7
> : yes

but later in the build:

In file included from ../src/config-store/model/config-store.cc:31:

../src/config-store/model/xml-config.h:25:10: fatal error:
'libxml/xmlwriter.h' file not found

#include <libxml/xmlwriter.h>

^

1 error generated.


In file included from ../src/config-store/model/xml-config.cc:21:

../src/config-store/model/xml-config.h:25:10: fatal error:
'libxml/xmlwriter.h' file not found

#include <libxml/xmlwriter.h>

^

This error suggests that waf is incorrectly concluding, during the
configuration phase, that libxml development package is installed, but
the headers are not found later when compilation occurs.


And then this:

../src/aodv/model/aodv-routing-protocol.cc:1056:24: error: unexpected
type name 'uint16_t': expected expression

retry = std::pow<uint16_t> (2, rt.GetRreqCnt () - 1) *
m_netTraversalTime;

^

which suggests to me that something is wrong in your installation of
system libraries.

I haven't seen these specific errors before on MacOS (and am not a
regular user of MacOS) so I can't tell exactly what the problem might be.

- Tom

Adil Alsuhaim

unread,
Jun 28, 2017, 3:29:42 AM6/28/17
to ns-3-users
Hey, Jaycee

Find the attached PDF document file for instruction for Installing ns-3.26 on Mac OSX Sierra.

  

I also have PyViz enabled & Netanim (NetAnim requires building with Qt4, not Qt5). I can see that you're trying to build NetAnim with Qt5, which will give you troubles, although you do not really need NetAnim. And in your case, you may need to remove the symbolic link from qmake for Qt5 & make it to Qt4 (the document has instructions on how to install Qt4 on El-Capitan and later)


By the way, this is what my compiler is reporting.  

adil@Darwin:ns-3.26$ clang++ --version

Apple LLVM version 8.1.0 (clang-802.0.42)

Target: x86_64-apple-darwin16.6.0

Thread model: posix

InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

 

adil@Darwin:ns-3.26$ g++ --version

Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1

Apple LLVM version 8.1.0 (clang-802.0.42)

Target: x86_64-apple-darwin16.6.0

Thread model: posix

InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin


I hope you find the tutorial useful. I had to make these for undergrad students (I am a PhD student)

Cheers!

Adil
NS3 Installation on Mac.pdf

Jaycee King

unread,
Jun 28, 2017, 8:42:41 AM6/28/17
to ns-3-users
Hi Adil,

Thanks for your reply. I'm new to NS3 and Terminal installation. I've tried to reinstall ns-3 according to your installation manual. When I did "sudo port install autoreconf", there is error "Error: Port autoreconf not found". Could I use brew to install "autoreconf"? I've googled it. Someone mentioned could use "brew install autoconf" to replace this. Does it work?

Thanks again for your help.

Many thanks,

Jaycee

在 2017年6月28日星期三 UTC+1上午8:29:42,Adil Alsuhaim写道:

Adil Alsuhaim

unread,
Jun 28, 2017, 10:16:04 AM6/28/17
to ns-3-users
Shoot! My bad. I installed that using HomeBrew.

brew install autoreconf

-Adil

Jaycee King

unread,
Jun 28, 2017, 10:24:41 AM6/28/17
to ns-3-users
Hi Adil,

I've tried the command "brew install autoreconf", but terminal shows 
"brew install autoreconf

Updating Homebrew...

==> Auto-updated Homebrew!

Updated 2 taps (caskroom/cask, homebrew/core).

No changes to formulae.


Error: No available formula with the name "autoreconf" 

==> Searching for a previously deleted formula...

Warning: homebrew/core is shallow clone. To get complete history run:

  git -C "$(brew --repo homebrew/core)" fetch --unshallow


Error: No previously deleted formula found.

==> Searching for similarly named formulae...

Error: No similarly named formulae found.

==> Searching taps...

Error: No formulae found in taps."
So, I tried use commond "brew install autoconf", it works.

Thanks for your help! NS3.26 is installed successfully on my MAC now.  But I found my Qt version is still Qt5 although I followed your instruction.
"

qmake --version

QMake version 3.1

Using Qt version 5.9.0 in /usr/local/Cellar/qt/5.9.0_1/lib

"
Could you mind to tell me how to remove symbolic link from qmake for Qt5 & make it to Qt4?

Many thanks,

Jaycee

在 2017年6月28日星期三 UTC+1下午3:16:04,Adil Alsuhaim写道:

Adil Alsuhaim

unread,
Jun 28, 2017, 7:14:58 PM6/28/17
to ns-3-users
My bad, again!!  I made the guide a year ago for undergrad students and my colleagues, but they probably all went with Ubuntu dual boot or Virtual Machine instead, so no one double checked it. You install that with MacPorts, not HomeBrew 
sudo port install autoconf

You will need Qt4 to build NetAnim. You might have two versions of Qt installed, but the default one is Qt5

Well, when you type

qmake --version or qmake -v

You will get the version of Qt that is used on your Mac.  You can also get the path to your qmake by typing

which qmake

You will likely get something like
/usr/bin/qmake

And now you know which qmake is being called by default. Note that this file may or may not be a symbolic link to the actual executable. Anyway, Unix-based systems like OSX and Ubuntu has the environment variable $PATH. The order within the file string matters because whenever you type a certain command (in this case qmake), it will search the directories of your PATH one by one. Usually, we prefer to put /usr/local/bin before /usr/bin so that we search local user directory first. 

echo $PATH

You should get something like this:
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games

Meaning that your system will consider files in /usr/local/bin before /usr/bin, you may simply add the link to your Qt4 qmake up in front and be done. If you installed Qt4 using the legacy formula in the guide, the path to the qmake for Qt4 should be:
/usr/local/Cellar/qt@4/4.8.7_1/bin/qmake

You can just simply add that to your PATH and be done

command-prompt:~$ export PATH=/usr/local/Cellar/qt@4/4.8.7_1/bin:$PATH
command-prompt:~$ echo $PATH
/usr/local/Cellar/qt@4/4.8.7_1/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
command-prompt:~$ qmake --version

You should now see that it is Qt4 in use, not Qt5. Go ahead and build NetAnim!

The reason why I mentioned symbolic link is because sometimes the PATH variable can be too long and difficult to read. So I simply create a symbolic link that points to the qmake for Qt4 under /usr/local/bin, which is already in the PATH, and which the system checks for before /usr/bin and therefore I don't have to look at too much text whenever I type echo $PATH

To create a symbolic link, I need to have full path to the desired qmake then do the link as follows:

command-prompt:~$ ln -s /usr/local/Cellar/qt@4/4.8.7_1/bin/qmake /usr/local/bin/qmake

Now if you type which qmake it should show /usr/local/bin/qmake instead, and qmake --version should show you Qt4

You can (hopefully) now build NetAnim by typing make. NetAnim builds independently from NS3. 

A Side Note:
Of course, you may get different results. For example the qmake for your Qt5 might already be under /usr/local/bin so just adding a directory to your PATH might be a better way to go. Just make sure you get yourself familiar with using the command line (i.e. learning Unix/Linux/OSX) because it could make your life easier.

I personally have both Qt4 & Qt5 installed on both Ubuntu & OSX. I sometimes make changes to NetAnim code so I use Qt4 to build it. I use Qt5 for OMNET++ Qt-based projects. The process is easier on Ubuntu to switch between Qt4 and Qt5 since you can simply use qtchooser to chose that. No so on Mac OSX probably because we need to install a patched version of Qt4 for OSX El Capitan and later. 

In addition to NetAnim, I use PyViz to visualize live simulation (It has less features, but it's good for debugging). If your ./waf configure shows "PyViz Visualizer : enabled" then you can use PyViz. There's a tutorial for that in this page, and for OSX, you will need an X Window installed like XQuartz which you can download this web page

Cheers!
Adil 
Message has been deleted

Adil Alsuhaim

unread,
Jun 28, 2017, 7:18:39 PM6/28/17
to ns-3-users
Oh, I missed the part where you actually installed autoconf with "brew". Yes it doesn't matter if you used MacPorts or HomeBrew, but I believe only HomeBrew installs Qt4 successfully on newer OSX versions.

--Adil

Jaycee King

unread,
Jun 29, 2017, 6:39:06 AM6/29/17
to ns-3-users
Hi Adil,

Thanks for your detailed explanation, and it finally works. BTW, I tried to build NetAnim with command "make" according to your manual, but it shows "make make: Nothing to be done for `first'. ns3". So I googled and found another command,"make clean" then "qmake NetAnim.pro" and then "make". It builds successfully with minor warnings. 

Thanks again for help. Could you mind to give me some suggestion for learning Unix/Linux/OSX e.g. book, video or anything?

Have a nice day!

Many thanks,

Jaycee
 
在 2017年6月29日星期四 UTC+1上午12:14:58,Adil Alsuhaim写道:

Adil Alsuhaim

unread,
Jun 29, 2017, 5:09:16 PM6/29/17
to ns-3-users
You're welcome! I struggle with it myself, that's why I made the tutorial few months ago. I would much rather use my OSX than dual boot or run it on an Ubuntu VM!

As I said, learning Linux/OSX command-line tricks will come in very handy in resolving issues and making life easier.  I do not have a specific recommendation for books or video tutorials. But you can always google what you need to do. In addition, you should learn how to you GDB or LLDB debugger to find issues in your NS3 programs.

I personally learned from practice, reading manual pages, and googling solutions. I also familiarized myself with Python & Bash scripting, since it can help in writing scripts for Unix-based systems.

Glad this is helpful. I updated the PDF instructions now for reference to whoever reads this.

Regards, 
Adil
NS3 Installation on Mac.pdf

Jaycee King

unread,
Jul 2, 2017, 9:37:00 AM7/2/17
to ns-3-users
Hi Adil,

Thanks again your help!!! 

Best wishes,

Jaycee

在 2017年6月29日星期四 UTC+1下午10:09:16,Adil Alsuhaim写道:
You're welcome! I struggle with it myself, that's why I made the tutorial few months ago. I would much rather use my OSX than dual boot or run it on an Ubuntu VM!

As I said, learning Linux/OSX command-line tricks will come in very handy in resolving issues and making life easier.  I do not have a specific recommendation for books or video tutorials. But you can always google what you need to do. In addition, you should learn how to you  AGDB or LLDB debugger to find issues in your NS3 programs.

Jaycee King

unread,
Jul 2, 2017, 9:37:21 AM7/2/17
to ns-3-users
Hi Adil,

Thanks again your help!!! 

Best wishes,

Jaycee

在 2017年6月29日星期四 UTC+1下午10:09:16,Adil Alsuhaim写道:
You're welcome! I struggle with it myself, that's why I made the tutorial few months ago. I would much rather use my OSX than dual boot or run it on an Ubuntu VM!

As I said, learning Linux/OSX command-line tricks will come in very handy in resolving issues and making life easier.  I do not have a specific recommendation for books or video tutorials. But you can always google what you need to do. In addition, you should learn how to you  AGDB or LLDB debugger to find issues in your NS3 programs.

Brian Swenson

unread,
Aug 30, 2017, 9:30:44 PM8/30/17
to ns-3-users
The problem is here:
and ['/Users/Jaycee/anaconda/bin/python

I had multiple students hit this. Do this:

./waf clean
./waf --python=/usr/bin/python configure
./waf build

Fixed it for all of them.

Reply all
Reply to author
Forward
0 new messages