summaryrefslogtreecommitdiff
path: root/libgo/merge.sh
Commit message (Collapse)AuthorAgeFilesLines
* libgo: update to go1.7rc3Ian Lance Taylor2016-07-221-9/+1
| | | | | | Reviewed-on: https://go-review.googlesource.com/25150 From-SVN: r238662
* runtime: Remove now unnecessary pad field from ParFor.Ian Lance Taylor2015-10-311-35/+5
| | | | | | | | It is not needed due to the removal of the ctx field. Reviewed-on: https://go-review.googlesource.com/16525 From-SVN: r229616
* libgo: Upgrade to Go 1.4.2 release.Ian Lance Taylor2015-03-061-10/+10
| | | | From-SVN: r221245
* runtime: Add the Go language version information to the Version output.Ian Lance Taylor2015-01-211-0/+10
| | | | From-SVN: r219976
* libgo, compiler: Upgrade libgo to Go 1.4, except for runtime.Ian Lance Taylor2015-01-151-14/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | 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
* libgo: Add sources for go, cgo, and gofmt commands.Ian Lance Taylor2015-01-061-0/+30
| | | | | | | | | The new commands are not yet built. That will be done separately. Also include a few changes to go/build to support them. From-SVN: r219272
* libgo: Update to Go 1.3 release.Ian Lance Taylor2014-07-191-1/+1
| | | | From-SVN: r212837
* runtime: Merge master revision 19185.Ian Lance Taylor2014-07-121-1/+1
| | | | | | | This revision renames several files in the runtime directory from .c to .goc. From-SVN: r212472
* libgo: Merge to master revision 19184.Ian Lance Taylor2014-06-061-1/+1
| | | | | | | The next revision, 19185, renames several runtime files, and will be handled in a separate change. From-SVN: r211328
* libgo: Update to Go 1.1.1.Ian Lance Taylor2013-07-161-2/+2
| | | | From-SVN: r200974
* libgo: Update to revision 15193:6fdc1974457c of master library.Ian Lance Taylor2012-12-221-1/+1
| | | | From-SVN: r194692
* libgo: Update to current sources.Ian Lance Taylor2012-10-231-1/+1
| | | | From-SVN: r192704
* runtime: Copy runtime_printf from other Go library.Ian Lance Taylor2012-05-241-1/+1
| | | | From-SVN: r187848
* libgo: Update to weekly.2012-03-22.Ian Lance Taylor2012-03-301-1/+1
| | | | From-SVN: r186026
* libgo: Update to weekly.2012-02-14 release.Ian Lance Taylor2012-03-021-1/+1
| | | | From-SVN: r184798
* libgo: Update to weekly.2011-12-22.Ian Lance Taylor2012-01-131-2/+2
| | | | From-SVN: r183150
* libgo: Update to weekly.2011-11-18.Ian Lance Taylor2011-12-121-3/+0
| | | | From-SVN: r182266
* libgo: Update to weekly 2011-11-09.Ian Lance Taylor2011-12-071-1/+1
| | | | From-SVN: r182073
* libgo: Update to weekly.2011-11-02.Ian Lance Taylor2011-12-031-24/+18
| | | | From-SVN: r181964
* merge.sh: Add files, add revision option, handle middle dot.Ian Lance Taylor2011-12-021-9/+35
| | | | From-SVN: r181937
* Update Go library to last weekly.Ian Lance Taylor2011-10-261-2/+2
| | | | From-SVN: r180552
* Update Go library to release r60.1.Ian Lance Taylor2011-09-221-1/+1
| | | | From-SVN: r179076
* Update Go library to r60.Ian Lance Taylor2011-09-161-3/+3
| | | | From-SVN: r178910
* Update to current version of Go library.Ian Lance Taylor2011-03-241-1/+1
| | | | From-SVN: r171427
* Add Go frontend, libgo library, and Go testsuite.Ian Lance Taylor2010-12-031-0/+173
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