1. 09 Feb, 2018 1 commit
  2. 08 Feb, 2018 1 commit
  3. 19 Jan, 2018 1 commit
  4. 09 Jan, 2018 1 commit
    • libgo: update to Go1.10beta1 · 1a2f01ef
          
          Update the Go library to the 1.10beta1 release.
          
          Requires a few changes to the compiler for modifications to the map
          runtime code, and to handle some nowritebarrier cases in the runtime.
          
          Reviewed-on: https://go-review.googlesource.com/86455
      
      gotools/:
      	* Makefile.am (go_cmd_vet_files): New variable.
      	(go_cmd_buildid_files, go_cmd_test2json_files): New variables.
      	(s-zdefaultcc): Change from constants to functions.
      	(noinst_PROGRAMS): Add vet, buildid, and test2json.
      	(cgo$(EXEEXT)): Link against $(LIBGOTOOL).
      	(vet$(EXEEXT)): New target.
      	(buildid$(EXEEXT)): New target.
      	(test2json$(EXEEXT)): New target.
      	(install-exec-local): Install all $(noinst_PROGRAMS).
      	(uninstall-local): Uninstasll all $(noinst_PROGRAMS).
      	(check-go-tool): Depend on $(noinst_PROGRAMS).  Copy down
      	objabi.go.
      	(check-runtime): Depend on $(noinst_PROGRAMS).
      	(check-cgo-test, check-carchive-test): Likewise.
      	(check-vet): New target.
      	(check): Depend on check-vet.  Look at cmd_vet-testlog.
      	(.PHONY): Add check-vet.
      	* Makefile.in: Rebuild.
      
      From-SVN: r256365
      Ian Lance Taylor committed
  5. 25 Oct, 2017 1 commit
  6. 19 Sep, 2017 1 commit
    • Fix some gotools testing problems · 6da7ce80
      	* Makefile.am (GOTESTFLAGS): New variable.
      	(check-runtime): Pass it to gotest.
      	(check-go-tools): Sort summary.
      	(check-runtime): Likewise.
      	(check-cgo-test): Likewise.
      	(check-carchive-test): Likewise.
      	(check): Likewise.
      	* Makefile.in: Regenerate.
      
      From-SVN: r252963
      Rainer Orth committed
  7. 14 Sep, 2017 1 commit
  8. 30 Aug, 2017 2 commits
  9. 26 Jul, 2017 1 commit
  10. 15 Jul, 2017 1 commit
  11. 29 Jun, 2017 1 commit
    • Makefile.am (MOSTLYCLEANFILES): Remove testing files and logs. · fac877a1
      	* Makefile.am (MOSTLYCLEANFILES): Remove testing files and logs.
      	(mostlyclean-local): Remove check-runtime-dir, cgo-test-dir,
      	carchive-test-dir.
      	(ECHO_ENV): Define.
      	(check-go-tool): Depend on cgo.  Write command to testlog.
      	(check-runtime): New target.
      	(check-cgo-test): New target.
      	(check-carchive-test): New target.
      	(check): Depend on check-runtime, check-cgo-test,
      	check-carchive-test.  Add @ to prettify output.
      	(.PHONY): Add check-runtime, check-cgo-test, check-carchive-test.
      	* Makefile.in: Rebuild.
      
      From-SVN: r249799
      Ian Lance Taylor committed
  12. 26 Jun, 2017 1 commit
  13. 16 Jun, 2017 1 commit
  14. 14 Jun, 2017 1 commit
  15. 13 Jun, 2017 1 commit
  16. 18 May, 2017 1 commit
  17. 14 Jan, 2017 1 commit
    • libgo: update to Go 1.8 release candidate 1 · c2047754
          
          Compiler changes:
            * Change map assignment to use mapassign and assign value directly.
            * Change string iteration to use decoderune, faster for ASCII strings.
            * Change makeslice to take int, and use makeslice64 for larger values.
            * Add new noverflow field to hmap struct used for maps.
          
          Unresolved problems, to be fixed later:
            * Commented out test in go/types/sizes_test.go that doesn't compile.
            * Commented out reflect.TestStructOf test for padding after zero-sized field.
          
          Reviewed-on: https://go-review.googlesource.com/35231
      
      gotools/:
      	Updates for Go 1.8rc1.
      	* Makefile.am (go_cmd_go_files): Add bug.go.
      	(s-zdefaultcc): Write defaultPkgConfig.
      	* Makefile.in: Rebuild.
      
      From-SVN: r244456
      Ian Lance Taylor committed
  18. 07 Jun, 2016 1 commit
    • Update copyright dates · 48eae472
      	libcc1:
      	Update copyrights.
      
      	gotools:
      	Update copyrights.
      
      	contrib:
      	* update-copyright.py (LibMudflapFilter): Remove.
      	(GCCCmdLine.__init__): Add gotools, libcc1.
      	Remove libmudflap.
      	List unhandled intl, libcilkrts, libgo, liboffloadmic,
      	maintainer-scripts.
      
      From-SVN: r237169
      Rainer Orth committed
  19. 03 Feb, 2016 1 commit
  20. 02 Dec, 2015 1 commit
  21. 31 Oct, 2015 1 commit
  22. 13 May, 2015 1 commit
  23. 24 Mar, 2015 1 commit
    • re PR go/65462 (Use of 'go get' with gccgo is not finding dependencies correctly) · ab24432b
      	PR go/65462
      cmd: Fix dependencies for 'go get' with gccgo
      
      Problem described in GCC BZ 65462.
      Generate the list of the standard GO package names based on what was built into libgo in the libgo Makefile.
      Change the var name from reqPkgSrc to reqStdPkgSrc to clarify it only affects standard GO packages.
      Skip the attempted loading of a package only if it is a standard GO package and the flag is set indicating its source is not required to be available.
      This requires a corresponding change to gotools to build and link in the new file containing the list of standard GO package names that was generated by the libgo Makefile.
      
      gotools/:
      	PR go/65462
      	* Makefile.am (go_cmd_go_files): Add $(libgodir)/zstdpkglist.go.
      	* Makefile.in: Rebuild.
      
      From-SVN: r221643
      Ian Lance Taylor committed
  24. 12 Mar, 2015 1 commit
  25. 23 Jan, 2015 2 commits
  26. 22 Jan, 2015 1 commit
  27. 20 Jan, 2015 1 commit
    • Link with -lrt on Solaris 10 · 5bd8d5c1
      	* configure.ac: Check if sched_yield and/or nanosleep need -lrt.
      	* configure: Regenerate.
      	* Makefile.am (go$(EXEEXT), gofmt$(EXEEXT), cgo$(EXEEXT)): Link
      	with $(LIBS).
      	* Makefile.in: Regenerate.
      
      From-SVN: r219882
      Rainer Orth committed
  28. 15 Jan, 2015 2 commits
    • configure.ac: Check for networking libraries; see NET_LIBS. · 85d7b5d5
      	* configure.ac: Check for networking libraries; see NET_LIBS.
      	* Makefile.am (go$(EXEEXT)): Link against NET_LIBS.
      	(gofmt$(EXEEXT), cgo$(EXEEXT)): Likewise.
      	* configure, Makefile.in: Rebuild.
      
      From-SVN: r219690
      Ian Lance Taylor committed
    • libgo, compiler: Upgrade libgo to Go 1.4, except for runtime. · f8d9fa9e
      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
      Ian Lance Taylor committed
  29. 10 Jan, 2015 1 commit
  30. 09 Jan, 2015 2 commits