Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
document our policy for version numbering
[simgrid.git] / docs / source / Installing_SimGrid.rst
1 .. Copyright 2005-2019
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 compatiblity 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++11 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.
248
249 enable_jedule (on/OFF)
250   Produces execution traces from SimDag simulations, which can then be visualized with the
251   Jedule external tool.
252
253 enable_lua (on/OFF)
254   Generate the lua bindings to the SimGrid internals (requires lua-5.3).
255
256 enable_lib_in_jar (ON/off)
257   Embeds the native java bindings into the produced jar file.
258
259 enable_lto (ON/off)
260   Enables the *Link Time Optimization* in the C++ compiler.
261   This feature really speeds up the code produced, but it is fragile
262   with older gcc versions.
263
264 enable_maintainer_mode (on/OFF)
265   (dev only) Regenerates the XML parsers whenever the DTD is modified (requires flex and flexml).
266
267 enable_mallocators (ON/off)
268   Activates our internal memory caching mechanism. This produces faster
269   code, but it may fool the debuggers.
270
271 enable_model-checking (on/OFF)
272   Activates the formal verification mode. This will **hinder
273   simulation speed** even when the model checker is not activated at
274   run time.
275
276 enable_ns3 (on/OFF)
277   Activates the ns-3 bindings. See section :ref:`model_ns3`.
278
279 enable_smpi (ON/off)
280   Allows one to run MPI code on top of SimGrid.
281
282 enable_smpi_ISP_testsuite (on/OFF)
283   Adds many extra tests for the model checker module.
284
285 enable_smpi_MPICH3_testsuite (on/OFF)
286   Adds many extra tests for the MPI module.
287
288 minimal-bindings (on/OFF)
289   Take as few optional dependencies as possible, to get minimal
290   library bindings in Java and Python.
291
292 Reset the build configuration
293 """""""""""""""""""""""""""""
294
295 To empty the CMake cache (either when you add a new library or when
296 things go seriously wrong), simply delete your ``CMakeCache.txt``. You
297 may also want to directly edit this file in some circumstances.
298
299 .. _install_cmake_outsrc:
300
301 Out of Tree Compilation
302 ^^^^^^^^^^^^^^^^^^^^^^^
303
304 By default, the files produced during the compilation are placed in
305 the source directory. It is however often better to put them all in a
306 separate directory: cleaning the tree becomes as easy as removing this
307 directory, and you can have several such directories to test several
308 parameter sets or architectures.
309
310 For that, go to the directory where the files should be produced, and
311 invoke cmake (or ccmake) with the full path to the SimGrid source as
312 last argument.
313
314 .. code-block:: shell
315
316   mkdir build
317   cd build
318   cmake [options] ..
319   make
320
321 Existing Compilation Targets
322 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
323
324 In most cases, compiling and installing SimGrid is enough:
325
326 .. code-block:: shell
327
328   make
329   make install # try "sudo make install" if you don't have the permission to write
330
331 In addition, several compilation targets are provided in SimGrid. If
332 your system is well configured, the full list of targets is available
333 for completion when using the ``Tab`` key. Note that some of the
334 existing targets are not really for public consumption so don't worry
335 if some do not work for you.
336
337 - **make**: Build the core of SimGrid that gets installed, but not any example.
338 - **make tests**: Build the tests and examples.
339 - **make simgrid**: Build only the SimGrid library. Not any example nor the helper tools.
340 - **make s4u-app-pingpong**: Build only this example (works for any example)
341 - **make java-all**: Build all Java examples and their dependencies
342 - **make clean**: Clean the results of a previous compilation
343 - **make install**: Install the project (doc/ bin/ lib/ include/)
344 - **make uninstall**: Uninstall the project (doc/ bin/ lib/ include/)
345 - **make dist**: Build a distribution archive (tar.gz)
346 - **make distcheck**: Check the dist (make + make dist + tests on the distribution)
347 - **make documentation**: Create SimGrid documentation
348
349 If you want to see what is really happening, try adding ``VERBOSE=1`` to
350 your compilation requests:
351
352 .. code-block:: shell
353
354   make VERBOSE=1
355
356 .. _install_src_test:
357
358 Testing your build
359 ^^^^^^^^^^^^^^^^^^
360
361 Once everything is built, you may want to test the result. SimGrid
362 comes with an extensive set of regression tests (as described in the
363 @ref inside_tests "insider manual"). The tests are not built by
364 default, so you first have to build them with ``make tests``. You can
365 then run them with ``ctest``, that comes with CMake.  We run them
366 every commit and the results are on `our Jenkins <https://ci.inria.fr/simgrid/>`_.
367
368 .. code-block:: shell
369
370   make tests                # Build the tests
371   ctest                     # Launch all tests
372   ctest -R s4u              # Launch only the tests whose names match the string "s4u"
373   ctest -j4                 # Launch all tests in parallel, at most 4 concurrent jobs
374   ctest --verbose           # Display all details on what's going on
375   ctest --output-on-failure # Only get verbose for the tests that fail
376
377   ctest -R s4u -j4 --output-on-failure # You changed S4U and want to check that you didn't break anything, huh?
378                                        # That's fine, I do so all the time myself.
379
380 .. _install_cmake_mac:
381
382 macOS-specific instructions
383 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
384
385 SimGrid compiles like a charm with clang (version 3.0 or higher) on macOS:
386
387 .. code-block:: shell
388
389   cmake -DCMAKE_C_COMPILER=/path/to/clang -DCMAKE_CXX_COMPILER=/path/to/clang++ .
390   make
391
392
393 Troubleshooting your macOS build.
394
395 CMake Error: Parse error in cache file build_dir/CMakeCache.txt. Offending entry: /SDKs/MacOSX10.8.sdk
396   This was reported with the XCode version of clang 4.1. The work
397   around is to edit the ``CMakeCache.txt`` file directly, to change
398   the following entry:
399
400   ``CMAKE_OSX_SYSROOT:PATH=/Applications/XCode.app/Contents/Developer/Platforms/MacOSX.platform/Developer``
401
402   You can safely ignore the warning about "-pthread" not being used, if it appears.
403
404 /usr/include does not seem to exist
405   This directory does not exist by default on modern macOS versions,
406   and you may need to create it with ``xcode-select -install``
407
408 .. _install_cmake_windows:
409
410 Windows-specific instructions
411 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
412
413 The best solution to get SimGrid working on windows is to install the
414 Ubuntu subsystem of Windows 10. All of SimGrid (but the model checker)
415 works in this setting.
416
417 Native builds not very well supported. Have a look to our `appveypor
418 configuration file
419 <https://framagit.org/simgrid/simgrid/blob/master/.appveyor.yml>`_ to
420 see how we manage to use mingw-64 to build the DLL that the Java file
421 needs.
422
423 The drawback of MinGW-64 is that the produced DLL are not compatible
424 with MS Visual C. Some clang-based tools seem promising to fix this,
425 but this is of rather low priority for us. It it's important for you
426 and if you get it working, please @ref community_contact "tell us".
427
428 Python-specific instructions
429 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
430
431 Recompiling the Python bindings from the source should be as easy as:
432
433 .. code-block:: shell
434
435   # cd simgrid-source-tree
436   python setup.py build install
437   
438 Starting with SimGrid 3.13, it should even be possible to install
439 simgrid without downloading the source with pip:
440
441 .. code-block:: shell
442
443   pip install simgrid
444
445 Java-specific instructions
446 ^^^^^^^^^^^^^^^^^^^^^^^^^^
447
448 Once you have the `full JDK <http://www.oracle.com/technetwork/java/javase/downloads>`_ installed,
449 things should be as simple as:
450
451 .. code-block:: shell
452
453    cmake -Denable_java=ON -Dminimal-bindings=ON .
454    make  simgrid-java_jar # Only build the jarfile
455
456 After the compilation, the file ```simgrid.jar``` is produced in the
457 root directory.
458
459 **Troubleshooting Java Builds**
460
461 Sometimes, the build system fails to find the JNI headers. First locate them as follows:
462
463 .. code-block:: shell
464
465   $ locate jni.h
466   /usr/lib/jvm/java-8-openjdk-amd64/include/jni.h
467   /usr/lib/jvm/java-9-openjdk-amd64/include/jni.h
468   /usr/lib/jvm/java-10-openjdk-amd64/include/jni.h
469
470
471 Then, set the JAVA_INCLUDE_PATH environment variable to the right
472 path, and relaunch cmake. If you have several versions of JNI installed
473 (as above), pick the one corresponding to the report of
474 ``javac -version``
475
476 .. code-block:: shell
477
478   export JAVA_INCLUDE_PATH=/usr/lib/jvm/java-8-openjdk-amd64/include/
479   cmake -Denable_java=ON .
480   make
481
482 Note that the filename ```jni.h``` was removed from the path.
483
484 Linux Multi-Arch specific instructions
485 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
486
487 On a multiarch x86_64 Linux, it should be possible to compile a 32-bit
488 version of SimGrid with something like:
489
490 .. code-block:: shell
491
492   CFLAGS=-m32 \
493   CXXFLAGS=-m32 \
494   PKG_CONFIG_LIBDIR=/usr/lib/i386-linux-gnu/pkgconfig/ \
495   cmake . \
496   -DCMAKE_SYSTEM_PROCESSOR=i386 \
497   -DCMAKE_Fortran_COMPILER=/some/path/to/i686-linux-gnu-gfortran \
498   -DGFORTRAN_EXE=/some/path/to/i686-linux-gnu-gfortran \
499   -DCMAKE_Fortran_FLAGS=-m32
500
501 If needed, implement ``i686-linux-gnu-gfortran`` as a script:
502
503 .. code-block:: shell
504
505   #!/usr/bin/env sh
506   exec gfortran -m32 "$@"
507