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
As of Go 1.23, packages are limited in what they're allowed to yank out of Go's internals, and that includes go/build.parseGoEmbed that's referenced in parser/parser_go116.go. Compiling this package now fails with this error:
link: github.com/visualfc/goembed/parser: invalid reference to go/build.parseGoEmbed
In the meantime, adding -ldflags=-checklinkname=0 works as a bandaid.
The text was updated successfully, but these errors were encountered:
As of Go 1.23, packages are limited in what they're allowed to yank out of Go's internals, and that includes
go/build.parseGoEmbed
that's referenced inparser/parser_go116.go
. Compiling this package now fails with this error:In the meantime, adding
-ldflags=-checklinkname=0
works as a bandaid.The text was updated successfully, but these errors were encountered: