Re: Please test: patch that makes the build script work in parallel, improves build time

2011-04-29 Thread Elad
On Fri, Apr 29, 2011 at 11:03 AM, Elad wrote: > These patches[1][2] makes it possible to run our build script with the > -j parameter, which makes it use more then one process and thus > improves build time on multi-core systems. > to test, run make -j2 make -j3 or make -j4 (the number is the numb

Junk on build scripts

2011-04-29 Thread Elad
Most build scripts (build.py) that I checked (I checked all except fedorahosted) contains useless conditions, options, functions and imports, which make it really hard for me to improve them. Only two build scripts were good, fp.o and fedoracommunity.org. I checked what happens if I copy the fp.o

Re: Please test: patch that makes the build script work in parallel, improves build time

2011-04-29 Thread Kévin Raymond
On Fri, Apr 29, 2011 at 11:04 AM, Kévin Raymond wrote: > make clean && make all > real    3m6.863s > > make clean && make all Oops, make clean && make -j4 all of course -- websites mailing list websites@lists.fedoraproject.org https://admin.fedoraproject.org/mailman/listinfo/websites

Re: Please test: patch that makes the build script work in parallel, improves build time

2011-04-29 Thread Kévin Raymond
On Fri, Apr 29, 2011 at 10:03 AM, Elad wrote: > These patches[1][2] makes it possible to run our build script with the > -j parameter, which makes it use more then one process and thus > improves build time on multi-core systems. > to test, run make -j2 make -j3 or make -j4 (the number is the numb

Please test: patch that makes the build script work in parallel, improves build time

2011-04-29 Thread Elad
These patches[1][2] makes it possible to run our build script with the -j parameter, which makes it use more then one process and thus improves build time on multi-core systems. to test, run make -j2 make -j3 or make -j4 (the number is the number of allowed jobs, shouldn't be higher then your numbe