Parallel Make Output
问题 When running a CMake generated Makefile with multiple processes ( make -jN ), the output often gets messed up like this: [ 8%] [ 8%] [ 9%] Building CXX object App/CMakeFiles/App.dir/src/File1.cpp.o Building CXX object App/CMakeFiles/App.dir/src/File2.cpp.o Building CXX object App/CMakeFiles/App.dir/src/File3.cpp.o I'm not sure, but I think this behavior is also there for Makefiles not generated by CMake. I'd say it happens when multiple processes write to stdout at the same time. I know I'm