summaryrefslogtreecommitdiff
path: root/src/cmd/5l/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-40/+2
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+43
2011-09-13Imported Upstream version 60Ondřej Surý1-43/+0
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-1/+0
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-0/+1
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-13/+11
2010-02-10arm: fix build on androidRuss Cox1-0/+2
R=kaib CC=golang-dev http://codereview.appspot.com/206059
2009-12-17 first stub for softfloats, intercepts float instructions and skipsKai Backman1-0/+1
them in the stream. R=rsc http://codereview.appspot.com/174052
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-2/+2
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-10-07factor portable object+library bits out of 5l/6l/8l into ldRuss Cox1-2/+4
R=r DELTA=3214 (904 added, 2260 deleted, 50 changed) OCL=35425 CL=35427
2009-10-03clean moreRuss Cox1-1/+1
R=r DELTA=40 (9 added, 3 deleted, 28 changed) OCL=35277 CL=35305
2009-07-28Support use of $GOBINDIR to override $HOME/binPhil Pennock1-1/+1
R=r,gri,rsc APPROVED=rsc DELTA=53 (12 added, 6 deleted, 35 changed) OCL=31822 CL=32282
2009-06-09Added ld/go.c functionality into 5l, primarily dead codeKai Backman1-1/+1
removal and typesigs and strings. Also added new header support to 5c/5a/5l. R=rsc APPROVED=rsc DELTA=98 (66 added, 10 deleted, 22 changed) OCL=30103 CL=30123
2009-03-25This is really two changes in one but given interdependenciesKai Backman1-0/+40
and expected review latency I needed to combine the CLs. 1. Made the 5* toolpath build using the go build system. Hooked the subdirectories to clean.bash but added a separate make5.bash for now. Minor massage to make the code more similar to the current structure of 6c/6a/6l. 2. Change all references from long to int32 in line with similar change for the other toolchains. The end result is that 5c, 5a and 5l can now be compiled and the executables start up properly. Haven't thrown any input at them yet. R=rsc APPROVED=rsc DELTA=1052 (392 added, 328 deleted, 332 changed) OCL=26757 CL=26761