Skip to content
Snippets Groups Projects
Commit 33a1ee9b authored by Jan Frenzel's avatar Jan Frenzel
Browse files

Formatted building_software.md; added missing shell prefixes.

Closes #215.
parent 3dfb6e3f
No related branches found
No related tags found
3 merge requests!412Manual attempt to merge preview into main,!402Solved issue-194. Added missing information regarding usage of SSH config for...,!401Reduce the number of matches of forbidden patterns
# Building Software # Building Software
While it is possible to do short compilations on the login nodes, it is While it is possible to do short compilations on the login nodes, it is generally considered good
generally considered good practice to use a job for that, especially practice to use a job for that, especially when using many parallel make processes. Note that
when using many parallel make processes. Note that starting on December starting on December 6th 2016, the `/projects` filesystem will be mounted read-only on all compute
6th 2016, the /projects file system will be mounted read-only on all nodes in order to prevent users from doing large I/O there (which is what the `/scratch` is for).
compute nodes in order to prevent users from doing large I/O there In consequence, you cannot compile in `/projects` within a job anymore. If you wish to install
(which is what the /scratch is for). In consequence, you cannot compile software for your project group anyway, you can use a build directory in the `/scratch` filesystem
in /projects within a job anymore. If you wish to install software for instead:
your project group anyway, you can use a build directory in the /scratch
file system instead: Every sane build system should allow you to keep your source code tree and your build directory
separate, some even demand them to be different directories. Plus, you can set your installation
Every sane build system should allow you to keep your source code tree prefix (the target directory) back to your `/projects` folder and do the "make install" step on the
and your build directory separate, some even demand them to be different login nodes.
directories. Plus, you can set your installation prefix (the target
directory) back to your /projects folder and do the "make install" step For instance, when using CMake and keeping your source in `/projects`, you could do the following:
on the login nodes.
```console
For instance, when using CMake and keeping your source in /projects, you # save path to your source directory:
could do the following: marie@login$ export SRCDIR=/projects/p_myproject/mysource
# save path to your source directory: # create a build directory in /scratch:
export SRCDIR=/projects/p_myproject/mysource marie@login$ mkdir /scratch/p_myproject/mysoftware_build
# create a build directory in /scratch: # change to build directory within /scratch:
mkdir /scratch/p_myproject/mysoftware_build marie@login$ cd /scratch/p_myproject/mysoftware_build
# change to build directory within /scratch: # create Makefiles:
cd /scratch/p_myproject/mysoftware_build marie@login$ cmake -DCMAKE_INSTALL_PREFIX=/projects/p_myproject/mysoftware $SRCDIR
# create Makefiles: # build in a job:
cmake -DCMAKE_INSTALL_PREFIX=/projects/p_myproject/mysoftware $SRCDIR marie@login$ srun --mem-per-cpu=1500 --cpus-per-task=12 --pty make -j 12
# build in a job: # do the install step on the login node again:
srun --mem-per-cpu=1500 -c 12 --pty make -j 12 marie@login$ make install
```
# do the install step on the login node again:
make install As a bonus, your compilation should also be faster in the parallel `/scratch` filesystem than it
would be in the comparatively slow NFS-based `/projects` filesystem.
As a bonus, your compilation should also be faster in the parallel
/scratch file system than it would be in the comparatively slow
NFS-based /projects file system.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment