An error occurred fetching the project authors.
  1. 07 Aug, 2009 1 commit
  2. 05 Aug, 2009 2 commits
  3. 04 Aug, 2009 1 commit
  4. 31 Jul, 2009 1 commit
  5. 30 Jul, 2009 1 commit
    • Russ Cox's avatar
      typechecking checkpoint. · ff3a73b4
      Russ Cox authored
      started to move typechecking to another file.
      can build entire tree still, but lots of work
      is duplicated.  much to clean up.
      
      R=ken
      OCL=32536
      CL=32543
      ff3a73b4
  6. 29 Jul, 2009 1 commit
  7. 07 Jul, 2009 1 commit
  8. 21 May, 2009 1 commit
  9. 12 May, 2009 1 commit
  10. 08 May, 2009 1 commit
  11. 31 Mar, 2009 3 commits
  12. 30 Mar, 2009 1 commit
  13. 13 Mar, 2009 1 commit
  14. 06 Mar, 2009 1 commit
    • Russ Cox's avatar
      new approach for generating sysimport.c · af678a59
      Russ Cox authored
      (renamed to avoid any conflict with old p4 copies).
      
      this approach doesn't require auto-generating
      files also kept in p4, so it should be easier on
      go users who don't sync very often.
      
      this approach will be more work for go developers:
      builtin.c needs to be copied to builtin.c.boot in p4
      as new functions are added.  mkbuiltin does this
      for certain $USERs to help us remember.
      
      R=r
      DELTA=343  (176 added, 162 deleted, 5 changed)
      OCL=25803
      CL=25805
      af678a59
  15. 05 Mar, 2009 1 commit
  16. 06 Jan, 2009 1 commit
    • Russ Cox's avatar
      make acid build with bison. · 859ba57b
      Russ Cox authored
      ask for bison explicitly in cc, gc to try to
      avoid problems with other yaccs that
      might be installed.
      
      R=r
      DELTA=29  (10 added, 2 deleted, 17 changed)
      OCL=22110
      CL=22113
      859ba57b
  17. 19 Dec, 2008 1 commit
  18. 11 Dec, 2008 1 commit
  19. 09 Dec, 2008 1 commit
  20. 02 Dec, 2008 2 commits
  21. 03 Oct, 2008 1 commit
    • Russ Cox's avatar
      new import/export format · b8babed7
      Russ Cox authored
          package flag
      	export type flag.Flag struct { name flag.string; usage flag.string; \
      		value flag.Value; next *flag.Flag }
      	type flag.string string
      	type flag.Value interface { AsBool () (? *flag.BoolValue); \
      		AsInt () (? *flag.IntValue); AsString () (? *flag.StringValue); \
      		IsBool () (? flag.bool); IsInt () (? flag.bool); IsString () (? flag.bool); \
      		Str () (? flag.string); ValidValue (str flag.string) (? flag.bool) }
      	type flag.BoolValue struct { val flag.bool; p *flag.bool }
      	type flag.IntValue struct { val flag.int64; p *flag.int64 }
      	type flag.StringValue struct { val flag.string; p *flag.string }
      	type flag.bool bool
      	func (e *flag.StringValue) AsBool () (? *flag.BoolValue)
      	func (e *flag.StringValue) AsInt () (? *flag.IntValue)
      	...
      
      the \ continuations are for this message, not real.
      
      changed delimiter for import from (( )) to $$ $$.
      
      replaced mksys.bash with mksys.c
      
      changed sys.go to use leading export,
      	fake package name is now SYS not foop
      
      don't always require ; on forward func decls
      
      R=ken,r
      DELTA=1827  (446 added, 1083 deleted, 298 changed)
      OCL=16433
      CL=16463
      b8babed7
  22. 22 Sep, 2008 1 commit
    • Russ Cox's avatar
      better yacc rule in Makefile · b676b0e1
      Russ Cox authored
      if y.tab.c is older than y.tab.h, make
      interprets doing nothing as a failure,
      because y.tab.c hasn't been updated.
      so update it.
      
      R=r
      DELTA=4  (0 added, 0 deleted, 4 changed)
      OCL=15615
      CL=15622
      b676b0e1
  23. 18 Sep, 2008 1 commit
    • Russ Cox's avatar
      make Makefiles safe for parallel make · 76036192
      Russ Cox authored
      use -j4 (4-way parallel) in make.bash.
      
      halves time for make.bash on r45
      
      also add libregexp, acid to default build
      
      R=r
      DELTA=90  (39 added, 37 deleted, 14 changed)
      OCL=15485
      CL=15487
      76036192
  24. 10 Aug, 2008 1 commit
    • Ken Thompson's avatar
      mp fixed arith · 272ae659
      Ken Thompson authored
      R=r
      DELTA=149  (80 added, 62 deleted, 7 changed)
      OCL=14029
      CL=14029
      272ae659
  25. 09 Aug, 2008 1 commit
    • Ken Thompson's avatar
      mp constants · 9c2ade35
      Ken Thompson authored
      R=r
      DELTA=381  (142 added, 26 deleted, 213 changed)
      OCL=14011
      CL=14016
      9c2ade35
  26. 04 Aug, 2008 1 commit
  27. 14 Jun, 2008 1 commit
  28. 12 Jun, 2008 4 commits