[Bug libstdc++/33612] make check -jN should fully use N cores
bkoz at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Mon Feb 25 17:29:00 GMT 2008
------- Comment #2 from bkoz at gcc dot gnu dot org 2008-02-25 17:28 -------
Jason has suggested a good idea to fix this without messing about with test
harness issues.
We can just split
make check
up into
make check1
make check2
make check3
make check4
make check5
make check6
...
where the old "make check" is equivalent to make check[1-n] in terms of test
coverage. This will allow
make -j4 check
to run
make check1
make check2
make check3
make check4
all at the same time.
This should speed things up greatly on current hardware.
Seems simple enough: I feel a bit silly for not having thought of this before.
This is of relatively high priority given the time requirement for libstdc++
testing.
-benjamin
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33612
More information about the Gcc-bugs
mailing list