- 21 Dec, 2011 26 commits
-
-
Russ Cox authored
TBR=golang-dev CC=golang-dev https://golang.org/cl/5504056
-
Russ Cox authored
R=lvd CC=golang-dev https://golang.org/cl/5500060
-
Russ Cox authored
This lets us mark net's cgo_stub.go as only to be built when cgo is disabled. R=golang-dev, ality, mikioh.mikioh CC=golang-dev https://golang.org/cl/5489100
-
Roger Peppe authored
R=rsc CC=golang-dev https://golang.org/cl/5501053
-
Russ Cox authored
R=golang-dev CC=golang-dev https://golang.org/cl/5500061
-
Russ Cox authored
TBR=golang-dev CC=golang-dev https://golang.org/cl/5489102
-
Anthony Martin authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5503057
-
Russ Cox authored
* correct dependency calculations * comment meaning of action fields * new alias "std" like "all" but standard packages only * add -o flag to 'go build' * set up for parallel build (still serial) * understand that import "C" depends on cgo, runtime/cgo R=golang-dev, mikioh.mikioh CC=golang-dev https://golang.org/cl/5502055
-
Mikio Hara authored
This CL makes both InterfaceAddrs and Addrs method on Interface return IPNet struct for representing interface address and mask like below: interface "lo0": flags "up|loopback|multicast", ifindex 1, mtu 16384 interface address "fe80::1/64" interface address "127.0.0.1/8" interface address "::1/128" joined group address "ff02::fb" joined group address "224.0.0.251" joined group address "ff02::2:65d0:d71e" joined group address "224.0.0.1" joined group address "ff01::1" joined group address "ff02::1" joined group address "ff02::1:ff00:1" Fixes #2571. R=rsc CC=golang-dev https://golang.org/cl/5489062
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5502056
-
Mikio Hara authored
R=rsc CC=golang-dev https://golang.org/cl/5505053
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/5500059
-
Joel Sing authored
R=golang-dev, mikioh.mikioh CC=golang-dev https://golang.org/cl/5501052
-
Andrew Gerrand authored
R=dsymonds, rsc CC=golang-dev https://golang.org/cl/5505054
-
Russ Cox authored
Should help windows/amd64 R=adg CC=golang-dev https://golang.org/cl/5500058
-
Andrew Gerrand authored
R=golang-dev, dsymonds, adg CC=golang-dev https://golang.org/cl/5500057
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5489099
-
Alex Brainman authored
R=rsc CC=golang-dev https://golang.org/cl/5502054
-
Andrew Gerrand authored
dashboard: record run time R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5504054
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5503056
-
Andrew Gerrand authored
This CL contains no code changes. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5498056
-
Andrew Gerrand authored
R=rsc, adg CC=golang-dev https://golang.org/cl/5490081
-
Mikio Hara authored
R=rsc, golang-dev CC=golang-dev https://golang.org/cl/5504053
-
Russ Cox authored
TBR=r CC=golang-dev https://golang.org/cl/5505052
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5503054
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5505050
-
- 20 Dec, 2011 14 commits
-
-
Brad Fitzpatrick authored
OS X 10.6 doesn't do O_CLOEXEC. OS X 10.7 does. For now, always fall back to using syscall.CloseOnExec on darwin. This can removed when 10.6 is old news, or if we find a way to cheaply & reliably detect 10.6 vs 10.7 at runtime. Fixes #2587 R=golang-dev, rsc, iant CC=golang-dev https://golang.org/cl/5500053
-
Brad Fitzpatrick authored
R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/5502051
-
Nigel Tao authored
R=r, rsc CC=golang-dev https://golang.org/cl/5493084
-
Nigel Tao authored
Also recognize that, in the latest version of the HTML5 spec, foreign content is not an insertion mode, but a separate concern. Pass tests10.dat, test 13: <!DOCTYPE html><body><table><caption><svg><g>foo</g><g>bar</g><p>baz</table><p>quux | <!DOCTYPE html> | <html> | <head> | <body> | <table> | <caption> | <svg svg> | <svg g> | "foo" | <svg g> | "bar" | <p> | "baz" | <p> | "quux" Also pass tests through test 15: <!DOCTYPE html><body><table><colgroup><svg><g>foo</g><g>bar</g><p>baz</table><p>quux R=andybalholm CC=golang-dev https://golang.org/cl/5494078
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5498055
-
Russ Cox authored
TBR=r CC=golang-dev https://golang.org/cl/5503052
-
Brad Fitzpatrick authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5505048
-
Rob Pike authored
Fixes #2455. Fixes #2013. R=rsc, r, gri CC=golang-dev https://golang.org/cl/5498053
-
Russ Cox authored
On other systems the temporary directory name will have a .XXXXXX in the middle of it. Oh well. R=bradfitz CC=golang-dev https://golang.org/cl/5504049
-
Russ Cox authored
Missing file during last CL. TBR=r CC=golang-dev https://golang.org/cl/5505047
-
Russ Cox authored
If something goes wrong, it should suffice to set USE_GO_TOOL=false in env.bash to fall back to the makefiles. I will delete the makefiles in January. R=golang-dev, r CC=golang-dev https://golang.org/cl/5502047
-
Russ Cox authored
The commands in the standard tree are now named by the pseudo-import paths cmd/gofmt etc. This avoids ambiguity between cmd/go's directory and go/token's parent directory. R=golang-dev, r CC=golang-dev https://golang.org/cl/5503050
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5489097
-
Russ Cox authored
The functions we generate to implement == on structs or arrays may need to refer to unsafe.Pointer even in safe mode, in order to handle unexported fields contained in other packages' structs. R=ken2 CC=golang-dev https://golang.org/cl/5505046
-