summaryrefslogtreecommitdiff
path: root/libgo/go/plugin/plugin_dlopen.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/plugin/plugin_dlopen.go')
-rw-r--r--libgo/go/plugin/plugin_dlopen.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/libgo/go/plugin/plugin_dlopen.go b/libgo/go/plugin/plugin_dlopen.go
index 23adc4f15ea..cdd6bb56919 100644
--- a/libgo/go/plugin/plugin_dlopen.go
+++ b/libgo/go/plugin/plugin_dlopen.go
@@ -2,8 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build (linux && cgo) || (darwin && cgo) || (freebsd && cgo) || (hurd && cgo)
-// +build linux,cgo darwin,cgo freebsd,cgo hurd,cgo
+//go:build (linux && cgo) || (darwin && cgo) || (freebsd && cgo) || (hurd & cgo)
package plugin
@@ -103,7 +102,7 @@ func open(name string) (*Plugin, error) {
}
// Fill out the value of each plugin symbol.
- updatedSyms := map[string]interface{}{}
+ updatedSyms := map[string]any{}
for symName, sym := range syms {
isFunc := symName[0] == '.'
if isFunc {
@@ -148,7 +147,7 @@ var (
)
// lastmoduleinit is defined in package runtime
-func lastmoduleinit() (pluginpath string, syms map[string]interface{}, errstr string)
+func lastmoduleinit() (pluginpath string, syms map[string]any, errstr string)
// doInit is defined in package runtime
//go:linkname doInit runtime.doInit