From: Russ Cox Date: Fri, 27 Aug 2010 00:21:34 +0000 (-0400) Subject: Make.pkg: never use quietgcc X-Git-Tag: weekly.2010-09-06~65 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9f24d3686f6789187d5112cd52884be9bd5307d4;p=gostls13.git Make.pkg: never use quietgcc R=iant CC=golang-dev https://golang.org/cl/2033041 --- diff --git a/src/Make.pkg b/src/Make.pkg index 1f5f2823b9..4c464497a0 100644 --- a/src/Make.pkg +++ b/src/Make.pkg @@ -8,6 +8,16 @@ testpackage: _test/$(TARG).a include $(QUOTED_GOROOT)/src/Make.common +# The quietgcc wrapper is for our own source code +# while building the libraries, not arbitrary source code +# as encountered by cgo. +ifeq ($(HOST_CC),quietgcc) +HOST_CC:=gcc +endif +ifeq ($(HOST_LD),quietgcc) +HOST_LD:=gcc +endif + # GNU Make 3.80 has a bug in lastword # elem=$(lastword $(subst /, ,$(TARG))) TARG_words=$(subst /, ,$(TARG))