]> Cypherpunks repositories - gostls13.git/commit
build: pass $GCFLAGS to compiler
authorRuss Cox <rsc@golang.org>
Tue, 18 Oct 2011 18:55:10 +0000 (14:55 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 18 Oct 2011 18:55:10 +0000 (14:55 -0400)
commit389d55fadf8ed166cc06c016d9eae3dda5e249b8
tree1df0a94fe918bf0d354093862ad2ef592a1e20ea
parent565793996c2b646dfa31c6660d79a57a7ae8312e
build: pass $GCFLAGS to compiler

For example, if you are debugging an optimization
problem you can now run

        GCFLAGS=-N gotest

This is a convention for make, not for the general build,
so it may go away or be done differently in the eventual
'go' command.

The plan is that people will be able to test their code for
rune safety by doing GCFLAGS=-r.

R=golang-dev, bradfitz, lvd
CC=golang-dev
https://golang.org/cl/5294042
src/Make.cmd
src/Make.pkg
test/run