diff --git a/doc/go1.5.html b/doc/go1.5.html index 7c3a2f294a..da1d05abce 100644 --- a/doc/go1.5.html +++ b/doc/go1.5.html @@ -465,15 +465,16 @@ A new cmd wildcard covers the commands.
  • -A new -toolexec flag for building -allows substitution of a different command to invoke -the compiler and so on. -This acts as a custom replacement for go tool. +A new -asmflags build option +sets flags to pass to the assembler. +However, +the -ccflags build option has been dropped; +it was specific to the old, now deleted C compiler .
  • -The build subcommand has a -buildmode option tied to the linker, -as described above. +A new -buildmode build option +sets the build mode, described above.
  • @@ -484,6 +485,19 @@ the -ccflags build option has been dropped; it was specific to the old, now deleted C compiler .
  • +
  • +A new -pkgdir build option +sets the location of installed package archives, +to help isolate custom builds. +
  • + +
  • +A new -toolexec build option +allows substitution of a different command to invoke +the compiler and so on. +This acts as a custom replacement for go tool. +
  • +
  • The test subcommand now has a -count flag to specify how many times to run each test and benchmark.