EMANE 0.9.1
https://github.com/adjacentlink/emane

Install instructions
==

See https://github.com/adjacentlink/emane/wiki/Install


Build Notes
==

Update Ubuntu 12.04 to GCC 4.7.0 for C++11 support

1. sudo add-apt-repository ppa:ubuntu-toolchain-r/test

2. sudo apt-get update

3. sudo apt-get install gcc-4.7 g++-4.7

4. The easiest way to build with autotools:

./configure CXX=g++-4.7

Update CentOS/SL 6.x to GCC 4.7.0 for C++11 support

1. Create /etc/yum.repos.d/devtools.repo

=== start cut-and-paste ===
[testing-devtools-$releasever]
name=testing devtools for CentOS $releasever
baseurl=http://people.centos.org/tru/devtools/6/$basearch/RPMS
gpgcheck=0
=== end cut-and-paste ===

2. Install devtoolset-1.0

# sudo yum install devtoolset-1.0-gcc-c++

3. The easiest way to build is to source in the devtoolset-1.0 environment:

# . /opt/centos/devtoolset-1.0/enable
