User:JoeyArmstrong/makefiles/main: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 17: Line 17:
== Bugs ==
== Bugs ==
* {{bug|623617}} Decursify builds
* {{bug|623617}} Decursify builds
[[User:JoeyArmstrong/makefiles/makemakefile | make-makefile]]

Latest revision as of 17:14, 8 December 2011

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