summaryrefslogtreecommitdiff
path: root/src/cmd/8c/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* [dev.cc] cmd/5c, cmd/6c, cmd/8c, cmd/cc: removeRuss Cox2014-11-101-5/+0
| | | | | | | | | | | | | | Let's just do this up front. This will break the build (here on the dev.cc branch). The CLs that follow will take care of fixing it. Leave behind cmd/cc/lexbody and cmd/cc/macbody for the assemblers. They'll go away later. LGTM=dave, r R=r, dave CC=golang-codereviews https://codereview.appspot.com/172170043
* build: delete make paraphernaliaRuss Cox2012-02-061-34/+2
| | | | | | | | | | As a convenience to people working on the tools, leave Makefiles that invoke the go dist tool appropriately. They are not used during the build. R=golang-dev, bradfitz, n13m3y3r, gustavo CC=golang-dev http://codereview.appspot.com/5636050
* gc, cc: avoid using the wrong library when building the compilersAnthony Martin2012-02-011-1/+1
| | | | | | | | | | This can happen on Plan 9 if we we're building with the 32-bit and 64-bit host compilers, one after the other. R=rsc CC=golang-dev http://codereview.appspot.com/5599053
* build: move the "-c" flag into HOST_CFLAGSAnthony Martin2012-01-311-1/+1
| | | | | | | | | On Plan 9 this flag is used to discover constant expressions in "if" statements. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5601060
* go: move compilers into the go-tool directoryRob Pike2012-01-301-1/+1
| | | | | | | | | | | | Also delete gotest, since it's messy to fix and slated for deletion anyway. A couple of things outside src can't be tested any more. "go test" will be fixed and these tests will be re-enabled. They're noisy for now. Fixes issue 284. R=rsc CC=golang-dev http://codereview.appspot.com/5598049
* build: $GOBIN defaults to $GOROOT/binRuss Cox2010-08-241-15/+6
| | | | | | R=r CC=golang-dev http://codereview.appspot.com/1982049
* go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia2009-11-231-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>
* clean moreRuss Cox2009-10-031-1/+1
| | | | | | | R=r DELTA=40 (9 added, 3 deleted, 28 changed) OCL=35277 CL=35305
* Support use of $GOBINDIR to override $HOME/binPhil Pennock2009-07-281-2/+1
| | | | | | | | R=r,gri,rsc APPROVED=rsc DELTA=53 (12 added, 6 deleted, 35 changed) OCL=31822 CL=32282
* move 6c/pgen.c, 6c/pswt.c into ccRuss Cox2009-07-071-0/+6
| | | | | | | | | | | | | | and make 5c, 8c use them. centralizes reachability analysis and switch generation. now 8c doesn't have spurious warnings in pkg/runtime. R=ken OCL=31266 CL=31266
* make 8a, 8c build again.Russ Cox2009-03-241-1/+1
| | | | | | | | | add 8a 8c 8l to the build to keep us honest. R=r DELTA=33 (28 added, 0 deleted, 5 changed) OCL=26694 CL=26711
* make 8a, 8c, 8l build in go environment.Russ Cox2009-01-061-0/+41
,s/int32/long/g in 8a, 8c, 8l. delete dead code. move enam.c, 8.out.h, mkenam from 8c to 8l. R=r DELTA=1850 (581 added, 983 deleted, 286 changed) OCL=22119 CL=22129