aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/os/getwd.go
AgeCommit message (Collapse)AuthorFilesLines
2020-12-30libgo: update to Go1.16beta1 releaseIan Lance Taylor1-8/+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
2018-01-27libgo: update to Go1.10rc1Ian Lance Taylor1-1/+1
Reviewed-on: https://go-review.googlesource.com/90295 From-SVN: r257126
2018-01-17libgo: update to Go1.10beta2 releaseIan Lance Taylor1-6/+6
Reviewed-on: https://go-review.googlesource.com/87897 From-SVN: r256794
2016-07-22libgo: update to go1.7rc3Ian Lance Taylor1-2/+2
Reviewed-on: https://go-review.googlesource.com/25150 From-SVN: r238662
2015-01-15libgo, compiler: Upgrade libgo to Go 1.4, except for runtime.Ian Lance Taylor1-10/+14
This upgrades all of libgo other than the runtime package to the Go 1.4 release. In Go 1.4 much of the runtime was rewritten into Go. Merging that code will take more time and will not change the API, so I'm putting it off for now. There are a few runtime changes anyhow, to accomodate other packages that rely on minor modifications to the runtime support. The compiler changes slightly to add a one-bit flag to each type descriptor kind that is stored directly in an interface, which for gccgo is currently only pointer types. Another one-bit flag (gcprog) is reserved because it is used by the gc compiler, but gccgo does not currently use it. There is another error check in the compiler since I ran across it during testing. gotools/: * Makefile.am (go_cmd_go_files): Sort entries. Add generate.go. * Makefile.in: Rebuild. From-SVN: r219627
2014-07-19libgo: Update to Go 1.3 release.Ian Lance Taylor1-14/+14
From-SVN: r212837
2013-11-06libgo: Update to October 24 version of master library.Ian Lance Taylor1-1/+7
From-SVN: r204466
2013-07-16libgo: Update to Go 1.1.1.Ian Lance Taylor1-2/+23
From-SVN: r200974
2012-03-02libgo: Update to weekly.2012-02-22 release.Ian Lance Taylor1-2/+2
From-SVN: r184819
2012-02-09libgo: Update to weekly.2012-02-07.Ian Lance Taylor1-4/+4
From-SVN: r184034
2011-12-13libgo: Update to weekly.2011-12-02.Ian Lance Taylor1-6/+6
From-SVN: r182295
2011-12-03libgo: Update to weekly.2011-11-02.Ian Lance Taylor1-1/+1
From-SVN: r181964
2011-04-07libgo: Update to current Go library.Ian Lance Taylor1-1/+1
From-SVN: r172106
2010-12-03Add Go frontend, libgo library, and Go testsuite.Ian Lance Taylor1-0/+92
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