-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
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
Compile under go1.11 with libgit2-dev #75
Comments
Please try using |
make command right now require checkout and compile inside GOPATH directory. It creates inconvenience. go-1.11 resolve this problem. Version go-1.11 resolve dependency issue for you and provide comfortable and developer common way to dependencies resolution without reinvent the wheel: custom scenarios, handy source code/module manipulation and etc.. Another one issue is make stop on recipe "install-static" with Error 2. Last error message about libgit2.pc is no exists on execution pkg-config goal with exit status 1. What you think about original problem in 1-th post? How I can fix it? |
The issue is that GRV is tied to git2go (and so libgit2) v0.27 but the version of libgit2 on your system will be different. On my system libgit2 v0.26 is installed, so if I perform the following steps then it will build:
I agree that modules are the way to proceed in future. However I'm not sure they'll help in this case yet. For example, git2go doesn't tag any releases, they're only available as branches. This is why the |
I checkout master source code and try compile with go-1.11 with go.mod dependency manager and receive error:
Do u have version working without patch OS system library?
The text was updated successfully, but these errors were encountered: