Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Don't crash simulation if size is 0 in sendrecv_replace, as it is legal.
[simgrid.git] / docs / source / Installing_SimGrid.rst
index 9d5d606ab11b37566d491d5f1fe97be6285c9f16..e1234abf5920ddd9d1530af4ad78bc937e082576 100644 (file)
@@ -111,8 +111,8 @@ Getting the Dependencies
 ^^^^^^^^^^^^^^^^^^^^^^^^
 
 C++ compiler (either g++, clang, or icc).
-  We use the C++14 standard, and older compilers tend to fail on
-  us. It seems that g++ 5.0 or higher is required nowadays (because of
+  We use the C++17 standard, and older compilers tend to fail on
+  us. It seems that g++ 7.0 or higher is required nowadays (because of
   boost).  SimGrid compiles well with `clang` or `icc` too.
 Python 3.
   SimGrid should build without Python. That is only needed by our regression test suite.
@@ -122,11 +122,11 @@ cmake (v3.5).
   configuration options (e.g., if your Python installation is not standard).
 boost (at least v1.48, v1.59 recommended)
   - On Debian / Ubuntu: ``apt install libboost-dev libboost-context-dev``
-  - On CentOS / Fedora: ``yum install boost-devel``
+  - On CentOS / Fedora: ``dnf install boost-devel``
   - On macOS with homebrew: ``brew install boost``
 Eigen3 (optional)
   - On Debian / Ubuntu: ``apt install libeigen3-dev``
-  - On CentOS / Fedora: ``yum install eigen3-devel``
+  - On CentOS / Fedora: ``dnf install eigen3-devel``
   - On macOS with homebrew: ``brew install eigen``
   - Use EIGEN3_HINT to specify where it's installed if cmake doesn't find it automatically.
 Java (optional):