summaryrefslogtreecommitdiff
path: root/libgo/Makefile.in
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2017-01-14 00:05:42 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2017-01-14 00:05:42 +0000
commitc2047754c300b68c05d65faa8dc2925fe67b71b4 (patch)
treee183ae81a1f48a02945cb6de463a70c5be1b06f6 /libgo/Makefile.in
parent829afb8f05602bb31c9c597b24df7377fed4f059 (diff)
libgo: update to Go 1.8 release candidate 1
Compiler changes: * Change map assignment to use mapassign and assign value directly. * Change string iteration to use decoderune, faster for ASCII strings. * Change makeslice to take int, and use makeslice64 for larger values. * Add new noverflow field to hmap struct used for maps. Unresolved problems, to be fixed later: * Commented out test in go/types/sizes_test.go that doesn't compile. * Commented out reflect.TestStructOf test for padding after zero-sized field. Reviewed-on: https://go-review.googlesource.com/35231 gotools/: Updates for Go 1.8rc1. * Makefile.am (go_cmd_go_files): Add bug.go. (s-zdefaultcc): Write defaultPkgConfig. * Makefile.in: Rebuild. From-SVN: r244456
Diffstat (limited to 'libgo/Makefile.in')
-rw-r--r--libgo/Makefile.in46
1 files changed, 40 insertions, 6 deletions
diff --git a/libgo/Makefile.in b/libgo/Makefile.in
index 581607a96c4..4b46076b010 100644
--- a/libgo/Makefile.in
+++ b/libgo/Makefile.in
@@ -168,9 +168,9 @@ LTLIBRARIES = $(toolexeclib_LTLIBRARIES)
am__DEPENDENCIES_2 = $(addsuffix .lo,$(PACKAGES)) bytes/index.lo \
reflect/makefunc_ffi_c.lo strings/index.lo \
$(am__DEPENDENCIES_1) syscall/errno.lo syscall/signame.lo \
- syscall/wait.lo $(golang_org_x_net_route_lo) \
- log/syslog/syslog_c.lo runtime/internal/atomic_c.lo \
- sync/atomic_c.lo
+ syscall/wait.lo $(golang_org_x_net_lif_lo) \
+ $(golang_org_x_net_route_lo) log/syslog/syslog_c.lo \
+ runtime/internal/atomic_c.lo sync/atomic_c.lo
am__DEPENDENCIES_3 =
am__DEPENDENCIES_4 = $(am__DEPENDENCIES_2) \
../libbacktrace/libbacktrace.la $(am__DEPENDENCIES_3) \
@@ -728,7 +728,8 @@ toolexeclibgoregexp_DATA = \
toolexeclibgoruntimedir = $(toolexeclibgodir)/runtime
toolexeclibgoruntime_DATA = \
runtime/debug.gox \
- runtime/pprof.gox
+ runtime/pprof.gox \
+ runtime/trace.gox
toolexeclibgosyncdir = $(toolexeclibgodir)/sync
toolexeclibgosync_DATA = \
@@ -834,6 +835,7 @@ PACKAGES = \
archive/zip \
bufio \
bytes \
+ cmd/internal/browser \
compress/bzip2 \
compress/flate \
compress/gzip \
@@ -851,6 +853,7 @@ PACKAGES = \
crypto/ecdsa \
crypto/elliptic \
crypto/hmac \
+ crypto/internal/cipherhw \
crypto/md5 \
crypto/rand \
crypto/rc4 \
@@ -901,8 +904,16 @@ PACKAGES = \
go/scanner \
go/token \
go/types \
+ golang_org/x/crypto/chacha20poly1305 \
+ golang_org/x/crypto/chacha20poly1305/internal/chacha20 \
+ golang_org/x/crypto/curve25519 \
+ golang_org/x/crypto/poly1305 \
golang_org/x/net/http2/hpack \
+ golang_org/x/net/idna \
golang_org/x/net/lex/httplex \
+ golang_org/x/text/transform \
+ golang_org/x/text/unicode/norm \
+ golang_org/x/text/width \
hash \
hash/adler32 \
hash/crc32 \
@@ -920,6 +931,7 @@ PACKAGES = \
image/png \
index/suffixarray \
internal/nettrace \
+ internal/pprof/profile \
internal/race \
internal/singleflight \
internal/syscall/unix \
@@ -967,6 +979,8 @@ PACKAGES = \
runtime/internal/atomic \
runtime/internal/sys \
runtime/pprof \
+ runtime/pprof/internal/protopprof \
+ runtime/trace \
sort \
strconv \
strings \
@@ -974,6 +988,7 @@ PACKAGES = \
sync/atomic \
syscall \
testing \
+ testing/internal/testdeps \
testing/iotest \
testing/quick \
text/scanner \
@@ -994,6 +1009,7 @@ libgo_go_objs = \
syscall/errno.lo \
syscall/signame.lo \
syscall/wait.lo \
+ $(golang_org_x_net_lif_lo) \
$(golang_org_x_net_route_lo) \
log/syslog/syslog_c.lo \
$(os_lib_inotify_lo) \
@@ -1161,6 +1177,12 @@ extra_go_files_runtime_internal_sys = version.go
@LIBGO_IS_BSD_TRUE@golang_org_x_net_route_check = \
@LIBGO_IS_BSD_TRUE@ golang_org/x/net/route/check
+@LIBGO_IS_SOLARIS_TRUE@golang_org_x_net_lif_lo = \
+@LIBGO_IS_SOLARIS_TRUE@ golang_org/x/net/lif/lif.lo
+
+@LIBGO_IS_SOLARIS_TRUE@golang_org_x_net_lif_check = \
+@LIBGO_IS_SOLARIS_TRUE@ golang_org/x/net/lif/check
+
TEST_PACKAGES = \
bufio/check \
bytes/check \
@@ -1248,8 +1270,14 @@ TEST_PACKAGES = \
go/scanner/check \
go/token/check \
go/types/check \
+ golang_org/x/crypto/chacha20poly1305/check \
+ golang_org/x/crypto/chacha20poly1305/internal/chacha20/check \
+ golang_org/x/crypto/curve25519/check \
+ golang_org/x/crypto/poly1305/check \
golang_org/x/net/http2/hpack/check \
+ golang_org/x/net/idna/check \
golang_org/x/net/lex/httplex/check \
+ $(golang_org_x_net_lif_check) \
$(golang_org_x_net_route_check) \
hash/adler32/check \
hash/crc32/check \
@@ -1260,6 +1288,7 @@ TEST_PACKAGES = \
image/jpeg/check \
image/png/check \
index/suffixarray/check \
+ internal/pprof/profile/check \
internal/singleflight/check \
internal/trace/check \
io/ioutil/check \
@@ -1290,9 +1319,10 @@ TEST_PACKAGES = \
path/filepath/check \
regexp/syntax/check \
runtime/debug/check \
- runtime/pprof/check \
runtime/internal/atomic/check \
runtime/internal/sys/check \
+ runtime/pprof/check \
+ runtime/pprof/internal/protopprof/check \
sync/atomic/check \
text/scanner/check \
text/tabwriter/check \
@@ -3316,7 +3346,11 @@ syscall/wait.lo: go/syscall/wait.c runtime.inc
# Build golang_org/x/net/route only on BSD systems.
-@LIBGO_IS_BSD_TRUE@$(eval $(call PACKAGE_template,golang_org/x/net/route)
+@LIBGO_IS_BSD_TRUE@$(eval $(call PACKAGE_template,golang_org/x/net/route))
+
+# Build golang_org/x/net/lif only on Solaris systems.
+
+@LIBGO_IS_SOLARIS_TRUE@$(eval $(call PACKAGE_template,golang_org/x/net/lif))
check: check-tail
check-recursive: check-head