Revert "putting the "drscheme" collection last isn't useful anymore"

This reverts commit 89581f5e21.

Putting "drscheme" last is useful because it avoids having two
places try to compile "drracket" and "drscheme" at the same time,
in which case the "drscheme" place gets stuck waiting on the
"drracket" place. Moving "drscheme" to the end is a hack, but
it improves the build time for 2-4 cores.
This commit is contained in:
Matthew Flatt 2011-09-16 16:28:36 -06:00
parent b79c410e5b
commit 39601cedcf

View File

@ -767,8 +767,9 @@
(with-specified-mode (with-specified-mode
(lambda () (lambda ()
(let ([cct (move-to-begining (list "compiler" "raco" "racket") (let ([cct (move-to-begining (list "compiler" "raco" "racket")
(sort-collections-tree (move-to-end "drscheme"
(collection-tree-map top-level-plt-collects)))]) (sort-collections-tree
(collection-tree-map top-level-plt-collects))))])
(iterate-cct (lambda (cc) (iterate-cct (lambda (cc)
(let ([dir (cc-path cc)] (let ([dir (cc-path cc)]
[info (cc-info cc)]) [info (cc-info cc)])