From e6909ab4b5bbef7dc29b8be23d6ccea32f01e383 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Sun, 14 Sep 2025 08:33:45 -0700 Subject: [PATCH] brite: Update installation documentation --- src/brite/doc/brite.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/brite/doc/brite.rst b/src/brite/doc/brite.rst index a0420b39a..1bbd0258c 100644 --- a/src/brite/doc/brite.rst +++ b/src/brite/doc/brite.rst @@ -87,17 +87,18 @@ Building BRITE Integration The first step is to download and build the ns-3 specific BRITE repository:: - $ hg clone http://code.nsnam.org/BRITE + $ git clone https://gitlab.com/nsnam/BRITE.git $ cd BRITE + $ mkdir build && cd build + $ cmake .. $ make -This will build BRITE and create a library, libbrite.so, within the BRITE -directory. +This will build a library, libbrite.so, within the BRITE/build subdirectory. Once BRITE has been built successfully, we proceed to configure ns-3 with BRITE support. Change to your ns-3 directory:: - $ ./ns3 configure --with-brite=/your/path/to/brite/source --enable-examples + $ ./ns3 configure --with-brite=/your/path/to/BRITE --enable-examples Make sure it says 'enabled' beside 'BRITE Integration'. If it does not, then something has gone wrong. Either you have forgotten to build BRITE first