cmd/dist: use -buildmode=pie for pie testing
authorLynn Boger <laboger@linux.vnet.ibm.com>
Thu, 28 Sep 2017 14:26:39 +0000 (10:26 -0400)
committerPeter Michael Green <plugwash@raspbian.org>
Wed, 8 Nov 2017 00:15:02 +0000 (00:15 +0000)
commita29b87a332ea345d01728e62d3cf983025e7a56b
treef4472cfadd02c71fb9a987d2e1979401b160628a
parent8a35dc2a7e3d152a1a82a21befff2caef2b16c85
cmd/dist: use -buildmode=pie for pie testing

Some tests in misc/cgo/test are run with various options including
'-linkmode=external "-extldflags=-pie"'. On ppc64x passing -pie to
the external linker with code that was not compiled as position
independent is incorrect. This works by luck in many cases but is
not guaranteed to work. I suspect it is an issue on other targets
as well.

This will now run the tests using -buildmode=pie for the platforms
that support that buildmode option.

Fixes #21954

Change-Id: I25fc7573f2d3cb5b0d1c691a0ac91aef7715404f
Reviewed-on: https://go-review.googlesource.com/66870
Run-TryBot: Lynn Boger <laboger@linux.vnet.ibm.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Gbp-Pq: Name 0004-cmd-dist-use-buildmode-pie-for-pie-testing.patch
src/cmd/dist/test.go