Logo AND Algorithmique Numérique Distribuée

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