aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/debug/dwarf/open.go
AgeCommit message (Collapse)AuthorFilesLines
2020-12-30libgo: update to Go1.16beta1 releaseIan Lance Taylor1-2/+11
This does not yet include support for the //go:embed directive added in this release. * Makefile.am (check-runtime): Don't create check-runtime-dir. (mostlyclean-local): Don't remove check-runtime-dir. (check-go-tool, check-vet): Copy in go.mod and modules.txt. (check-cgo-test, check-carchive-test): Add go.mod file. * Makefile.in: Regenerate. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/280172
2020-01-21libgo: update to Go1.14beta1Ian Lance Taylor1-0/+25
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/214297
2017-10-20debug/dwarf: support 64-bit DWARF in byte order checkIan Lance Taylor1-4/+13
Also fix 64-bit DWARF to read a 64-bit abbrev offset in the compilation unit. This is a backport of https://golang.org/cl/71171, which will be in the Go 1.10 release, to the gofrontend copy. Doing it now because AIX is pretty much the only system that uses 64-bit DWARF. Reviewed-on: https://go-review.googlesource.com/72250 From-SVN: r253955
2017-09-22debug/xcoff,cmd: add XCOFF supportIan Lance Taylor1-1/+1
Reviewed-on: https://go-review.googlesource.com/64592 From-SVN: r253105
2016-07-22libgo: update to go1.7rc3Ian Lance Taylor1-3/+3
Reviewed-on: https://go-review.googlesource.com/25150 From-SVN: r238662
2014-06-06libgo: Merge to master revision 19184.Ian Lance Taylor1-0/+10
The next revision, 19185, renames several runtime files, and will be handled in a separate change. From-SVN: r211328
2012-03-09debug/dwarf: Support DWARF versions 3 and 4.Ian Lance Taylor1-1/+0
From-SVN: r185126
2012-03-02libgo: Update to weekly.2012-02-22 release.Ian Lance Taylor1-2/+3
From-SVN: r184819
2011-12-03libgo: Update to weekly.2011-11-02.Ian Lance Taylor1-5/+2
From-SVN: r181964
2011-05-20Update to current version of Go library.Ian Lance Taylor1-3/+3
From-SVN: r173931
2010-12-03Add Go frontend, libgo library, and Go testsuite.Ian Lance Taylor1-0/+80
gcc/: * gcc.c (default_compilers): Add entry for ".go". * common.opt: Add -static-libgo as a driver option. * doc/install.texi (Configuration): Mention libgo as an option for --enable-shared. Mention go as an option for --enable-languages. * doc/invoke.texi (Overall Options): Mention .go as a file name suffix. Mention go as a -x option. * doc/frontends.texi (G++ and GCC): Mention Go as a supported language. * doc/sourcebuild.texi (Top Level): Mention libgo. * doc/standards.texi (Standards): Add section on Go language. Move references for other languages into their own section. * doc/contrib.texi (Contributors): Mention that I contributed the Go frontend. gcc/testsuite/: * lib/go.exp: New file. * lib/go-dg.exp: New file. * lib/go-torture.exp: New file. * lib/target-supports.exp (check_compile): Match // Go. From-SVN: r167407