Logo AND Algorithmique Numérique Distribuée

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