Logo AND Algorithmique Numérique Distribuée

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