When running colcon build --parallel-workers 1 on cpp code the number of compiler threads is not 1.
To have the "expected" behaviour I should run instead
export MAKEFLAGS=-j1
colcon build --parallel-workers 1
Is this behaviour intended?
Is it possible to cite this fact directly in the colcon documentation?
Thank you very much!
When running
colcon build --parallel-workers 1on cpp code the number of compiler threads is not 1.To have the "expected" behaviour I should run instead
Is this behaviour intended?
Is it possible to cite this fact directly in the colcon documentation?
Thank you very much!