1. 27 Jun, 2018 16 commits
  2. 26 Jun, 2018 10 commits
  3. 25 Jun, 2018 10 commits
  4. 24 Jun, 2018 1 commit
  5. 23 Jun, 2018 1 commit
  6. 22 Jun, 2018 2 commits
    • Andrew Bonventre's avatar
      api: promote next to go1.11 · 899e0e35
      Andrew Bonventre authored
      Change-Id: Ib8fa0a12363993033201ff707c315f4030811f89
      Reviewed-on: https://go-review.googlesource.com/120595
      Run-TryBot: Andrew Bonventre <andybons@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
      Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      899e0e35
    • Heschi Kreinick's avatar
      cmd/link: support DWARF compression on Darwin · 726a2d04
      Heschi Kreinick authored
      We want to compress DWARF even on macOS, but the native toolchain isn't
      going to understand it. Add a flag that can be used to disable
      compression, then add Darwin to the whitelist used during internal
      linking.
      
      Unlike GNU ld, the Darwin linker doesn't have a handy linker flag to do
      compression. But since we're already doing surgery to put the DWARF in
      the output executable in the first place, compressing it at the same
      time isn't unduly difficult. This does have the slightly odd effect of
      compressing some Apple proprietary debug sections, which absolutely
      nothing will understand. Leaving them uncompressed didn't make much
      sense, though, since I doubt they're useful without (say) __debug_info.
      
      Updates #11799
      
      Change-Id: Ie00b0215c630a798c59d009a641e2d13f0e7ea01
      Reviewed-on: https://go-review.googlesource.com/120155
      Run-TryBot: Heschi Kreinick <heschi@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarAustin Clements <austin@google.com>
      726a2d04