标签: windows makefile gnu-make
我在Windows上使用make 3.81并没有job-server功能,所以为了并行运行我的整个makefile项目,我必须这样做:
make
make all -j 16 MAKE="make -j 16"
这并不意味着最多会有16个工作,因为在Windows 上使3.81 无法限制最大数量,因此我的黑客。
当我的make项目正在运行时,如何获得同时激活的make数量的上限?