Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
008135056528f05058a35045089b91d32fa5578b
[simgrid.git] / docs / source / Installing_SimGrid.rst
1 .. Copyright 2005-2020
2
3 .. _install:
4
5 Installing SimGrid
6 ==================
7
8
9 SimGrid should work out of the box on Linux, macOS, FreeBSD, and
10 Windows (under Windows, you need to install the Windows Subsystem
11 Linux to get more than the Java bindings).
12
13 Pre-compiled Packages
14 ---------------------
15
16 Binaries for Linux
17 ^^^^^^^^^^^^^^^^^^
18
19 To get all of SimGrid on Debian or Ubuntu, simply type one of the
20 following lines, or several lines if you need several languages.
21
22 .. code-block:: shell
23
24    apt install libsimgrid-dev  # if you want to develop in C or C++
25    apt install simgrid-java    # if you want to develop in Java
26    apt install python3-simgrid # if you want to develop in Python
27
28 If you build pre-compiled packages for other distributions, drop us an
29 email.
30
31 .. _install_java_precompiled:
32
33 Stable Java Package
34 ^^^^^^^^^^^^^^^^^^^
35
36 The jar file can be retrieved from the `Release page
37 <https://framagit.org/simgrid/simgrid/releases>`_. This file is
38 self-contained, including the native components for Linux, macOS and
39 Windows. Copy it to your project's classpath and you're set.
40
41 Nightly built Java Package
42 ^^^^^^^^^^^^^^^^^^^^^^^^^^
43
44 For non-Windows systems (Linux, macOS, or FreeBSD), head to `Jenkins <https://ci.inria.fr/simgrid/job/SimGrid>`_.
45 In the build history, pick the last green (or at least yellow) build that is not blinking (i.e., not currently under
46 build). In the list, pick a system that is close to yours, and click on the ball in the Debug row. The build artifact
47 will appear at the top of the resulting page.
48
49 For Windows, head to `AppVeyor <https://ci.appveyor.com/project/simgrid/simgrid>`_.
50 Click on the artifact link on the right, and grab your file. If the latest build failed, there will be no artifact. Then
51 you will need to first click on "History" at the top and look for the last successful build.
52
53 Binary Java Troubleshooting
54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
55
56 Here are some error messages that you may get when trying to use the
57 binary Java package.
58
59 Your architecture is not supported by this jarfile
60    If your system is not supported, you should compile your
61    own jarfile :ref:`by compiling SimGrid <install_src>` from the source.
62 Library not found: boost-context
63    You should obviously install the ``boost-context`` library on your
64    machine, for example with ``apt``.
65
66 Version numbering and deprecation
67 ---------------------------------
68
69 SimGrid tries to be both a research instrument that you can trust, and
70 a vivid project targeting the future issues. We have 4 stable versions
71 per year, numbered 3.24 or 3.25. Backward compatibility is ensured for
72 one year: Code compiling without warning on 3.24 will still compile
73 with 3.28, but maybe with some deprecation warnings. You should update
74 your SimGrid installation at least once a year and fix those
75 deprecation warnings: the compatibility wrappers are usually removed
76 after 4 versions. Another approach is to never update your SimGrid
77 installation, but we don't provide any support to old versions.
78
79 Interim versions (also called pre-versions) may be released between
80 stable releases. They are numbered 3.X.Y, with even Y (for example,
81 3.23.2 was released on July 8. 2019 as a pre-version of 3.24). These
82 versions should be as usable as regular stable releases, even if they
83 may be somewhat less tested and documented. They play no role in our
84 deprecation handling, and they are not really announced to not spam
85 our users.
86
87 Version numbered 3.X.Y with odd Y are git versions. They often work,
88 but no guarantee is given whatsoever (all releases are given "as is",
89 but that's even more so for these unreleased versions).
90
91 .. _install_src:
92
93 Installing from the Source
94 --------------------------
95
96 Getting the Dependencies
97 ^^^^^^^^^^^^^^^^^^^^^^^^
98
99 C++ compiler (either g++, clang, or icc).
100   We use the C++14 standard, and older compilers tend to fail on
101   us. It seems that g++ 5.0 or higher is required nowadays (because of
102   boost).  SimGrid compiles well with `clang` or `icc` too.
103 Python 3.
104   SimGrid should build without Python. That is only needed by our regression test suite.
105 cmake (v3.5).
106   ``ccmake`` provides a nicer graphical interface compared to ``cmake``.
107   Press ``t`` in ``ccmake`` if you need to see absolutely all
108   configuration options (e.g., if your Python installation is not standard).
109 boost (at least v1.48, v1.59 recommended)
110   - On Debian / Ubuntu: ``apt install libboost-dev libboost-context-dev``
111   - On macOS with homebrew: ``brew install boost``
112 Java (optional):
113   - Debian / Ubuntu: ``apt install default-jdk libgcj18-dev`` (or
114     any version of libgcj)
115   - macOS or Windows: Grab a `full JDK <http://www.oracle.com/technetwork/java/javase/downloads>`_
116 Lua (optional -- must be v5.3)
117   - SimGrid won't work with any other version of Lua.
118   - Debian / Ubuntu: ``apt install liblua5.3-dev lua5.3``
119   - Windows: ``choco install lua53``
120   - From the source
121       - You need to patch the sources to build dynamic libraries. First `download lua 5.3 <http://www.lua.org/download.html>`_
122       - Open the archive: ``tar xvfz lua-5.3.*.tar.gz``
123       - Enter the directory: ``cd lua-5.3*``
124       - Patch the sources: ``patch -p1 < /path/to/simgrid/...../tools/lualib.patch``
125       - Build and install lua: ``make linux && sudo make install``
126
127 For platform-specific details, please see below.
128
129 Getting the Sources
130 ^^^^^^^^^^^^^^^^^^^
131
132 Grab the last **stable release** from `FramaGit
133 <https://framagit.org/simgrid/simgrid/releases>`_, and compile it as follows:
134
135 .. code-block:: shell
136
137    tar xf simgrid-3-XX.tar.gz
138    cd simgrid-*
139    cmake -DCMAKE_INSTALL_PREFIX=/opt/simgrid .
140    make
141    make install
142
143 If you want to stay on the **bleeding edge**, get the current git version,
144 and recompile it as with stable archives. You may need some extra
145 dependencies.
146
147 .. code-block:: shell
148
149    git clone https://framagit.org/simgrid/simgrid.git
150    cd simgrid
151    cmake -DCMAKE_INSTALL_PREFIX=/opt/simgrid .
152    make
153    make install
154
155 .. _install_src_config:
156    
157 Build Configuration
158 ^^^^^^^^^^^^^^^^^^^
159
160 This section is about **compile-time options**, which are very
161 different from :ref:`run-time options <options>`. Compile-time options
162 fall into two categories. **SimGrid-specific options** define which part
163 of the framework to compile while **Generic options** are provided by
164 cmake itself.
165
166 .. warning::
167
168    Our build system often gets mixed up if you change something on
169    your machine after the build configuration.  For example, if
170    SimGrid fails to detect your fortran compiler, it is not enough to
171    install a fortran compiler. You also need to delete all Cmake
172    files, such as ``CMakeCache.txt``. Since Cmake also generates some
173    files in the tree, you may need to wipe out your complete tree and
174    start with a fresh one when you install new dependencies.
175    
176    Another (better) solution is to :ref:`build out of the source tree
177    <install_cmake_outsrc>`.
178
179 Generic build-time options
180 """"""""""""""""""""""""""
181
182 These options specify, for example, the path to various system elements (Python
183 path, compiler to use, etc). In most case, CMake automatically discovers the
184 right value for these elements, but you can set them manually as needed.
185 Notably, such variables include ``CC`` and ``CXX``, defining the paths to the C
186 and C++ compilers; ``CFLAGS`` and ``CXXFLAGS`` specifying extra options to pass
187 to the C and C++ compilers; and ``PYTHON_EXECUTABLE`` specifying the path to the
188 Python executable.
189
190 The best way to discover the exact name of the option that you need to
191 change is to press ``t`` in the ``ccmake`` graphical interface, as all
192 options are shown (and documented) in the advanced mode.
193
194 Once you know their name, there are several ways to change the values of
195 build-time options. You can naturally use the ccmake graphical
196 interface for that, or you can use environment variables, or you can
197 prefer the ``-D`` flag of ``cmake``.
198
199 For example, you can change the compilers by issuing these commands to set some
200 environment variables before launching cmake:
201
202 .. code-block:: shell
203
204    export CC=gcc-5.1
205    export CXX=g++-5.1
206
207 The same can be done by passing ``-D`` parameters to cmake, as follows.
208 Note that the dot at the end is mandatory (see :ref:`install_cmake_outsrc`).
209
210 .. code-block:: shell
211
212    cmake -DCC=clang -DCXX=clang++ .
213
214 SimGrid compilation options
215 """""""""""""""""""""""""""
216
217 Here is the list of all SimGrid-specific compile-time options (the
218 default choice is in upper case).
219
220 CMAKE_INSTALL_PREFIX (path)
221   Where to install SimGrid (/opt/simgrid, /usr/local, or elsewhere).
222
223 enable_compile_optimizations (ON/off)
224   Ask the compiler to produce efficient code. You probably want to
225   leave this option activated, unless you plan to modify SimGrid itself:
226   efficient code takes more time to compile, and appears mangled to some debuggers.
227
228 enable_compile_warnings (on/OFF)
229   Ask the compiler to issue error messages whenever the source
230   code is not perfectly clean. If you are a SimGrid developer, you
231   have to activate this option to enforce the code quality. As a
232   regular user, this option is of little use.
233
234 enable_debug (ON/off)
235   Disabling this option discards all log messages of severity
236   debug or below at compile time (see @ref XBT_log). The resulting
237   code is faster than if you discard these messages at
238   runtime. However, it obviously becomes impossible to get any debug
239   info from SimGrid if something goes wrong.
240
241 enable_documentation (on/OFF)
242   Generates the documentation pages. Building the documentation is not
243   as easy as it used to be, and you should probably use the online
244   version for now.
245
246 enable_java (on/OFF)
247   Generates the java bindings of SimGrid. You must also enable MSG for
248   this to work.
249
250 enable_jedule (on/OFF)
251   Produces execution traces from SimDag simulations, which can then be visualized with the
252   Jedule external tool.
253
254 enable_lua (on/OFF)
255   Generate the lua bindings to the SimGrid internals (requires lua-5.3).
256
257 enable_lib_in_jar (ON/off)
258   Embeds the native java bindings into the produced jar file.
259
260 enable_lto (ON/off)
261   Enables the *Link Time Optimization* in the C++ compiler.
262   This feature really speeds up the code produced, but it is fragile
263   with older gcc versions.
264
265 enable_maintainer_mode (on/OFF)
266   (dev only) Regenerates the XML parsers whenever the DTD is modified (requires flex and flexml).
267
268 enable_mallocators (ON/off)
269   Activates our internal memory caching mechanism. This produces faster
270   code, but it may fool the debuggers.
271
272 enable_model-checking (on/OFF)
273   Activates the formal verification mode. This will **hinder
274   simulation speed** even when the model checker is not activated at
275   run time.
276
277 enable_msg (on/OFF)
278   Activates the :ref:`MSG <MSG_doc>` legacy interface.
279
280 enable_ns3 (on/OFF)
281   Activates the ns-3 bindings. See section :ref:`model_ns3`.
282
283 enable_smpi (ON/off)
284   Allows one to run MPI code on top of SimGrid.
285
286 enable_smpi_ISP_testsuite (on/OFF)
287   Adds many extra tests for the model checker module.
288
289 enable_smpi_MPICH3_testsuite (on/OFF)
290   Adds many extra tests for the MPI module.
291
292 minimal-bindings (on/OFF)
293   Take as few optional dependencies as possible, to get minimal
294   library bindings in Java and Python.
295
296 Reset the build configuration
297 """""""""""""""""""""""""""""
298
299 To empty the CMake cache (either when you add a new library or when
300 things go seriously wrong), simply delete your ``CMakeCache.txt``. You
301 may also want to directly edit this file in some circumstances.
302
303 .. _install_cmake_outsrc:
304
305 Out of Tree Compilation
306 ^^^^^^^^^^^^^^^^^^^^^^^
307
308 By default, the files produced during the compilation are placed in
309 the source directory. It is however often better to put them all in a
310 separate directory: cleaning the tree becomes as easy as removing this
311 directory, and you can have several such directories to test several
312 parameter sets or architectures.
313
314 For that, go to the directory where the files should be produced, and
315 invoke cmake (or ccmake) with the full path to the SimGrid source as
316 last argument.
317
318 .. code-block:: shell
319
320   mkdir build
321   cd build
322   cmake [options] ..
323   make
324
325 Existing Compilation Targets
326 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
327
328 In most cases, compiling and installing SimGrid is enough:
329
330 .. code-block:: shell
331
332   make
333   make install # try "sudo make install" if you don't have the permission to write
334
335 In addition, several compilation targets are provided in SimGrid. If
336 your system is well configured, the full list of targets is available
337 for completion when using the ``Tab`` key. Note that some of the
338 existing targets are not really for public consumption so don't worry
339 if some do not work for you.
340
341 - **make**: Build the core of SimGrid that gets installed, but not any example.
342 - **make tests**: Build the tests and examples.
343 - **make simgrid**: Build only the SimGrid library. Not any example nor the helper tools.
344 - **make s4u-app-pingpong**: Build only this example (works for any example)
345 - **make java-all**: Build all Java examples and their dependencies
346 - **make clean**: Clean the results of a previous compilation
347 - **make install**: Install the project (doc/ bin/ lib/ include/)
348 - **make uninstall**: Uninstall the project (doc/ bin/ lib/ include/)
349 - **make dist**: Build a distribution archive (tar.gz)
350 - **make distcheck**: Check the dist (make + make dist + tests on the distribution)
351 - **make documentation**: Create SimGrid documentation
352
353 If you want to see what is really happening, try adding ``VERBOSE=1`` to
354 your compilation requests:
355
356 .. code-block:: shell
357
358   make VERBOSE=1
359
360 .. _install_src_test:
361
362 Testing your build
363 ^^^^^^^^^^^^^^^^^^
364
365 Once everything is built, you may want to test the result. SimGrid
366 comes with an extensive set of regression tests (as described in the
367 @ref inside_tests "insider manual"). The tests are not built by
368 default, so you first have to build them with ``make tests``. You can
369 then run them with ``ctest``, that comes with CMake.  We run them
370 every commit and the results are on `our Jenkins <https://ci.inria.fr/simgrid/>`_.
371
372 .. code-block:: shell
373
374   make tests                # Build the tests
375   ctest                     # Launch all tests
376   ctest -R s4u              # Launch only the tests whose names match the string "s4u"
377   ctest -j4                 # Launch all tests in parallel, at most 4 concurrent jobs
378   ctest --verbose           # Display all details on what's going on
379   ctest --output-on-failure # Only get verbose for the tests that fail
380
381   ctest -R s4u -j4 --output-on-failure # You changed S4U and want to check that you didn't break anything, huh?
382                                        # That's fine, I do so all the time myself.
383
384 .. _install_cmake_mac:
385
386 macOS-specific instructions
387 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
388
389 SimGrid compiles like a charm with clang (version 3.0 or higher) on macOS:
390
391 .. code-block:: shell
392
393   cmake -DCMAKE_C_COMPILER=/path/to/clang -DCMAKE_CXX_COMPILER=/path/to/clang++ .
394   make
395
396
397 Troubleshooting your macOS build.
398
399 CMake Error: Parse error in cache file build_dir/CMakeCache.txt. Offending entry: /SDKs/MacOSX10.8.sdk
400   This was reported with the XCode version of clang 4.1. The work
401   around is to edit the ``CMakeCache.txt`` file directly, to change
402   the following entry:
403
404   ``CMAKE_OSX_SYSROOT:PATH=/Applications/XCode.app/Contents/Developer/Platforms/MacOSX.platform/Developer``
405
406   You can safely ignore the warning about "-pthread" not being used, if it appears.
407
408 /usr/include does not seem to exist
409   This directory does not exist by default on modern macOS versions,
410   and you may need to create it with ``xcode-select -install``
411
412 .. _install_cmake_windows:
413
414 Windows-specific instructions
415 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
416
417 The best solution to get SimGrid working on windows is to install the
418 Ubuntu subsystem of Windows 10. All of SimGrid (but the model checker)
419 works in this setting.
420
421 Native builds not very well supported. Have a look to our `appveypor
422 configuration file
423 <https://framagit.org/simgrid/simgrid/blob/master/.appveyor.yml>`_ to
424 see how we manage to use mingw-64 to build the DLL that the Java file
425 needs.
426
427 The drawback of MinGW-64 is that the produced DLL are not compatible
428 with MS Visual C. Some clang-based tools seem promising to fix this,
429 but this is of rather low priority for us. It it's important for you
430 and if you get it working, please @ref community_contact "tell us".
431
432 Python-specific instructions
433 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
434
435 Once you have the Python development headers installed as well as a
436 recent version of the `pybind11 <https://pybind11.readthedocs.io/en/stable/>` 
437 module (version at least 2.4), recompiling the Python bindings from
438 the source should be as easy as: 
439
440 .. code-block:: shell
441
442   # cd simgrid-source-tree
443   python setup.py build install
444   
445 Starting with SimGrid 3.13, it should even be possible to install
446 simgrid without downloading the source with pip:
447
448 .. code-block:: shell
449
450   pip install simgrid
451
452 Java-specific instructions
453 ^^^^^^^^^^^^^^^^^^^^^^^^^^
454
455 Once you have the `full JDK <http://www.oracle.com/technetwork/java/javase/downloads>`_ installed,
456 things should be as simple as:
457
458 .. code-block:: shell
459
460    cmake -Denable_java=ON -Dminimal-bindings=ON .
461    make  simgrid-java_jar # Only build the jarfile
462
463 After the compilation, the file ```simgrid.jar``` is produced in the
464 root directory.
465
466 **Troubleshooting Java Builds**
467
468 Sometimes, the build system fails to find the JNI headers. First locate them as follows:
469
470 .. code-block:: shell
471
472   $ locate jni.h
473   /usr/lib/jvm/java-8-openjdk-amd64/include/jni.h
474   /usr/lib/jvm/java-9-openjdk-amd64/include/jni.h
475   /usr/lib/jvm/java-10-openjdk-amd64/include/jni.h
476
477
478 Then, set the JAVA_INCLUDE_PATH environment variable to the right
479 path, and relaunch cmake. If you have several versions of JNI installed
480 (as above), pick the one corresponding to the report of
481 ``javac -version``
482
483 .. code-block:: shell
484
485   export JAVA_INCLUDE_PATH=/usr/lib/jvm/java-8-openjdk-amd64/include/
486   cmake -Denable_java=ON .
487   make
488
489 Note that the filename ```jni.h``` was removed from the path.
490
491 Linux Multi-Arch specific instructions
492 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
493
494 On a multiarch x86_64 Linux, it should be possible to compile a 32-bit
495 version of SimGrid with something like:
496
497 .. code-block:: shell
498
499   CFLAGS=-m32 \
500   CXXFLAGS=-m32 \
501   PKG_CONFIG_LIBDIR=/usr/lib/i386-linux-gnu/pkgconfig/ \
502   cmake . \
503   -DCMAKE_SYSTEM_PROCESSOR=i386 \
504   -DCMAKE_Fortran_COMPILER=/some/path/to/i686-linux-gnu-gfortran \
505   -DGFORTRAN_EXE=/some/path/to/i686-linux-gnu-gfortran \
506   -DCMAKE_Fortran_FLAGS=-m32
507
508 If needed, implement ``i686-linux-gnu-gfortran`` as a script:
509
510 .. code-block:: shell
511
512   #!/usr/bin/env sh
513   exec gfortran -m32 "$@"
514