aboutsummaryrefslogtreecommitdiff
path: root/src/plugin
diff options
context:
space:
mode:
authorDavid Crawshaw <crawshaw@golang.org>2016-12-14 14:48:58 -0500
committerBrad Fitzpatrick <bradfitz@golang.org>2016-12-15 05:46:20 +0000
commitc1ada22bc1ddf798a8931a09c8fa7c878c9ee6b9 (patch)
tree52c83326a39965ea7db46ad6051663f27d9353b6 /src/plugin
parent2adc2d1b8bd0cb389e1ecd511b4e213a5a8a7107 (diff)
downloadgo-c1ada22bc1ddf798a8931a09c8fa7c878c9ee6b9.tar.gz
go-c1ada22bc1ddf798a8931a09c8fa7c878c9ee6b9.zip
cmd/go, plugin: disable plugins on darwin
We are seeing a bad stack map in #18190. In a copystack, it is mistaking a slot for a pointer. Presumably this is caused either by our fledgling dynlink support on darwin, or a consequence of having two copies of the runtime in the process. But I have been unable to work out which in the 1.8 window, so pushing darwin support to 1.9 or later. Change-Id: I7fa4d2dede75033d9a428f24c1837a4613bd2639 Reviewed-on: https://go-review.googlesource.com/34391 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/plugin')
-rw-r--r--src/plugin/plugin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin/plugin.go b/src/plugin/plugin.go
index 5c822bd9ba..b86099a4f6 100644
--- a/src/plugin/plugin.go
+++ b/src/plugin/plugin.go
@@ -4,7 +4,7 @@
// Package plugin implements loading and symbol resolution of Go plugins.
//
-// Currently plugins only work on Linux and Darwin.
+// Currently plugins only work on Linux.
//
// A plugin is a Go main package with exported functions and variables that
// has been built with: