aboutsummaryrefslogtreecommitdiff
path: root/libgo/config.h.in
AgeCommit message (Collapse)AuthorFilesLines
2011-09-16Update Go library to r60.Ian Lance Taylor1-0/+15
From-SVN: r178910
2011-05-24libgo: Make os.setenv_c work on systems without setenv.Ian Lance Taylor1-0/+3
From-SVN: r174147
2011-04-05libgo: Use MAP_FIXED if necessary to grab arena.Ian Lance Taylor1-0/+12
From Rainer Orth. PR go/48240 * configure.ac: Check for mincore. * configure: Regenerate. * config.h.in: Regenerate. * runtime/mem.c: Include unistd.h. (addrspace_free): New function. (runtime_SysMap): Retry 64-bit runtime_mmap with MAP_FIXED. From-SVN: r171961
2011-02-21Support libgo on Solaris.Ian Lance Taylor1-0/+3
From Rainer Orth. From-SVN: r170355
2011-02-04Implement __sync_fetch_and_add_4 if necessary.Ian Lance Taylor1-0/+4
From-SVN: r169820
2011-02-03Check whether we are using setjmp/longjmp exceptions.Ian Lance Taylor1-0/+3
From-SVN: r169777
2011-02-01Test whether libgcc or kernel defines __sync_bool_compare_and_swap_4.Ian Lance Taylor1-0/+4
From-SVN: r169504
2010-12-03Add Go frontend, libgo library, and Go testsuite.Ian Lance Taylor1-0/+119
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