summaryrefslogtreecommitdiff
path: root/src/lib9
AgeCommit message (Collapse)AuthorFilesLines
2010-02-08*l/*c: add -V flag to display version numberAndrew Gerrand2-1/+7
R=rsc CC=golang-dev http://codereview.appspot.com/204044
2010-01-18build: move GOOS, GOARCH, GOROOT lookup into central library.Russ Cox2-0/+39
bake default values in during build. R=r CC=golang-dev http://codereview.appspot.com/186173
2009-11-30Ports of lib9, libbio and libmach to Windows.Hector Chu9-116/+70
R=rsc http://codereview.appspot.com/157159 Committer: Russ Cox <rsc@golang.org>
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-4/+4
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 issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
2009-11-11two gopack nits.Russ Cox1-13/+0
1. allocate an extra byte for use by write. 2. throw away the code trying to translate uid and gid to names. i suspect it of causing seg faults in some situations, and it is not needed by the compilers. Fixes issue 48. (I hope.) R=r http://codereview.appspot.com/152077
2009-11-10lib9: rip out platform specific code that breaks on pclinuxosRuss Cox1-109/+7
R=r CC=golang-dev http://codereview.appspot.com/154049
2009-10-22fix build after Mercurial move.Russ Cox6-17/+1960
various missing or incorrect files. R=r CC=go-dev http://go/go-review/1014004
2009-08-31convert C runtime to 32-bit runes;Russ Cox2-9/+10
rune now unsigned. R=r DELTA=10 (1 added, 0 deleted, 9 changed) OCL=34140 CL=34146
2009-08-17inline lib9.hRob Pike5-5/+10
R=rsc DELTA=41 (20 added, 2 deleted, 19 changed) OCL=33412 CL=33415
2009-08-13add exitsRob Pike1-0/+34
R=rsc DELTA=2339 (19 added, 2303 deleted, 17 changed) OCL=33239 CL=33253
2009-07-28fmt boundary bugs.Russ Cox1-4/+13
pow10 was giving up too easily. R=r DELTA=4 (0 added, 3 deleted, 1 changed) OCL=32310 CL=32321
2009-07-20fix memset in fmtnull.Russ Cox1-2/+5
R=r DELTA=1 (0 added, 0 deleted, 1 changed) OCL=31863 CL=31870
2008-07-07remove incorrect (!) constsKen Thompson3-11/+11
-r SVN=126198
2008-07-07update to Unicode 5Rob Pike11-1194/+1254
SVN=126184
2008-06-12import the plan 9 libraries libc (lib9) and libbio into the tree.Rob Pike75-0/+7510
remove the dependency on /home/r. SVN=122482