]> Cypherpunks repositories - gostls13.git/commit
cmd/go: use -importcfg to invoke compiler, linker
authorRuss Cox <rsc@golang.org>
Fri, 9 Jun 2017 15:15:53 +0000 (11:15 -0400)
committerRuss Cox <rsc@golang.org>
Fri, 29 Sep 2017 00:22:58 +0000 (00:22 +0000)
commit0be2d52ebaa85c4d055bde4239a6698d7135ca3e
tree727c1f4fce959a808d46915fffd7a69a6616af42
parenta2993456bb765e9a4c556e3529a01975764d28ae
cmd/go: use -importcfg to invoke compiler, linker

This is a step toward using cached build artifacts: the importcfg
will direct the compiler and linker to read them right from the cache
if necessary. However, this CL does not have a cache yet, so it still
reads them from the usual install location or build location.
Even so, this fixes a long-standing issue that -I and -L (no longer used)
are not expressive enough to describe complex GOPATH setups.

Shared libraries are handled enough that all.bash passes, but
there may still be more work to do here. If so, tests and fixes
can be added in follow-up CLs.

Gccgo will need updating to support -importcfg as well.

Fixes #14271.

Change-Id: I5c52a0a5df0ffbf7436e1130c74e9e24fceff80f
Reviewed-on: https://go-review.googlesource.com/56279
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: David Crawshaw <crawshaw@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
misc/cgo/testshared/shared_test.go
src/cmd/go/internal/cfg/cfg.go
src/cmd/go/internal/load/pkg.go
src/cmd/go/internal/test/test.go
src/cmd/go/internal/work/build.go
src/cmd/link/internal/ld/ld.go
src/cmd/link/internal/ld/lib.go