Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Clarify in debug message that SMPI processes are meant, not SIMIX.
[simgrid.git] / BuildSimGrid.sh
1 #!/usr/bin/env sh
2 #
3 # This little script rebuilds and runs the SimGrid archive in parallel, extracting a log
4 # This is almost an internal script, but others may find this useful
5 #
6 # Copyright (C) 2017 The SimGrid Team. Licence: LGPL of WDFPL, as you want.
7
8 (
9   (nice make -j4 || make) && nice ctest -j4 --output-on-failure ; date
10 ) 2>&1 | tee BuildSimGrid.sh.log
11 exit 0