summaryrefslogtreecommitdiffstats
path: root/libgo/go
Commit message (Collapse)AuthorAgeFilesLines
...
* Update to current version of Go library (revision 94d654be2064).ian2011-03-16259-3984/+14755
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171076 138bc75d-0d04-0410-961f-82ee72b054a4
* Solaris specific syslog support.ian2011-03-094-24/+117
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170837 138bc75d-0d04-0410-961f-82ee72b054a4
* PR go/48019ian2011-03-091-0/+3
| | | | | | | Ignore EINTR in socket connect. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170811 138bc75d-0d04-0410-961f-82ee72b054a4
* Solaris libgo testsuite fixes.ian2011-03-072-3/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170762 138bc75d-0d04-0410-961f-82ee72b054a4
* Support libgo on Solaris.ian2011-02-213-1/+24
| | | | | | | From Rainer Orth. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170355 138bc75d-0d04-0410-961f-82ee72b054a4
* time: Look for zoneinfo files in Solaris directory.ian2011-01-291-1/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169380 138bc75d-0d04-0410-961f-82ee72b054a4
* Add Solaris version of os.Hostname.ian2011-01-281-0/+25
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169350 138bc75d-0d04-0410-961f-82ee72b054a4
* When closing a file, call closedir if we called opendir.ian2011-01-281-0/+7
| | | | | | | Fixes Go issue 1448. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169344 138bc75d-0d04-0410-961f-82ee72b054a4
* netchan: Avoid race condition in test.ian2011-01-261-2/+2
| | | | | | | Copied from master library. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169311 138bc75d-0d04-0410-961f-82ee72b054a4
* net: Check for EINTR.ian2011-01-261-7/+7
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169309 138bc75d-0d04-0410-961f-82ee72b054a4
* Update some net tests from master sources.ian2011-01-262-13/+37
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169298 138bc75d-0d04-0410-961f-82ee72b054a4
* Recognize m68k, mips, PPC. Don't require arch syscall files to exist.ian2011-01-246-30/+0
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169185 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix race condition in test case.ian2011-01-211-7/+7
| | | | | | | Brought over from master repository. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169106 138bc75d-0d04-0410-961f-82ee72b054a4
* Remove the types float and complex.ian2011-01-21316-14850/+18147
| | | | | | | | | | | | | Update to current version of Go library. Update testsuite for removed types. * go-lang.c (go_langhook_init): Omit float_type_size when calling go_create_gogo. * go-c.h: Update declaration of go_create_gogo. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169098 138bc75d-0d04-0410-961f-82ee72b054a4
* Use GOARCH value of sparc64 rather than sparcv9.ian2011-01-131-0/+0
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168740 138bc75d-0d04-0410-961f-82ee72b054a4
* Preliminary framework for Solaris support.ian2011-01-125-0/+37
| | | | | | | Partly from Rainer Orth. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168697 138bc75d-0d04-0410-961f-82ee72b054a4
* Simplify libgo Makefile conditionals.ian2011-01-123-0/+27
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168696 138bc75d-0d04-0410-961f-82ee72b054a4
* Update to current master source.ian2010-12-171-252/+159
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167972 138bc75d-0d04-0410-961f-82ee72b054a4
* Don't split stack in bytes.IndexByte.ian2010-12-171-3/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167971 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix test by copying from master.ian2010-12-081-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167575 138bc75d-0d04-0410-961f-82ee72b054a4
* Add Go frontend, libgo library, and Go testsuite.ian2010-12-03729-0/+179469
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167407 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud