Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-08-03 | Imported Upstream version 2011.07.29 | Ondřej Surý | 1 | -3/+30 | |
2011-07-18 | Imported Upstream version 2011.07.07 | Ondřej Surý | 1 | -0/+2 | |
2011-06-28 | Imported Upstream version 2011.06.23upstream-weekly/2011.06.23 | Ondřej Surý | 1 | -2/+0 | |
2011-06-10 | Imported Upstream version 2011.06.09upstream-weekly/2011.06.09 | Ondřej Surý | 1 | -2/+1 | |
2011-06-03 | Imported Upstream version 2011.06.02upstream-weekly/2011.06.02 | Ondřej Surý | 1 | -0/+1 | |
2011-05-23 | Imported Upstream version 2011.05.22upstream-weekly/2011.05.22 | Ondřej Surý | 1 | -0/+2 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 1 | -1/+1 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 1 | -2/+36 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 1 | -1/+36 | |
2011-02-18 | Imported Upstream version 2011.02.15upstream/2011.02.15 | Ondřej Surý | 1 | -0/+1 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 1 | -0/+1 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 1 | -0/+97 | |
2010-06-29 | ld: fix implementation of -u | Russ Cox | 1 | -2/+9 | |
R=r CC=golang-dev http://codereview.appspot.com/1678046 | |||||
2010-04-27 | 5l, 6l, 8l, runtime: make -s binaries work | Russ Cox | 1 | -1/+1 | |
5l, 6l, 8l: change ELF header so that strip doesn't destroy binary Fixes issue 261. R=iant, r CC=golang-dev http://codereview.appspot.com/994044 | |||||
2010-02-04 | 6l: move mapped symbol table lower in memory | Andrew Gerrand | 1 | -0/+3 | |
Allows binary to run on some Linux system. Fix for issue 365. R=rsc CC=golang-dev http://codereview.appspot.com/199096 | |||||
2010-02-03 | ld: include main and runtime in the library loop | Russ Cox | 1 | -0/+1 | |
Fixes issue 585. R=r CC=golang-dev http://codereview.appspot.com/195075 | |||||
2010-01-22 | eliminate the package global name space assumption in object files | Russ Cox | 1 | -7/+16 | |
5g/6g/8g: add import statements to export metadata, mapping package path to package name. recognize "" as the path of the package in export metadata. use "" as the path of the package in object symbol names. 5c/6c/8c, 5a/6a/8a: rewrite leading . to "". so that ·Sin means Sin in this package. 5l/6l/8l: rewrite "" in symbol names as object files are read. gotest: handle new symbol names. gopack: handle new import lines in export metadata. Collectively, these changes eliminate the assumption of a global name space in the object file formats. Higher level pieces such as reflect and the computation of type hashes still depend on the assumption; we're not done yet. R=ken2, r, ken3 CC=golang-dev http://codereview.appspot.com/186263 Committer: Russ Cox <rsc@golang.org> | |||||
2010-01-13 | ignore $GOARCH inside the compiler and linker. | Rob Pike | 1 | -0/+1 | |
by definition, they know what they are building for. makes it easier to switch architectures when testing. % 6g x.go % 6l x.6 % 6.out "Wed Jan 13 10:57:46 EST 2010" % 8g x.go % 8l x.8 % 8.out "Wed Jan 13 10:57:46 EST 2010" % echo $GOARCH % R=rsc CC=golang-dev http://codereview.appspot.com/186116 | |||||
2009-12-17 | first stub for softfloats, intercepts float instructions and skips | Kai Backman | 1 | -0/+2 | |
them in the stream. R=rsc http://codereview.appspot.com/174052 | |||||
2009-10-10 | reallocate library, libraryobj: 50 isn't nearly enough | Rob Pike | 1 | -2/+3 | |
R=rsc DELTA=7 (2 added, 0 deleted, 5 changed) OCL=35569 CL=35569 | |||||
2009-10-07 | factor portable object+library bits out of 5l/6l/8l into ld | Russ Cox | 1 | -0/+87 | |
R=r DELTA=3214 (904 added, 2260 deleted, 50 changed) OCL=35425 CL=35427 |