Date: Wed, 18 Aug 2004 07:17:01 +0000 (UTC) From: Ruslan Ermilov <ru@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile Message-ID: <200408180717.i7I7H1cD032867@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
ru 2004-08-18 07:17:01 UTC FreeBSD src repository Modified files: . Makefile Log: My take at improving the universe: allow the worlds to be built in parallel. Examples: make universe Build worlds sequentially, each world sequentially. make universe JFLAG=-j4 Build worlds sequentially, each world in parallel. make -j4 universe make -j4 universe JFLAG=-j2 Build four worlds in parallel, each world will be built in parallel too. World parallelization is set to four in the first synopsis, and to two in the second. make -j4 universe JFLAG=-B Build worlds in parallel, each world sequentially. ("world" == buildworld followed by buildkernels.) Prayers: obrien, phk Revision Changes Path 1.308 +16 -11 src/Makefile
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200408180717.i7I7H1cD032867>