diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2015-03-25 21:19:01 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2015-03-25 21:19:01 +0000 |
commit | 7b980c32fa11077c73d99aa04849d3beed1c7002 (patch) | |
tree | 43ddbb990f31189f878c46eb229602a4768e170b /libgo/Makefile.in | |
parent | 1cc57b591076b3185ba40687a26c0c9c454fcb23 (diff) | |
download | gcc-7b980c32fa11077c73d99aa04849d3beed1c7002.zip gcc-7b980c32fa11077c73d99aa04849d3beed1c7002.tar.gz gcc-7b980c32fa11077c73d99aa04849d3beed1c7002.tar.bz2 |
re PR go/65570 (cannot find package "runtime/cgo")
PR go/65570
libgo/Makefile.am: add runtime/cgo to list of standard packages
The runtime/cgo package is treated specially by the go tool.
It needs to know that it is always available for gccgo.
From-SVN: r221673
Diffstat (limited to 'libgo/Makefile.in')
-rw-r--r-- | libgo/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/Makefile.in b/libgo/Makefile.in index 88b83ad..b205008 100644 --- a/libgo/Makefile.in +++ b/libgo/Makefile.in @@ -4403,7 +4403,7 @@ s-zstdpkglist: Makefile echo 'package main' > zstdpkglist.go.tmp echo "" >> zstdpkglist.go.tmp echo 'var stdpkg = map[string]bool{' >> zstdpkglist.go.tmp - echo $(libgo_go_objs) 'unsafe.lo' | sed 's/\.lo /\": true,\n/g' | sed 's/\.lo/\": true,/' | sed 's/-go//' | grep -v _c | sed 's/^/\t\"/' | sort | uniq >> zstdpkglist.go.tmp + echo $(libgo_go_objs) 'unsafe.lo' 'runtime/cgo.lo' | sed 's/\.lo /\": true,\n/g' | sed 's/\.lo/\": true,/' | sed 's/-go//' | grep -v _c | sed 's/^/\t\"/' | sort | uniq >> zstdpkglist.go.tmp echo '}' >> zstdpkglist.go.tmp $(SHELL) $(srcdir)/mvifdiff.sh zstdpkglist.go.tmp zstdpkglist.go $(STAMP) $@ |