Hi there folks, hope you are doing well
I'm currently figuring out a way to integrate some graph libs to the ns3 source code and i was stumbled by this issue.
Usually, I compile ns3 source code with g++ 9.4 and everything works out fine, but because one of these graph libs (in this case, one that I'm not going to use) uses a lot of C++20 standard features, I switched to version g++ 13 (Ubuntu 20.04).
When I tried to build ns3, a lot of errors were raised by the compiler (Errors such as std::uint8_t not in std scope, etc). After doing some research, I discovered that these errors may be associated with a compiler that is not compliant with the C++11 standard.
Anyway, it's not really an issue since I don't need to use this version of g++, but i thought it was worth sharing since this could help someone with a similar problem.
Furthermore, has anybody also faced this problem?