summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2017-10-16 15:14:26 +0200
committerCarlos Martín Nieto <[email protected]>2017-10-16 15:14:26 +0200
commit72510e9d3ab25cb3ab56dba62d2d7a2c9fe236ad (patch)
tree383ebabdf2d9c95eebdcd102630c9ee5f4572472
parentdc745f54c5690276bc3bdf83f27f751295a816ff (diff)
README: master wants to use install-static
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 580ed26..abf49c4 100644
--- a/README.md
+++ b/README.md
@@ -35,9 +35,9 @@ If using `master` or building a branch statically, we need to build libgit2 firs
Run `go get -d github.com/libgit2/git2go` to download the code and go to your `$GOPATH/src/github.com/libgit2/git2go` directory. From there, we need to build the C code and put it into the resulting go binary.
git submodule update --init # get libgit2
- make install
+ make install-static
-will compile libgit2, link it into git2go and install it.
+will compile libgit2, link it into git2go and install it. The `master` branch is set up to follow the specific libgit2 version that is vendored, so trying dynamic linking may or may not work depending on the exact versions involved.
Parallelism and network operations
----------------------------------