Skip to content

Commit ac29f30

Browse files
plugin: mention that there are known bugs with plugins
Change-Id: I9e63661cac2bebc41d7aa3cd80e1920eec22b894 Reviewed-on: https://go-review.googlesource.com/51250 Reviewed-by: Brad Fitzpatrick <[email protected]> Reviewed-by: David Crawshaw <[email protected]>
1 parent 45a4609 commit ac29f30

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/plugin/plugin.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
// Package plugin implements loading and symbol resolution of Go plugins.
66
//
7-
// Currently plugins only work on Linux.
8-
//
97
// A plugin is a Go main package with exported functions and variables that
108
// has been built with:
119
//
@@ -14,6 +12,9 @@
1412
// When a plugin is first opened, the init functions of all packages not
1513
// already part of the program are called. The main function is not run.
1614
// A plugin is only initialized once, and cannot be closed.
15+
//
16+
// The plugin support is currently incomplete, only supports Linux,
17+
// and has known bugs. Please report any issues.
1718
package plugin
1819

1920
// Plugin is a loaded Go plugin.

0 commit comments

Comments
 (0)