I have a project, which consists of C++ code and uses CMake as build system and above that uses the Catkin tool catkin_make
to build the project. The thing is, it does or does not build depending on weather I use the build option -j
as in catkin_make -j4
. (working only for -j1
) I googled/stackoverflowed already, but could not find out the meaning of this option.
I believe that -j
is often also used in other C++/CMake projects not using Catkin, so maybe someone can give me an expaination.
Thanks!