go/src/pkg
Russ Cox ee7bb07a53 runtime: add copy of math.sqrt for use by arm softfloat
If it's not used (such as on other systems or if softfloat
is disabled) the linker will discard it.

The alternative is to teach cmd/go that every binary
depends on math implicitly on arm. I started down that
path but it's too scary. If we're going to get dependencies
right we should get dependencies right.

Fixes #6994.

LGTM=bradfitz, dave
R=golang-codereviews, bradfitz, dave
CC=golang-codereviews
https://golang.org/cl/95290043
2014-05-12 10:55:33 -04:00
..
archive archive/zip: Document ModTime is always UTC 2014-05-04 23:00:47 -04:00
bufio all: spelling tweaks, A-G 2014-04-29 12:44:40 -04:00
builtin
bytes bytes: fix typos 2014-05-10 07:13:42 +09:00
compress all: spelling tweaks, A-G 2014-04-29 12:44:40 -04:00
container std lib: fix various typos in comments 2014-05-02 13:17:55 -07:00
crypto crypto/aes: fix overrun in assembly encrypt/decrypt 2014-05-09 15:40:55 -04:00
database/sql database/sql: fix accounting of open connections 2014-05-07 11:54:29 -07:00
debug all: spelling tweaks, A-G 2014-04-29 12:44:40 -04:00
encoding encoding/binary: document that Read requires exported struct fields 2014-05-09 14:19:21 -07:00
errors
expvar all: spelling tweaks, A-G 2014-04-29 12:44:40 -04:00
flag flag: document that Bool also accepts "T" and "F" 2014-04-16 17:14:48 -07:00
fmt all: spelling tweaks, A-G 2014-04-29 12:44:40 -04:00
go go/build: add go1.3 release tag 2014-05-01 12:16:03 -04:00
hash all: merge NaCl branch (part 1) 2014-02-25 09:47:42 -05:00
html html: fix small typo 2014-05-01 16:29:34 -04:00
image image/png: fix crash when an alleged PNG has too much pixel data, 2014-04-16 12:18:57 +10:00
index/suffixarray
io io: document that a Writer must not write to p 2014-04-15 17:14:03 -07:00
log log/syslog: document if network=="" for Dial, it will connect to local syslog server. 2014-04-28 14:29:45 -04:00
math math/cmplx: specify which square root Sqrt returns 2014-05-09 16:04:03 -04:00
mime all: fix typos 2014-04-16 16:57:25 -07:00
net net/rpc: do not leak client socket on closed connection 2014-05-11 14:46:44 -07:00
os os: cut limited read to 1 GB 2014-05-02 12:12:40 -04:00
path path/filepath: fixed misaligned comment. 2014-03-11 14:34:07 -07:00
reflect pkg/reflect/value.go: Correction in comment, the argument is "typ", not "t". 2014-04-18 08:11:31 -07:00
regexp std lib: fix various typos in comments 2014-05-02 13:17:55 -07:00
runtime runtime: add copy of math.sqrt for use by arm softfloat 2014-05-12 10:55:33 -04:00
sort std lib: fix various typos in comments 2014-05-02 13:17:55 -07:00
strconv strconv: CanBackquote should reject \x7F 2014-03-19 10:16:48 +11:00
strings net/http, strings, bytes: fix http race, revert part of Reader behavior change 2014-04-25 06:44:51 -07:00
sync sync: less agressive local caching in Pool 2014-04-14 21:13:32 +04:00
syscall syscall: add missing TIOCGSID for openbsd/386 2014-05-06 07:22:10 +09:00
testing testing: write profiles on failure 2014-05-09 12:18:50 -04:00
text text/template: say more often that templates are safe for parallel execution 2014-04-15 08:48:40 -07:00
time std lib: fix various typos in comments 2014-05-02 13:17:55 -07:00
unicode unicode: fix doc typo 2014-05-11 22:06:00 -07:00
unsafe