在Go语言中出现了未定义函数错误:jmpToFunctionValue。

huangapple go评论147阅读模式
英文:

underfined function error in go :jmpToFunctionValue

问题

在运行 main.go 时,在 monkey 文件中遇到了以下错误,并给出了相应的函数。

bou.ke/monkey

../go/pkg/mod/bou.ke/monkey@v1.0.2/replace.go:24:14: undefined: jmpToFunctionValue

有人可以帮我解决这个问题吗?

英文:

While running main.go getting this error in monkey file and function is given below.

bou.ke/monkey

../go/pkg/mod/bou.ke/monkey@v1.0.2/replace.go:24:14: undefined: jmpToFunctionValue

Anyone help me with that?

答案1

得分: 3

我在使用 Mac M1 时也遇到了这个错误。

你可以检查一下 go env 中的 goarch 变量吗?如果它是 arm64,你需要使用以下命令将其更改为 amd64

 go env -w GOARCH=amd64

这对我有用。

英文:

I also face this error while using mac M1.

could you check the goarch var in go env? if you got arm64, you need to change it to amd64 using this command

 go env -w GOARCH=amd64

it works for me

huangapple
  • 本文由 发表于 2022年10月18日 22:30:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/74112738.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定