Note: To prevent this you can also use the WSL setup.
The compilation especially of the processes in Release-config can be very memory hungry. Using dynamic Eigen shape matrices can reduce memory usage:
cmake . -DOGS_EIGEN_DYNAMIC_SHAPE_MATRICES=ON
You should also have at least 8 GB of RAM and even this can be not enough when compiling on multiple cores (which is the default). To build on only one core run the following in your build-directory:
cmake --build . --config Release -j 1
If this still fails you can disable building of the failing processes, e.g.:
cmake . -DOGS_BUILD_PROCESS_HT=OFF
cmake --build . --config Release -j 1
This article was written by Lars Bilke. If you are missing something or you find an error please let us know.
Generated with Hugo 0.64.1. Last revision: May 15, 2020
Commit: [web] Added docs on WSL usage. debad07eb
| Edit this page on