• Russ Cox's avatar
    cmd/go: implement per-package asmflags, gcflags, ldflags, gccgoflags · 5993251c
    Russ Cox authored
    It has always been problematic that there was no way to specify
    tool flags that applied only to the build of certain packages;
    it was only to specify flags for all packages being built.
    The usual workaround was to install all dependencies of something,
    then build just that one thing with different flags. Since the
    dependencies appeared to be up-to-date, they were not rebuilt
    with the different flags. The new content-based staleness
    (up-to-date) checks see through this trick, because they detect
    changes in flags. This forces us to address the underlying problem
    of providing a way to specify per-package flags.
    
    The solution is to allow -gcflags=pattern=flags, which means
    that flags apply to packages matching pattern, in addition to the
    usual -gcflags=flags, which is now redefined to apply only to
    the packages named on the command line.
    
    See #22527 for discussion and rationale.
    
    Fixes #22527.
    
    Change-Id: I6716bed69edc324767f707b5bbf3aaa90e8e7302
    Reviewed-on: https://go-review.googlesource.com/76551
    Run-TryBot: Russ Cox <rsc@golang.org>
    Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
    5993251c
Name
Last commit
Last update
..
testdata Loading commit data...
README Loading commit data...
doc.go Loading commit data...
output_test.go Loading commit data...
race.go Loading commit data...
race_darwin_amd64.syso Loading commit data...
race_freebsd_amd64.syso Loading commit data...
race_linux_amd64.syso Loading commit data...
race_linux_test.go Loading commit data...
race_test.go Loading commit data...
race_unix_test.go Loading commit data...
race_windows_amd64.syso Loading commit data...
race_windows_test.go Loading commit data...
sched_test.go Loading commit data...