git2go icon indicating copy to clipboard operation
git2go copied to clipboard

procedure entry point EVP_DigestSign could not be located

Open 89z opened this issue 5 years ago • 1 comments

Using this file:

package main
import "github.com/libgit2/git2go/v31"

func main() {
   git.Clone("git://github.com/libgit2/git2go", "git2go", nil)
}

If I compile like this:

go build -tags static,system_libgit2

I get this result:

The procedure entry point EVP_DigestSign could not be located in the dynamic
link library C:\msys2\mingw64\bin\libssh2-1.dll. 

This is strange because I have the static library installed:

https://packages.msys2.org/package/mingw-w64-x86_64-libssh2

and I passed the static flag above.

89z avatar Nov 27 '20 00:11 89z