1. 30 Jul, 2010 1 commit
  2. 24 Nov, 2009 1 commit
    • Sergio Luis O. B. Correia's avatar
      go: makes it build for the case $GOROOT has whitespaces · 6fc82072
      Sergio Luis O. B. Correia authored
      the bash scripts and makefiles for building go didn't take into account
      the fact $GOROOT / $GOBIN could both be directories containing whitespaces,
      and was not possible to build it in such a situation.
      
      this commit adjusts the various makefiles/scripts to make it aware of that
      possibility, and now it builds successfully when using a path with whitespaces
      as well.
      
      Fixes #115.
      
      R=rsc, dsymonds1
      https://golang.org/cl/157067
      6fc82072
  3. 17 Nov, 2009 1 commit
    • Devon H. O'Dell's avatar
      FreeBSD-specific porting work. · 0489a260
      Devon H. O'Dell authored
      cgo/libmach remain unimplemented. However, compilers, runtime,
      and packages are 100%. I still need to go through and implement
      missing syscalls (at least make sure they're all listed), but
      for all shipped functionality, this is done. Ship! ;)
      
      R=rsc, VenkateshSrinivas
      https://golang.org/cl/152142
      0489a260
  4. 22 Oct, 2009 1 commit
  5. 03 Oct, 2009 1 commit
    • Russ Cox's avatar
      clean more · 11d38055
      Russ Cox authored
      R=r
      DELTA=40  (9 added, 3 deleted, 28 changed)
      OCL=35277
      CL=35305
      11d38055
  6. 22 Sep, 2009 1 commit
    • Russ Cox's avatar
      use $(shell uname) instead of $GOOS when · 586d9d5a
      Russ Cox authored
      deciding what the host process support is.
      this makes a cross-compiling (e.g., GOOS=nacl) build
      still generate valid host debugger binaries.
      
      R=r
      DELTA=5  (0 added, 0 deleted, 5 changed)
      OCL=34878
      CL=34889
      586d9d5a
  7. 14 Aug, 2009 1 commit
  8. 28 Jul, 2009 1 commit
  9. 18 Nov, 2008 1 commit
  10. 14 Nov, 2008 1 commit
    • Russ Cox's avatar
      code coverage tool · 7832ab5b
      Russ Cox authored
      	$ 6cov -g 235.go 6.out
      	235.go:62,62 main·main 0x27c9-0x2829 MOVL	$main·.stringo(SB),AX
      	235.go:30,30 main·main 0x2856-0x285e ADDQ	$6c0,SP
      	$
      
      and assorted fixes.
      
      R=r
      DELTA=743  (732 added, 8 deleted, 3 changed)
      OCL=19226
      CL=19243
      7832ab5b
  11. 24 Sep, 2008 1 commit
    • Rob Pike's avatar
      rudimentary real-time profiler. · eea21f8b
      Rob Pike authored
      tested on mac only.
      output like this:
      	tubenose=% sudo go/src/cmd/prof/6prof -p 71839 -c  -d 10
      	63.93%	mach_semaphore_signal
      	 4.64%	sys·chansend1
      	 3.93%	chanrecv
      	 2.86%	semrelease
      	 1.43%	cas
      	 1.43%	sendchan
      	 1.07%	xadd
      	 0.71%	main·f
      	 0.71%	scheduler
      	 0.71%	sys·gosched
      	 0.71%	dequeue
      	 ...
      
      R=rsc
      DELTA=361  (361 added, 0 deleted, 0 changed)
      OCL=15731
      CL=15736
      eea21f8b
  12. 04 Aug, 2008 2 commits
    • Russ Cox's avatar
      add nm · 7b377140
      Russ Cox authored
      R=r
      DELTA=339  (339 added, 0 deleted, 0 changed)
      OCL=13786
      CL=13794
      7b377140
    • Russ Cox's avatar
      Use a single Make.conf for setting CC, etc. · 34514bdb
      Russ Cox authored
      This makes it easy to build with other flags
      (like -ggdb) or other compilers (like cc64).
      
      R=r
      DELTA=45  (6 added, 22 deleted, 17 changed)
      OCL=13790
      CL=13793
      34514bdb
  13. 26 Jun, 2008 4 commits
  14. 12 Jun, 2008 2 commits