aboutsummaryrefslogtreecommitdiff
path: root/go/private/rules/binary.bzl
diff options
context:
space:
mode:
authorIan Cottrell <ian.the.hat@gmail.com>2018-01-11 14:20:04 -0500
committerGitHub <noreply@github.com>2018-01-11 14:20:04 -0500
commit3983133bc698b298e1f71e4b439ce23c1feecfaa (patch)
tree79c98935f7dabf74dd8f2f78853253aa1b1a4e64 /go/private/rules/binary.bzl
parent3f38260eda98d23e9142bb905caede5912508770 (diff)
downloadbazelbuild-rules_go-3983133bc698b298e1f71e4b439ce23c1feecfaa.tar.gz
don't use stdlib at all for bootstrap rules (#1227)
* don't use stdlib at all for bootstrap rules They just use the underlying sdk directly. Also, we only ever use the original copy of the main go executable now. * Renamed while documenting
Diffstat (limited to 'go/private/rules/binary.bzl')
-rw-r--r--go/private/rules/binary.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/private/rules/binary.bzl b/go/private/rules/binary.bzl
index 6790880a..1f41a972 100644
--- a/go/private/rules/binary.bzl
+++ b/go/private/rules/binary.bzl
@@ -149,7 +149,7 @@ go_tool_binary = rule(
"gc_linkopts": attr.string_list(),
"linkstamp": attr.string(),
"x_defs": attr.string_dict(),
- "_go_context_data": attr.label(default = Label("@io_bazel_rules_go//:go_context_data")),
+ "_go_context_data": attr.label(default = Label("@io_bazel_rules_go//:go_bootstrap_context_data")),
},
executable = True,
toolchains = ["@io_bazel_rules_go//go:bootstrap_toolchain"],