User:JoeyArmstrong/makefiles/main

From MozillaWiki
< User:JoeyArmstrong‎ | makefiles
Revision as of 17:14, 8 December 2011 by JoeyArmstrong (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Makefile Ramblings

Performance & Bottlenecks

Problems

  • bug 623617 Non-recursive builds Makefilegen
  • Dependency builds - Make run twice in a sandbox should be a nop.
  • Needless work: *clean targets are performing build related work
    • autoconf, configure, isinstall, etc are a few tasks currently being triggered
  • windows -vs- horrible overhead per shell spawned
    • Replace double-colon rules with dependency chains to avoid shell overhead.

Resources

Bugs

make-makefile