Go support
Added support for Go 1.10.3 and 1.9.7.
Bug fixes
- #1524 - Add extra_files attribute to bazel_test
- #1542 - Fix deprecated skylark
- #1541 - Inherit importmap from embedded libraries
- #1521 - Allow .s files to include other .s files
- #1510 - Change base URL that SDKs are downloaded from
- #1497 - Enable use of FreeBSD SDK
WORKSPACE code
To use this release, add this code to your WORKSPACE file:
http_archive(
name = "io_bazel_rules_go",
url = "https://github.com/bazelbuild/rules_go/releases/download/0.10.5/rules_go-0.10.5.tar.gz",
sha256 = "242602c9818a83cbe97d1446b48263dcd48949a74d713c172d1b03da841b168a",
)
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()