diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2018-01-14 04:59:01 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2018-01-14 04:59:01 +0000 |
commit | ffad1c54d2e4b698bab8d198a65c6183e74449a8 (patch) | |
tree | 660362db6d65127cb1c0671cd4055146fd4ab6fa /libgo/testsuite | |
parent | 8532713fc4ebeb6c7b1026bbdb4cf5ab61ff68e3 (diff) | |
download | gcc-ffad1c54d2e4b698bab8d198a65c6183e74449a8.zip gcc-ffad1c54d2e4b698bab8d198a65c6183e74449a8.tar.gz gcc-ffad1c54d2e4b698bab8d198a65c6183e74449a8.tar.bz2 |
go/types: implement SizesFor for gccgo
Move the architecture-specific settings out of configure.ac into a new
shell script goarch.sh. Use the new script to collect the values for
all architectures to make them available in go/types.
Also fix cmd/vet to pass the right compiler when it calls SizesFor.
This fixes cmd/vet for systems that are not implemented in the gc
toolchain, such as alpha and ia64.
Reviewed-on: https://go-review.googlesource.com/87635
From-SVN: r256655
Diffstat (limited to 'libgo/testsuite')
-rw-r--r-- | libgo/testsuite/Makefile.in | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libgo/testsuite/Makefile.in b/libgo/testsuite/Makefile.in index 79da1c9..fc02e09 100644 --- a/libgo/testsuite/Makefile.in +++ b/libgo/testsuite/Makefile.in @@ -107,14 +107,6 @@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GOARCH = @GOARCH@ -GOARCH_BIGENDIAN = @GOARCH_BIGENDIAN@ -GOARCH_CACHELINESIZE = @GOARCH_CACHELINESIZE@ -GOARCH_FAMILY = @GOARCH_FAMILY@ -GOARCH_HUGEPAGESIZE = @GOARCH_HUGEPAGESIZE@ -GOARCH_INT64ALIGN = @GOARCH_INT64ALIGN@ -GOARCH_MINFRAMESIZE = @GOARCH_MINFRAMESIZE@ -GOARCH_PCQUANTUM = @GOARCH_PCQUANTUM@ -GOARCH_PHYSPAGESIZE = @GOARCH_PHYSPAGESIZE@ GOC = @GOC@ GOCFLAGS = @GOCFLAGS@ GOOS = @GOOS@ |