We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45a4609 commit ac29f30Copy full SHA for ac29f30
src/plugin/plugin.go
@@ -4,8 +4,6 @@
4
5
// Package plugin implements loading and symbol resolution of Go plugins.
6
//
7
-// Currently plugins only work on Linux.
8
-//
9
// A plugin is a Go main package with exported functions and variables that
10
// has been built with:
11
@@ -14,6 +12,9 @@
14
12
// When a plugin is first opened, the init functions of all packages not
15
13
// already part of the program are called. The main function is not run.
16
// A plugin is only initialized once, and cannot be closed.
+//
+// The plugin support is currently incomplete, only supports Linux,
17
+// and has known bugs. Please report any issues.
18
package plugin
19
20
// Plugin is a loaded Go plugin.
0 commit comments