1. 23 Feb, 2011 21 commits
  2. 22 Feb, 2011 10 commits
  3. 21 Feb, 2011 5 commits
  4. 20 Feb, 2011 1 commit
  5. 19 Feb, 2011 2 commits
  6. 18 Feb, 2011 1 commit
    • Dave Cheney's avatar
      build: reduce the use of subshells in recursive make · 8a8ecda5
      Dave Cheney authored
      Using make -C $* rather than (cd $* ; make) results in a small,
      but measurable improvement in build times where compilation is
      not the major component. eg.
      
      before - ~/go/src/pkg$ time make
              real	0m1.176s
              user	0m0.639s
              sys	0m0.399s
      after - ~/go/src/pkg$ time make
              real	0m0.916s
              user	0m0.571s
              sys	0m0.243s
      
      There are other places in the distribution src/make.common for example
      that could also benefit from this change.
      
      R=adg
      CC=golang-dev, rsc
      https://golang.org/cl/4174055
      8a8ecda5