Logo AND Algorithmique Numérique Distribuée

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