We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在使用v4版本的时候[github.com/pion/webrtc/v4 v4.0.0-beta.22],会报如下错误: Build Error: go build -o /data/app/golang/speech-rtc/__debug_bin243354781 -gcflags all=-N -l . vendor/golang.org/x/crypto/curve25519/curve25519.go:13:8: cannot find package "." in: /data/app/golang/speech-rtc/vendor/crypto/ecdh (exit status 1)
那是应该你使用的 golang.org/x/crypto v0.25.0 版本 解决方法: 将crypto 降到 v0.24.0 版本即可 go get golang.org/x/crypto@v0.24.0
The text was updated successfully, but these errors were encountered:
What version of Golang are you using @lee-dong ?
Sorry, something went wrong.
Hi @lee-dong
Hopefully upgrading Go versions helped. If you are still having trouble please re-open thank you!
No branches or pull requests
在使用v4版本的时候[github.com/pion/webrtc/v4 v4.0.0-beta.22],会报如下错误:
Build Error: go build -o /data/app/golang/speech-rtc/__debug_bin243354781 -gcflags all=-N -l .
vendor/golang.org/x/crypto/curve25519/curve25519.go:13:8: cannot find package "." in:
/data/app/golang/speech-rtc/vendor/crypto/ecdh (exit status 1)
那是应该你使用的 golang.org/x/crypto v0.25.0 版本
解决方法:
将crypto 降到 v0.24.0 版本即可
go get golang.org/x/crypto@v0.24.0
The text was updated successfully, but these errors were encountered: