You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you can reproduce this simply by importing both gozstd and plugin at the same time, for example
package main
import (
_ "github.com/valyala/gozstd"
_ "plugin"
)
as an example I forked the gozstd repo to add a test to fail this, thus
go get github.com/gordallott/gozstd
go test -v github.com/gordallott/gozstd
should result in something like
# github.com/gordallott/gozstd.test
/home/mhr3/.axiom-dev/go/pkg/tool/linux_amd64/link: running gcc failed: exit status 1
/usr/bin/ld: /home/mhr3/.axiom-dev/gopath/src/github.com/gordallott/gozstd/libzstd_linux_amd64.a(zdict.o): relocation R_X86_64_PC32 against symbol `stderr@@GLIBC_2.2.5' can not be used when making a PDE object; recompile with -fPIC/usr/bin/ld: final link failed: Bad valuecollect2: error: ld returned 1 exit status
tested on multiple machines with go version go version go1.15.2 linux/amd64
does not appear to be a CGO problem as using other CGO based modules work fine with the plugin module
The text was updated successfully, but these errors were encountered:
you can reproduce this simply by importing both gozstd and plugin at the same time, for example
as an example I forked the gozstd repo to add a test to fail this, thus
should result in something like
tested on multiple machines with go version
go version go1.15.2 linux/amd64
does not appear to be a CGO problem as using other CGO based modules work fine with the plugin module
The text was updated successfully, but these errors were encountered: